From f35d02cbeed823041f1ebee53a328d39a789240e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 21 Nov 2016 21:51:07 -0800 Subject: [PATCH] terraform: test for alias inheritance [GH-4789] --- terraform/context_apply_test.go | 109 ++++++++++++++++++ .../main.tf | 8 ++ .../child/main.tf | 3 + .../main.tf | 12 ++ 4 files changed, 132 insertions(+) create mode 100644 terraform/test-fixtures/apply-module-provider-inherit-alias-orphan/main.tf create mode 100644 terraform/test-fixtures/apply-module-provider-inherit-alias/child/main.tf create mode 100644 terraform/test-fixtures/apply-module-provider-inherit-alias/main.tf diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index c77464a33..5b17533f1 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -2007,6 +2007,115 @@ func TestContext2Apply_moduleDestroyOrder(t *testing.T) { } } +func TestContext2Apply_moduleInheritAlias(t *testing.T) { + m := testModule(t, "apply-module-provider-inherit-alias") + p := testProvider("aws") + p.ApplyFn = testApplyFn + p.DiffFn = testDiffFn + + p.ConfigureFn = func(c *ResourceConfig) error { + if _, ok := c.Get("child"); !ok { + return nil + } + + if _, ok := c.Get("root"); ok { + return fmt.Errorf("child should not get root") + } + + return nil + } + + ctx := testContext2(t, &ContextOpts{ + Module: m, + Providers: map[string]ResourceProviderFactory{ + "aws": testProviderFuncFixed(p), + }, + }) + + if _, err := ctx.Plan(); err != nil { + t.Fatalf("err: %s", err) + } + + state, err := ctx.Apply() + if err != nil { + t.Fatalf("err: %s", err) + } + + checkStateString(t, state, ` + +module.child: + aws_instance.foo: + ID = foo + provider = aws.eu + `) +} + +func TestContext2Apply_moduleOrphanInheritAlias(t *testing.T) { + m := testModule(t, "apply-module-provider-inherit-alias-orphan") + p := testProvider("aws") + p.ApplyFn = testApplyFn + p.DiffFn = testDiffFn + + called := false + p.ConfigureFn = func(c *ResourceConfig) error { + called = true + + if _, ok := c.Get("child"); !ok { + return nil + } + + if _, ok := c.Get("root"); ok { + return fmt.Errorf("child should not get root") + } + + return nil + } + + // Create a state with an orphan module + state := &State{ + Modules: []*ModuleState{ + &ModuleState{ + Path: []string{"root", "child"}, + Resources: map[string]*ResourceState{ + "aws_instance.bar": &ResourceState{ + Type: "aws_instance", + Primary: &InstanceState{ + ID: "bar", + }, + Provider: "aws.eu", + }, + }, + }, + }, + } + + ctx := testContext2(t, &ContextOpts{ + Module: m, + State: state, + Providers: map[string]ResourceProviderFactory{ + "aws": testProviderFuncFixed(p), + }, + }) + + if _, err := ctx.Plan(); err != nil { + t.Fatalf("err: %s", err) + } + + state, err := ctx.Apply() + if err != nil { + t.Fatalf("err: %s", err) + } + + if !called { + t.Fatal("must call configure") + } + + checkStateString(t, state, ` +module.child: + + `) +} + func TestContext2Apply_moduleOrphanProvider(t *testing.T) { m := testModule(t, "apply-module-orphan-provider-inherit") p := testProvider("aws") diff --git a/terraform/test-fixtures/apply-module-provider-inherit-alias-orphan/main.tf b/terraform/test-fixtures/apply-module-provider-inherit-alias-orphan/main.tf new file mode 100644 index 000000000..b0b563c93 --- /dev/null +++ b/terraform/test-fixtures/apply-module-provider-inherit-alias-orphan/main.tf @@ -0,0 +1,8 @@ +provider "aws" { + root = "1" +} + +provider "aws" { + child = "eu" + alias = "eu" +} diff --git a/terraform/test-fixtures/apply-module-provider-inherit-alias/child/main.tf b/terraform/test-fixtures/apply-module-provider-inherit-alias/child/main.tf new file mode 100644 index 000000000..d05e148a5 --- /dev/null +++ b/terraform/test-fixtures/apply-module-provider-inherit-alias/child/main.tf @@ -0,0 +1,3 @@ +resource "aws_instance" "foo" { + provider = "aws.eu" +} diff --git a/terraform/test-fixtures/apply-module-provider-inherit-alias/main.tf b/terraform/test-fixtures/apply-module-provider-inherit-alias/main.tf new file mode 100644 index 000000000..82837cd6d --- /dev/null +++ b/terraform/test-fixtures/apply-module-provider-inherit-alias/main.tf @@ -0,0 +1,12 @@ +provider "aws" { + root = "1" +} + +provider "aws" { + child = "eu" + alias = "eu" +} + +module "child" { + source = "./child" +}