mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
Some checks are pending
build / Determine intended Terraform version (push) Waiting to run
build / Determine Go toolchain version (push) Waiting to run
build / Generate release metadata (push) Blocked by required conditions
build / Build for freebsd_386 (push) Blocked by required conditions
build / Build for linux_386 (push) Blocked by required conditions
build / Build for openbsd_386 (push) Blocked by required conditions
build / Build for windows_386 (push) Blocked by required conditions
build / Build for darwin_amd64 (push) Blocked by required conditions
build / Build for freebsd_amd64 (push) Blocked by required conditions
build / Build for linux_amd64 (push) Blocked by required conditions
build / Build for openbsd_amd64 (push) Blocked by required conditions
build / Build for solaris_amd64 (push) Blocked by required conditions
build / Build for windows_amd64 (push) Blocked by required conditions
build / Build for freebsd_arm (push) Blocked by required conditions
build / Build for linux_arm (push) Blocked by required conditions
build / Build for darwin_arm64 (push) Blocked by required conditions
build / Build for linux_arm64 (push) Blocked by required conditions
build / Build for windows_arm64 (push) Blocked by required conditions
build / Build Docker image for linux_386 (push) Blocked by required conditions
build / Build Docker image for linux_amd64 (push) Blocked by required conditions
build / Build Docker image for linux_arm (push) Blocked by required conditions
build / Build Docker image for linux_arm64 (push) Blocked by required conditions
build / Build e2etest for linux_386 (push) Blocked by required conditions
build / Build e2etest for windows_386 (push) Blocked by required conditions
build / Build e2etest for darwin_amd64 (push) Blocked by required conditions
build / Build e2etest for linux_amd64 (push) Blocked by required conditions
build / Build e2etest for windows_amd64 (push) Blocked by required conditions
build / Build e2etest for linux_arm (push) Blocked by required conditions
build / Build e2etest for darwin_arm64 (push) Blocked by required conditions
build / Build e2etest for linux_arm64 (push) Blocked by required conditions
build / Run e2e test for linux_386 (push) Blocked by required conditions
build / Run e2e test for windows_386 (push) Blocked by required conditions
build / Run e2e test for darwin_amd64 (push) Blocked by required conditions
build / Run e2e test for linux_amd64 (push) Blocked by required conditions
build / Run e2e test for windows_amd64 (push) Blocked by required conditions
build / Run e2e test for linux_arm (push) Blocked by required conditions
build / Run e2e test for linux_arm64 (push) Blocked by required conditions
build / Run terraform-exec test for linux amd64 (push) Blocked by required conditions
Quick Checks / Unit Tests (push) Waiting to run
Quick Checks / Race Tests (push) Waiting to run
Quick Checks / End-to-end Tests (push) Waiting to run
Quick Checks / Code Consistency Checks (push) Waiting to run
175 lines
7.2 KiB
Go
175 lines
7.2 KiB
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package e2etest
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/internal/e2e"
|
|
"github.com/hashicorp/terraform/internal/getproviders"
|
|
)
|
|
|
|
// TestProviderDevOverrides is a test for the special dev_overrides setting
|
|
// in the provider_installation section of the CLI configuration file, which
|
|
// is our current answer to smoothing provider development by allowing
|
|
// developers to opt out of the version number and checksum verification
|
|
// we normally do, so they can just overwrite the same local executable
|
|
// in-place to iterate faster.
|
|
func TestProviderDevOverrides(t *testing.T) {
|
|
if !canRunGoBuild {
|
|
// We're running in a separate-build-then-run context, so we can't
|
|
// currently execute this test which depends on being able to build
|
|
// new executable at runtime.
|
|
//
|
|
// (See the comment on canRunGoBuild's declaration for more information.)
|
|
t.Skip("can't run without building a new provider executable")
|
|
}
|
|
t.Parallel()
|
|
|
|
tf := e2e.NewBinary(t, terraformBin, "testdata/provider-dev-override")
|
|
|
|
// In order to do a decent end-to-end test for this case we will need a
|
|
// real enough provider plugin to try to run and make sure we are able
|
|
// to actually run it. For now we'll use the "test" provider for that,
|
|
// because it happens to be in this repository and therefore allows
|
|
// us to avoid drawing in anything external, but we might revisit this
|
|
// strategy in future if other needs cause us to evolve the test
|
|
// provider in a way that makes it less suitable for this particular test,
|
|
// such as if it stops being buildable into an independent executable.
|
|
providerExeDir := filepath.Join(tf.WorkDir(), "pkgdir")
|
|
providerExePrefix := filepath.Join(providerExeDir, "terraform-provider-test_")
|
|
providerExe := e2e.GoBuild("github.com/hashicorp/terraform/internal/provider-simple/main", providerExePrefix)
|
|
t.Logf("temporary provider executable is %s", providerExe)
|
|
|
|
err := os.WriteFile(filepath.Join(tf.WorkDir(), "dev.tfrc"), []byte(fmt.Sprintf(`
|
|
provider_installation {
|
|
dev_overrides {
|
|
"example.com/test/test" = %q
|
|
}
|
|
}
|
|
`, providerExeDir)), os.ModePerm)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
tf.AddEnv("TF_CLI_CONFIG_FILE=dev.tfrc")
|
|
|
|
stdout, stderr, err := tf.Run("providers")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s\n%s", err, stderr)
|
|
}
|
|
if got, want := stdout, `provider[example.com/test/test]`; !strings.Contains(got, want) {
|
|
t.Errorf("configuration should depend on %s, but doesn't\n%s", want, got)
|
|
}
|
|
|
|
// NOTE: We're intentionally not running "terraform init" here, because
|
|
// dev overrides are always ready to use and don't need any special action
|
|
// to "install" them. This test is mimicking the a happy path of going
|
|
// directly from "go build" to validate/plan/apply without interacting
|
|
// with any registries, mirrors, lock files, etc. To verify "terraform
|
|
// init" does actually show a warning, that behavior is tested at the end.
|
|
stdout, stderr, err = tf.Run("validate")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s\n%s", err, stderr)
|
|
}
|
|
|
|
if got, want := stdout, `The configuration is valid, but`; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include the success message\nwant: %s\n%s", want, got)
|
|
}
|
|
if got, want := stdout, `Provider development overrides are in effect`; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include the warning about development overrides\nwant: %s\n%s", want, got)
|
|
}
|
|
|
|
stdout, _, err = tf.Run("init")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %e", err)
|
|
}
|
|
if got, want := stdout, `Provider development overrides are in effect`; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include the warning about development overrides\nwant: %s\n%s", want, got)
|
|
}
|
|
|
|
if got, want := stdout, "These providers are not installed as part of init since they"; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include init specific warning about consequences of overrides \nwant: %s\n%s", want, got)
|
|
}
|
|
}
|
|
|
|
func TestProviderDevOverridesWithProviderToDownload(t *testing.T) {
|
|
if !canRunGoBuild {
|
|
// We're running in a separate-build-then-run context, so we can't
|
|
// currently execute this test which depends on being able to build
|
|
// new executable at runtime.
|
|
//
|
|
// (See the comment on canRunGoBuild's declaration for more information.)
|
|
t.Skip("can't run without building a new provider executable")
|
|
}
|
|
t.Parallel()
|
|
|
|
// This test reaches out to releases.hashicorp.com to download the
|
|
// null provider, so it can only run if network access is allowed.
|
|
skipIfCannotAccessNetwork(t)
|
|
|
|
tf := e2e.NewBinary(t, terraformBin, "testdata/provider-dev-override-with-existing")
|
|
|
|
// In order to do a decent end-to-end test for this case we will need a
|
|
// real enough provider plugin to try to run and make sure we are able
|
|
// to actually run it. For now we'll use the "test" provider for that,
|
|
// because it happens to be in this repository and therefore allows
|
|
// us to avoid drawing in anything external, but we might revisit this
|
|
// strategy in future if other needs cause us to evolve the test
|
|
// provider in a way that makes it less suitable for this particular test,
|
|
// such as if it stops being buildable into an independent executable.
|
|
providerExeDir := filepath.Join(tf.WorkDir(), "pkgdir")
|
|
providerExePrefix := filepath.Join(providerExeDir, "terraform-provider-test_")
|
|
providerExe := e2e.GoBuild("github.com/hashicorp/terraform/internal/provider-simple/main", providerExePrefix)
|
|
t.Logf("temporary provider executable is %s", providerExe)
|
|
|
|
err := os.WriteFile(filepath.Join(tf.WorkDir(), "dev.tfrc"), []byte(fmt.Sprintf(`
|
|
provider_installation {
|
|
dev_overrides {
|
|
"example.com/test/test" = %q
|
|
}
|
|
direct {}
|
|
}
|
|
`, providerExeDir)), os.ModePerm)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
tf.AddEnv("TF_CLI_CONFIG_FILE=dev.tfrc")
|
|
|
|
stdout, stderr, err := tf.Run("providers")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s\n%s", err, stderr)
|
|
}
|
|
if got, want := stdout, `provider[example.com/test/test]`; !strings.Contains(got, want) {
|
|
t.Errorf("configuration should depend on %s, but doesn't\n%s", want, got)
|
|
}
|
|
|
|
stdout, _, err = tf.Run("init")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %e", err)
|
|
}
|
|
if got, want := stdout, `Provider development overrides are in effect`; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include the warning about development overrides\nwant: %s\n%s", want, got)
|
|
}
|
|
if got, want := stdout, "These providers are not installed as part of init since they were"; !strings.Contains(got, want) {
|
|
t.Errorf("stdout doesn't include init specific warning about consequences of overrides \nwant: %s\n got: %s", want, got)
|
|
}
|
|
|
|
// Check if the null provider has been installed
|
|
const providerVersion = "3.1.0" // must match the version in the fixture config
|
|
pluginDir := filepath.Join(tf.WorkDir(), ".terraform", "providers", "registry.terraform.io", "hashicorp", "null", providerVersion, getproviders.CurrentPlatform.String())
|
|
pluginExe := filepath.Join(pluginDir, "terraform-provider-null_v"+providerVersion+"_x5")
|
|
if getproviders.CurrentPlatform.OS == "windows" {
|
|
pluginExe += ".exe" // ugh
|
|
}
|
|
|
|
if _, err := os.Stat(pluginExe); os.IsNotExist(err) {
|
|
t.Fatalf("expected plugin executable %s to exist, but it does not", pluginExe)
|
|
}
|
|
}
|