2014-05-23 01:56:28 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2014-05-24 00:42:29 +02:00
|
|
|
func TestLoad_badType(t *testing.T) {
|
|
|
|
_, err := Load(filepath.Join(fixtureDir, "bad_type.tf.nope"))
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("should have error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-23 01:56:28 +02:00
|
|
|
func TestLoadBasic(t *testing.T) {
|
|
|
|
c, err := Load(filepath.Join(fixtureDir, "basic.tf"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == nil {
|
|
|
|
t.Fatal("config should not be nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := variablesStr(c.Variables)
|
|
|
|
if actual != strings.TrimSpace(basicVariablesStr) {
|
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
actual = providerConfigsStr(c.ProviderConfigs)
|
|
|
|
if actual != strings.TrimSpace(basicProvidersStr) {
|
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
|
2014-05-23 01:56:28 +02:00
|
|
|
actual = resourcesStr(c.Resources)
|
|
|
|
if actual != strings.TrimSpace(basicResourcesStr) {
|
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:11:57 +02:00
|
|
|
func TestLoadBasic_import(t *testing.T) {
|
|
|
|
c, err := Load(filepath.Join(fixtureDir, "import.tf"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == nil {
|
|
|
|
t.Fatal("config should not be nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := variablesStr(c.Variables)
|
|
|
|
if actual != strings.TrimSpace(importVariablesStr) {
|
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
actual = providerConfigsStr(c.ProviderConfigs)
|
|
|
|
if actual != strings.TrimSpace(importProvidersStr) {
|
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:11:57 +02:00
|
|
|
actual = resourcesStr(c.Resources)
|
2014-05-24 01:25:54 +02:00
|
|
|
if actual != strings.TrimSpace(importResourcesStr) {
|
2014-05-24 00:11:57 +02:00
|
|
|
t.Fatalf("bad:\n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
// This helper turns a provider configs field into a deterministic
|
|
|
|
// string value for comparison in tests.
|
|
|
|
func providerConfigsStr(pcs map[string]*ProviderConfig) string {
|
|
|
|
result := ""
|
|
|
|
for n, pc := range pcs {
|
|
|
|
result += fmt.Sprintf("%s\n", n)
|
|
|
|
|
|
|
|
for k, _ := range pc.Config {
|
|
|
|
result += fmt.Sprintf(" %s\n", k)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(pc.Variables) > 0 {
|
|
|
|
result += fmt.Sprintf(" vars\n")
|
|
|
|
for _, rawV := range pc.Variables {
|
|
|
|
kind := "unknown"
|
|
|
|
str := rawV.FullKey()
|
|
|
|
|
|
|
|
switch rawV.(type) {
|
|
|
|
case *ResourceVariable:
|
|
|
|
kind = "resource"
|
|
|
|
case *UserVariable:
|
|
|
|
kind = "user"
|
|
|
|
}
|
|
|
|
|
|
|
|
result += fmt.Sprintf(" %s: %s\n", kind, str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(result)
|
|
|
|
}
|
|
|
|
|
2014-05-23 01:56:28 +02:00
|
|
|
// This helper turns a resources field into a deterministic
|
|
|
|
// string value for comparison in tests.
|
2014-05-24 22:57:51 +02:00
|
|
|
func resourcesStr(rs []*Resource) string {
|
2014-05-23 01:56:28 +02:00
|
|
|
result := ""
|
|
|
|
for _, r := range rs {
|
|
|
|
result += fmt.Sprintf(
|
|
|
|
"%s[%s]\n",
|
|
|
|
r.Type,
|
|
|
|
r.Name)
|
|
|
|
|
|
|
|
for k, _ := range r.Config {
|
|
|
|
result += fmt.Sprintf(" %s\n", k)
|
|
|
|
}
|
2014-05-24 06:58:06 +02:00
|
|
|
|
|
|
|
if len(r.Variables) > 0 {
|
|
|
|
result += fmt.Sprintf(" vars\n")
|
|
|
|
for _, rawV := range r.Variables {
|
|
|
|
kind := "unknown"
|
|
|
|
str := rawV.FullKey()
|
|
|
|
|
|
|
|
switch rawV.(type) {
|
|
|
|
case *ResourceVariable:
|
|
|
|
kind = "resource"
|
|
|
|
case *UserVariable:
|
|
|
|
kind = "user"
|
|
|
|
}
|
|
|
|
|
|
|
|
result += fmt.Sprintf(" %s: %s\n", kind, str)
|
|
|
|
}
|
|
|
|
}
|
2014-05-23 01:56:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This helper turns a variables field into a deterministic
|
|
|
|
// string value for comparison in tests.
|
|
|
|
func variablesStr(vs map[string]Variable) string {
|
|
|
|
result := ""
|
|
|
|
for k, v := range vs {
|
2014-05-24 01:09:41 +02:00
|
|
|
if v.Default == "" {
|
|
|
|
v.Default = "<>"
|
|
|
|
}
|
|
|
|
if v.Description == "" {
|
|
|
|
v.Description = "<>"
|
|
|
|
}
|
|
|
|
|
2014-05-23 01:56:28 +02:00
|
|
|
result += fmt.Sprintf(
|
|
|
|
"%s\n %s\n %s\n",
|
|
|
|
k,
|
|
|
|
v.Default,
|
|
|
|
v.Description)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(result)
|
|
|
|
}
|
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
const basicProvidersStr = `
|
|
|
|
aws
|
|
|
|
access_key
|
|
|
|
secret_key
|
|
|
|
do
|
|
|
|
api_key
|
|
|
|
vars
|
|
|
|
user: var.foo
|
|
|
|
`
|
|
|
|
|
2014-05-23 01:56:28 +02:00
|
|
|
const basicResourcesStr = `
|
|
|
|
aws_security_group[firewall]
|
|
|
|
aws_instance[web]
|
|
|
|
ami
|
|
|
|
security_groups
|
2014-05-24 06:58:06 +02:00
|
|
|
vars
|
|
|
|
user: var.foo
|
|
|
|
resource: aws_security_group.firewall.foo
|
2014-05-23 01:56:28 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
const basicVariablesStr = `
|
|
|
|
foo
|
|
|
|
bar
|
|
|
|
bar
|
|
|
|
`
|
2014-05-24 00:11:57 +02:00
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
const importProvidersStr = `
|
|
|
|
aws
|
|
|
|
foo
|
|
|
|
`
|
|
|
|
|
2014-05-24 01:25:54 +02:00
|
|
|
const importResourcesStr = `
|
|
|
|
aws_security_group[db]
|
|
|
|
aws_security_group[web]
|
|
|
|
`
|
|
|
|
|
2014-05-24 00:11:57 +02:00
|
|
|
const importVariablesStr = `
|
2014-05-24 01:09:41 +02:00
|
|
|
bar
|
|
|
|
<>
|
|
|
|
<>
|
2014-05-24 00:11:57 +02:00
|
|
|
foo
|
|
|
|
bar
|
|
|
|
bar
|
|
|
|
`
|