Skip to content

Commit

Permalink
builtin provisioner e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbardin committed Jan 19, 2021
1 parent ff30030 commit 21896f7
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
44 changes: 44 additions & 0 deletions command/e2etest/provisioner_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package e2etest

import (
"strings"
"testing"

"github.com/hashicorp/terraform/e2e"
)

// TestProviderDevOverrides is a test that terraform can execute a 3rd party
// provisioner plugin.
func TestProvisioner(t *testing.T) {
t.Parallel()

// This test reaches out to releases.hashicorp.com to download the
// template and null providers, so it can only run if network access is
// allowed.
skipIfCannotAccessNetwork(t)

tf := e2e.NewBinary(terraformBin, "testdata/provisioner")
defer tf.Close()

//// INIT
_, stderr, err := tf.Run("init")
if err != nil {
t.Fatalf("unexpected init error: %s\nstderr:\n%s", err, stderr)
}

//// PLAN
_, stderr, err = tf.Run("plan", "-out=tfplan")
if err != nil {
t.Fatalf("unexpected plan error: %s\nstderr:\n%s", err, stderr)
}

//// APPLY
stdout, stderr, err := tf.Run("apply", "tfplan")
if err != nil {
t.Fatalf("unexpected apply error: %s\nstderr:\n%s", err, stderr)
}

if !strings.Contains(stdout, "HelloProvisioner") {
t.Fatalf("missing provisioner output:\n%s", stdout)
}
}
5 changes: 5 additions & 0 deletions command/e2etest/testdata/provisioner/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "null_resource" "a" {
provisioner "local-exec" {
command = "echo HelloProvisioner"
}
}

0 comments on commit 21896f7

Please sign in to comment.