From edda5764526cec80846f3f4d1be786d86ce3caab Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 23 Aug 2016 17:40:23 -0700 Subject: [PATCH] command/push: test that -upload-modules=false works --- command/push_test.go | 50 ++++++++++++++++++++ command/test-fixtures/push-no-upload/main.tf | 5 ++ 2 files changed, 55 insertions(+) create mode 100644 command/test-fixtures/push-no-upload/main.tf diff --git a/command/push_test.go b/command/push_test.go index 2f78dd6fa..751b083be 100644 --- a/command/push_test.go +++ b/command/push_test.go @@ -72,6 +72,56 @@ func TestPush_good(t *testing.T) { } } +func TestPush_noUploadModules(t *testing.T) { + tmp, cwd := testCwd(t) + defer testFixCwd(t, tmp, cwd) + + // Create remote state file, this should be pulled + conf, srv := testRemoteState(t, testState(), 200) + defer srv.Close() + + // Persist local remote state + s := terraform.NewState() + s.Serial = 5 + s.Remote = conf + testStateFileRemote(t, s) + + // Path where the archive will be "uploaded" to + archivePath := testTempFile(t) + defer os.Remove(archivePath) + + client := &mockPushClient{File: archivePath} + ui := new(cli.MockUi) + c := &PushCommand{ + Meta: Meta{ + ContextOpts: testCtxConfig(testProvider()), + Ui: ui, + }, + + client: client, + } + + args := []string{ + "-vcs=false", + "-upload-modules=false", + testFixturePath("push-no-upload"), + } + if code := c.Run(args); code != 0 { + t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String()) + } + + actual := testArchiveStr(t, archivePath) + expected := []string{ + ".terraform/", // Weird but doesn't cause any problems + ".terraform/", + ".terraform/terraform.tfstate", + "main.tf", + } + if !reflect.DeepEqual(actual, expected) { + t.Fatalf("bad: %#v", actual) + } +} + func TestPush_input(t *testing.T) { tmp, cwd := testCwd(t) defer testFixCwd(t, tmp, cwd) diff --git a/command/test-fixtures/push-no-upload/main.tf b/command/test-fixtures/push-no-upload/main.tf new file mode 100644 index 000000000..265162636 --- /dev/null +++ b/command/test-fixtures/push-no-upload/main.tf @@ -0,0 +1,5 @@ +resource "aws_instance" "foo" {} + +atlas { + name = "foo" +}