Merge pull request #1314 from hashicorp/b-relative-mods

config/module: parent refs "../foo" go to the correct directory
This commit is contained in:
Mitchell Hashimoto 2015-03-27 12:14:11 -07:00
commit 02ec8772c0
5 changed files with 70 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package module
import (
"fmt"
"os"
"path/filepath"
"runtime"
)
@ -20,8 +21,27 @@ func (d *FileDetector) Detect(src, pwd string) (string, bool, error) {
"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)
}
return fmtFileURL(src), true, nil
}

View File

@ -0,0 +1,3 @@
module "b" {
source = "../c"
}

View File

@ -0,0 +1 @@
# Hello

View File

@ -0,0 +1,3 @@
module "a" {
source = "./a"
}

View File

@ -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) {
storage := testStorage(t)
tree := NewTree("", testConfig(t, "basic-subdir"))
@ -239,6 +277,11 @@ root
foo
`
const treeLoadParentStr = `
root
a
b
`
const treeLoadSubdirStr = `
root
foo