2014-09-14 03:58:21 +02:00
|
|
|
package module
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGet_badSchema(t *testing.T) {
|
|
|
|
dst := tempDir(t)
|
|
|
|
u := testModule("basic")
|
|
|
|
u = strings.Replace(u, "file", "nope", -1)
|
|
|
|
|
|
|
|
if err := Get(dst, u); err == nil {
|
|
|
|
t.Fatal("should error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGet_file(t *testing.T) {
|
|
|
|
dst := tempDir(t)
|
|
|
|
u := testModule("basic")
|
|
|
|
|
|
|
|
if err := Get(dst, u); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mainPath := filepath.Join(dst, "main.tf")
|
|
|
|
if _, err := os.Stat(mainPath); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2014-09-16 08:48:56 +02:00
|
|
|
|
|
|
|
func TestGet_fileForced(t *testing.T) {
|
|
|
|
dst := tempDir(t)
|
|
|
|
u := testModule("basic")
|
|
|
|
u = "file::"+u
|
|
|
|
|
|
|
|
if err := Get(dst, u); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mainPath := filepath.Join(dst, "main.tf")
|
|
|
|
if _, err := os.Stat(mainPath); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2014-09-26 23:56:04 +02:00
|
|
|
|
2014-09-27 01:11:13 +02:00
|
|
|
func TestGet_fileSubdir(t *testing.T) {
|
|
|
|
dst := tempDir(t)
|
|
|
|
u := testModule("basic//subdir")
|
|
|
|
|
|
|
|
if err := Get(dst, u); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mainPath := filepath.Join(dst, "sub.tf")
|
|
|
|
if _, err := os.Stat(mainPath); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:56:04 +02:00
|
|
|
func TestGetDirSubdir(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Input string
|
|
|
|
Dir, Sub string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"hashicorp.com",
|
|
|
|
"hashicorp.com", "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"hashicorp.com//foo",
|
|
|
|
"hashicorp.com", "foo",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"hashicorp.com//foo?bar=baz",
|
|
|
|
"hashicorp.com?bar=baz", "foo",
|
|
|
|
},
|
|
|
|
{
|
2014-09-27 00:22:26 +02:00
|
|
|
"file://foo//bar",
|
|
|
|
"file://foo", "bar",
|
2014-09-26 23:56:04 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range cases {
|
|
|
|
adir, asub := getDirSubdir(tc.Input)
|
|
|
|
if adir != tc.Dir {
|
|
|
|
t.Fatalf("%d: bad dir: %#v", i, adir)
|
|
|
|
}
|
|
|
|
if asub != tc.Sub {
|
|
|
|
t.Fatalf("%d: bad sub: %#v", i, asub)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|