Merge pull request #1314 from hashicorp/b-relative-mods
config/module: parent refs "../foo" go to the correct directory
This commit is contained in:
commit
02ec8772c0
|
@ -2,6 +2,7 @@ package module
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
)
|
)
|
||||||
|
@ -20,8 +21,27 @@ func (d *FileDetector) Detect(src, pwd string) (string, bool, error) {
|
||||||
"relative paths require a module with a pwd")
|
"relative paths require a module with a pwd")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stat the pwd to determine if its a symbolic link. If it is,
|
||||||
|
// then the pwd becomes the original directory. Otherwise,
|
||||||
|
// `filepath.Join` below does some weird stuff.
|
||||||
|
//
|
||||||
|
// We just ignore if the pwd doesn't exist. That error will be
|
||||||
|
// caught later when we try to use the URL.
|
||||||
|
if fi, err := os.Lstat(pwd); !os.IsNotExist(err) {
|
||||||
|
if err != nil {
|
||||||
|
return "", true, err
|
||||||
|
}
|
||||||
|
if fi.Mode()&os.ModeSymlink != 0 {
|
||||||
|
pwd, err = os.Readlink(pwd)
|
||||||
|
if err != nil {
|
||||||
|
return "", true, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
src = filepath.Join(pwd, src)
|
src = filepath.Join(pwd, src)
|
||||||
}
|
}
|
||||||
|
|
||||||
return fmtFileURL(src), true, nil
|
return fmtFileURL(src), true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
module "b" {
|
||||||
|
source = "../c"
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
# Hello
|
|
@ -0,0 +1,3 @@
|
||||||
|
module "a" {
|
||||||
|
source = "./a"
|
||||||
|
}
|
|
@ -94,6 +94,44 @@ func TestTreeLoad_duplicate(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestTreeLoad_parentRef(t *testing.T) {
|
||||||
|
storage := testStorage(t)
|
||||||
|
tree := NewTree("", testConfig(t, "basic-parent"))
|
||||||
|
|
||||||
|
if tree.Loaded() {
|
||||||
|
t.Fatal("should not be loaded")
|
||||||
|
}
|
||||||
|
|
||||||
|
// This should error because we haven't gotten things yet
|
||||||
|
if err := tree.Load(storage, GetModeNone); err == nil {
|
||||||
|
t.Fatal("should error")
|
||||||
|
}
|
||||||
|
|
||||||
|
if tree.Loaded() {
|
||||||
|
t.Fatal("should not be loaded")
|
||||||
|
}
|
||||||
|
|
||||||
|
// This should get things
|
||||||
|
if err := tree.Load(storage, GetModeGet); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !tree.Loaded() {
|
||||||
|
t.Fatal("should be loaded")
|
||||||
|
}
|
||||||
|
|
||||||
|
// This should no longer error
|
||||||
|
if err := tree.Load(storage, GetModeNone); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
actual := strings.TrimSpace(tree.String())
|
||||||
|
expected := strings.TrimSpace(treeLoadParentStr)
|
||||||
|
if actual != expected {
|
||||||
|
t.Fatalf("bad: \n\n%s", actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestTreeLoad_subdir(t *testing.T) {
|
func TestTreeLoad_subdir(t *testing.T) {
|
||||||
storage := testStorage(t)
|
storage := testStorage(t)
|
||||||
tree := NewTree("", testConfig(t, "basic-subdir"))
|
tree := NewTree("", testConfig(t, "basic-subdir"))
|
||||||
|
@ -239,6 +277,11 @@ root
|
||||||
foo
|
foo
|
||||||
`
|
`
|
||||||
|
|
||||||
|
const treeLoadParentStr = `
|
||||||
|
root
|
||||||
|
a
|
||||||
|
b
|
||||||
|
`
|
||||||
const treeLoadSubdirStr = `
|
const treeLoadSubdirStr = `
|
||||||
root
|
root
|
||||||
foo
|
foo
|
||||||
|
|
Loading…
Reference in New Issue