Skip to content

Commit

Permalink
Merge pull request #1314 from hashicorp/b-relative-mods
Browse files Browse the repository at this point in the history
config/module: parent refs "../foo" go to the correct directory
  • Loading branch information
mitchellh committed Mar 27, 2015
2 parents dd72df6 + 44fce5c commit 02ec877
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 0 deletions.
20 changes: 20 additions & 0 deletions config/module/detect_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package module

import (
"fmt"
"os"
"path/filepath"
"runtime"
)
Expand All @@ -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
}

Expand Down
3 changes: 3 additions & 0 deletions config/module/test-fixtures/basic-parent/a/a.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module "b" {
source = "../c"
}
1 change: 1 addition & 0 deletions config/module/test-fixtures/basic-parent/c/c.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Hello
3 changes: 3 additions & 0 deletions config/module/test-fixtures/basic-parent/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module "a" {
source = "./a"
}
43 changes: 43 additions & 0 deletions config/module/tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down Expand Up @@ -239,6 +277,11 @@ root
foo
`

const treeLoadParentStr = `
root
a
b
`
const treeLoadSubdirStr = `
root
foo
Expand Down

0 comments on commit 02ec877

Please sign in to comment.