mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 14:31:40 -04:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
701 lines
20 KiB
Go
701 lines
20 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package packer
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
pluginsdk "github.com/hashicorp/packer-plugin-sdk/plugin"
|
|
"github.com/hashicorp/packer-plugin-sdk/tmp"
|
|
plugingetter "github.com/hashicorp/packer/packer/plugin-getter"
|
|
)
|
|
|
|
func newPluginConfig() PluginConfig {
|
|
var conf PluginConfig
|
|
conf.PluginMinPort = 10000
|
|
conf.PluginMaxPort = 25000
|
|
return conf
|
|
}
|
|
|
|
func TestDiscoverReturnsIfMagicCookieSet(t *testing.T) {
|
|
config := newPluginConfig()
|
|
|
|
t.Setenv(pluginsdk.MagicCookieKey, pluginsdk.MagicCookieValue)
|
|
|
|
err := config.Discover()
|
|
if err != nil {
|
|
t.Fatalf("Should not have errored: %s", err)
|
|
}
|
|
|
|
if len(config.Builders.List()) != 0 {
|
|
t.Fatalf("Should not have tried to find builders")
|
|
}
|
|
}
|
|
|
|
func TestEnvVarPackerPluginPath(t *testing.T) {
|
|
// Create a temporary directory to store plugins in
|
|
dir, _, cleanUpFunc, err := generateFakePlugins("custom_plugin_dir",
|
|
[]string{"packer-provisioner-partyparrot"})
|
|
if err != nil {
|
|
t.Fatalf("Error creating fake custom plugins: %s", err)
|
|
}
|
|
|
|
defer cleanUpFunc()
|
|
|
|
// Add temp dir to path.
|
|
t.Setenv("PACKER_PLUGIN_PATH", dir)
|
|
|
|
config := newPluginConfig()
|
|
|
|
err = config.Discover()
|
|
if err != nil {
|
|
t.Fatalf("Should not have errored: %s", err)
|
|
}
|
|
|
|
if len(config.Provisioners.List()) == 0 {
|
|
t.Fatalf("Should have found partyparrot provisioner")
|
|
}
|
|
if !config.Provisioners.Has("partyparrot") {
|
|
t.Fatalf("Should have found partyparrot provisioner.")
|
|
}
|
|
}
|
|
|
|
func TestEnvVarPackerPluginPath_MultiplePaths(t *testing.T) {
|
|
// Create a temporary directory to store plugins in
|
|
dir, _, cleanUpFunc, err := generateFakePlugins("custom_plugin_dir",
|
|
[]string{"packer-provisioner-partyparrot"})
|
|
if err != nil {
|
|
t.Fatalf("Error creating fake custom plugins: %s", err)
|
|
}
|
|
|
|
defer cleanUpFunc()
|
|
|
|
pathsep := ":"
|
|
if runtime.GOOS == "windows" {
|
|
pathsep = ";"
|
|
}
|
|
|
|
// Create a second dir to look in that will be empty
|
|
decoyDir, err := os.MkdirTemp("", "decoy")
|
|
if err != nil {
|
|
t.Fatalf("Failed to create a temporary test dir.")
|
|
}
|
|
defer os.Remove(decoyDir)
|
|
|
|
pluginPath := dir + pathsep + decoyDir
|
|
|
|
// Add temp dir to path.
|
|
t.Setenv("PACKER_PLUGIN_PATH", pluginPath)
|
|
|
|
config := newPluginConfig()
|
|
|
|
err = config.Discover()
|
|
if err != nil {
|
|
t.Fatalf("Should not have errored: %s", err)
|
|
}
|
|
|
|
if len(config.Provisioners.List()) == 0 {
|
|
t.Fatalf("Should have found partyparrot provisioner")
|
|
}
|
|
if !config.Provisioners.Has("partyparrot") {
|
|
t.Fatalf("Should have found partyparrot provisioner.")
|
|
}
|
|
}
|
|
|
|
func TestDiscoverDatasource(t *testing.T) {
|
|
// Create a temporary directory to store plugins in
|
|
dir, _, cleanUpFunc, err := generateFakePlugins("custom_plugin_dir",
|
|
[]string{"packer-datasource-partyparrot"})
|
|
if err != nil {
|
|
t.Fatalf("Error creating fake custom plugins: %s", err)
|
|
}
|
|
|
|
defer cleanUpFunc()
|
|
|
|
pathsep := ":"
|
|
if runtime.GOOS == "windows" {
|
|
pathsep = ";"
|
|
}
|
|
|
|
// Create a second dir to look in that will be empty
|
|
decoyDir, err := os.MkdirTemp("", "decoy")
|
|
if err != nil {
|
|
t.Fatalf("Failed to create a temporary test dir.")
|
|
}
|
|
defer os.Remove(decoyDir)
|
|
|
|
pluginPath := dir + pathsep + decoyDir
|
|
|
|
// Add temp dir to path.
|
|
t.Setenv("PACKER_PLUGIN_PATH", pluginPath)
|
|
|
|
config := newPluginConfig()
|
|
|
|
err = config.Discover()
|
|
if err != nil {
|
|
t.Fatalf("Should not have errored: %s", err)
|
|
}
|
|
|
|
if len(config.DataSources.List()) == 0 {
|
|
t.Fatalf("Should have found partyparrot datasource")
|
|
}
|
|
if !config.DataSources.Has("partyparrot") {
|
|
t.Fatalf("Should have found partyparrot datasource.")
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_describe(t *testing.T) {
|
|
createMockPlugins(t, mockPlugins)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s", err.Error())
|
|
}
|
|
|
|
for mockPluginName, plugin := range mockPlugins {
|
|
for mockBuilderName := range plugin.Builders {
|
|
expectedBuilderName := mockPluginName + "-" + mockBuilderName
|
|
|
|
if !c.Builders.Has(expectedBuilderName) {
|
|
t.Fatalf("expected to find builder %q", expectedBuilderName)
|
|
}
|
|
}
|
|
for mockProvisionerName := range plugin.Provisioners {
|
|
expectedProvisionerName := mockPluginName + "-" + mockProvisionerName
|
|
if !c.Provisioners.Has(expectedProvisionerName) {
|
|
t.Fatalf("expected to find builder %q", expectedProvisionerName)
|
|
}
|
|
}
|
|
for mockPostProcessorName := range plugin.PostProcessors {
|
|
expectedPostProcessorName := mockPluginName + "-" + mockPostProcessorName
|
|
if !c.PostProcessors.Has(expectedPostProcessorName) {
|
|
t.Fatalf("expected to find post-processor %q", expectedPostProcessorName)
|
|
}
|
|
}
|
|
for mockDatasourceName := range plugin.Datasources {
|
|
expectedDatasourceName := mockPluginName + "-" + mockDatasourceName
|
|
if !c.DataSources.Has(expectedDatasourceName) {
|
|
t.Fatalf("expected to find datasource %q", expectedDatasourceName)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_describe_installed(t *testing.T) {
|
|
createMockInstalledPlugins(t, mockInstalledPlugins, createMockChecksumFile)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s", err.Error())
|
|
}
|
|
|
|
for mockPluginName, plugin := range mockInstalledPlugins {
|
|
mockPluginName = strings.Split(mockPluginName, "_")[0]
|
|
for mockBuilderName := range plugin.Builders {
|
|
expectedBuilderName := mockPluginName + "-" + mockBuilderName
|
|
if !c.Builders.Has(expectedBuilderName) {
|
|
t.Fatalf("expected to find builder %q", expectedBuilderName)
|
|
}
|
|
}
|
|
for mockProvisionerName := range plugin.Provisioners {
|
|
expectedProvisionerName := mockPluginName + "-" + mockProvisionerName
|
|
if !c.Provisioners.Has(expectedProvisionerName) {
|
|
t.Fatalf("expected to find builder %q", expectedProvisionerName)
|
|
}
|
|
}
|
|
for mockPostProcessorName := range plugin.PostProcessors {
|
|
expectedPostProcessorName := mockPluginName + "-" + mockPostProcessorName
|
|
if !c.PostProcessors.Has(expectedPostProcessorName) {
|
|
t.Fatalf("expected to find post-processor %q", expectedPostProcessorName)
|
|
}
|
|
}
|
|
for mockDatasourceName := range plugin.Datasources {
|
|
expectedDatasourceName := mockPluginName + "-" + mockDatasourceName
|
|
if !c.DataSources.Has(expectedDatasourceName) {
|
|
t.Fatalf("expected to find datasource %q", expectedDatasourceName)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_describe_installed_for_invalid(t *testing.T) {
|
|
tc := []struct {
|
|
desc string
|
|
installedPluginsMock map[string]pluginsdk.Set
|
|
createMockFn func(*testing.T, map[string]pluginsdk.Set)
|
|
}{
|
|
{
|
|
desc: "Incorrectly named plugins",
|
|
installedPluginsMock: invalidInstalledPluginsMock,
|
|
createMockFn: func(t *testing.T, mocks map[string]pluginsdk.Set) {
|
|
createMockInstalledPlugins(t, mocks, createMockChecksumFile)
|
|
},
|
|
},
|
|
{
|
|
desc: "Plugins missing checksums",
|
|
installedPluginsMock: mockInstalledPlugins,
|
|
createMockFn: func(t *testing.T, mocks map[string]pluginsdk.Set) {
|
|
createMockInstalledPlugins(t, mocks)
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tc {
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
tt.createMockFn(t, tt.installedPluginsMock)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s", err.Error())
|
|
}
|
|
if c.Builders.Has("feather") {
|
|
t.Fatalf("expected to not find builder %q", "feather")
|
|
}
|
|
for mockPluginName, plugin := range tt.installedPluginsMock {
|
|
mockPluginName = strings.Split(mockPluginName, "_")[0]
|
|
for mockBuilderName := range plugin.Builders {
|
|
expectedBuilderName := mockPluginName + "-" + mockBuilderName
|
|
if c.Builders.Has(expectedBuilderName) {
|
|
t.Fatalf("expected to not find builder %q", expectedBuilderName)
|
|
}
|
|
}
|
|
for mockProvisionerName := range plugin.Provisioners {
|
|
expectedProvisionerName := mockPluginName + "-" + mockProvisionerName
|
|
if c.Provisioners.Has(expectedProvisionerName) {
|
|
t.Fatalf("expected to not find builder %q", expectedProvisionerName)
|
|
}
|
|
}
|
|
for mockPostProcessorName := range plugin.PostProcessors {
|
|
expectedPostProcessorName := mockPluginName + "-" + mockPostProcessorName
|
|
if c.PostProcessors.Has(expectedPostProcessorName) {
|
|
t.Fatalf("expected to not find post-processor %q", expectedPostProcessorName)
|
|
}
|
|
}
|
|
for mockDatasourceName := range plugin.Datasources {
|
|
expectedDatasourceName := mockPluginName + "-" + mockDatasourceName
|
|
if c.DataSources.Has(expectedDatasourceName) {
|
|
t.Fatalf("expected to not find datasource %q", expectedDatasourceName)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_defaultName(t *testing.T) {
|
|
createMockPlugins(t, defaultNameMock)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s ; mocks are %#v", err.Error(), defaultNameMock)
|
|
}
|
|
|
|
expectedBuilderNames := []string{"foo-bar", "foo-baz", "foo"}
|
|
for _, mockBuilderName := range expectedBuilderNames {
|
|
if !c.Builders.Has(mockBuilderName) {
|
|
t.Fatalf("expected to find builder %q; builders is %#v", mockBuilderName, c.Builders)
|
|
}
|
|
}
|
|
}
|
|
|
|
// no T.Parallel using os.Chdir
|
|
func TestMultiPlugin_CWD(t *testing.T) {
|
|
createMockPlugins(t, defaultNameMock)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
// Unset PACKER_PLUGIN_PATH to test CWD loading
|
|
os.Unsetenv("PACKER_PLUGIN_PATH")
|
|
if err := os.Chdir(pluginDir); err != nil {
|
|
t.Fatalf("failed to change directory to test loading from CWD: %s", err)
|
|
}
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s ; mocks are %#v", err.Error(), defaultNameMock)
|
|
}
|
|
expectedBuilderNames := []string{"foo-bar", "foo-baz", "foo"}
|
|
for _, mockBuilderName := range expectedBuilderNames {
|
|
if !c.Builders.Has(mockBuilderName) {
|
|
t.Fatalf("expected to find builder %q; builders is %#v", mockBuilderName, c.Builders)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_IgnoreChecksumFile(t *testing.T) {
|
|
createMockPlugins(t, defaultNameMock)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
|
|
csFile, err := generateMockChecksumFile(filepath.Join(pluginDir, "packer-plugin-foo"))
|
|
if err != nil {
|
|
t.Fatal(err.Error())
|
|
}
|
|
// Copy plugin contents into checksum file to validate that it is not only skipped but that it never gets loaded
|
|
if err := os.Rename(filepath.Join(pluginDir, "packer-plugin-foo"), csFile); err != nil {
|
|
t.Fatalf("failed to rename plugin bin file to checkfum file needed for test: %s", err)
|
|
}
|
|
|
|
c := PluginConfig{}
|
|
err = c.Discover()
|
|
if err != nil {
|
|
t.Fatalf("error discovering plugins; %s ; mocks are %#v", err.Error(), defaultNameMock)
|
|
}
|
|
expectedBuilderNames := []string{"foo-bar", "foo-baz", "foo"}
|
|
for _, mockBuilderName := range expectedBuilderNames {
|
|
if c.Builders.Has(mockBuilderName) {
|
|
t.Fatalf("expected to not find builder %q; builders is %#v", mockBuilderName, c.Builders)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMultiPlugin_defaultName_each_plugin_type(t *testing.T) {
|
|
createMockPlugins(t, doubleDefaultMock)
|
|
pluginDir := os.Getenv("PACKER_PLUGIN_PATH")
|
|
defer os.RemoveAll(pluginDir)
|
|
|
|
c := PluginConfig{}
|
|
err := c.Discover()
|
|
if err != nil {
|
|
t.Fatal("Should not have error because pluginsdk.DEFAULT_NAME is used twice but only once per plugin type.")
|
|
}
|
|
}
|
|
|
|
func generateFakePlugins(dirname string, pluginNames []string) (string, []string, func(), error) {
|
|
dir, err := os.MkdirTemp("", dirname)
|
|
if err != nil {
|
|
return "", nil, nil, fmt.Errorf("failed to create temporary test directory: %v", err)
|
|
}
|
|
|
|
cleanUpFunc := func() {
|
|
os.RemoveAll(dir)
|
|
}
|
|
|
|
var suffix string
|
|
if runtime.GOOS == "windows" {
|
|
suffix = ".exe"
|
|
}
|
|
|
|
plugins := make([]string, len(pluginNames))
|
|
for i, plugin := range pluginNames {
|
|
plug := filepath.Join(dir, plugin+suffix)
|
|
plugins[i] = plug
|
|
_, err := os.Create(plug)
|
|
if err != nil {
|
|
cleanUpFunc()
|
|
return "", nil, nil, fmt.Errorf("failed to create temporary plugin file (%s): %v", plug, err)
|
|
}
|
|
}
|
|
|
|
return dir, plugins, cleanUpFunc, nil
|
|
}
|
|
|
|
// TestHelperProcess isn't a real test. It's used as a helper process
|
|
// for multi-component plugin tests.
|
|
func TestHelperPlugins(t *testing.T) {
|
|
if os.Getenv("PKR_WANT_TEST_PLUGINS") != "1" {
|
|
return
|
|
}
|
|
defer os.Exit(0)
|
|
|
|
args := os.Args
|
|
for len(args) > 0 {
|
|
if args[0] == "--" {
|
|
args = args[1:]
|
|
break
|
|
}
|
|
args = args[1:]
|
|
}
|
|
if len(args) == 0 {
|
|
fmt.Fprintf(os.Stderr, "No command\n")
|
|
os.Exit(2)
|
|
}
|
|
|
|
pluginName, args := args[0], args[1:]
|
|
|
|
allMocks := []map[string]pluginsdk.Set{mockPlugins, defaultNameMock, doubleDefaultMock, badDefaultNameMock}
|
|
for _, mock := range allMocks {
|
|
plugin, found := mock[pluginName]
|
|
if found {
|
|
err := plugin.RunCommand(args...)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "No %q plugin found\n", pluginName)
|
|
os.Exit(2)
|
|
}
|
|
|
|
// HasExec reports whether the current system can start new processes
|
|
// using os.StartProcess or (more commonly) exec.Command.
|
|
func HasExec() bool {
|
|
switch runtime.GOOS {
|
|
case "js":
|
|
return false
|
|
case "windows":
|
|
// TODO(azr): Fix this once versioning is added and we know more
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// MustHaveExec checks that the current system can start new processes
|
|
// using os.StartProcess or (more commonly) exec.Command.
|
|
// If not, MustHaveExec calls t.Skip with an explanation.
|
|
func MustHaveExec(t testing.TB) {
|
|
if !HasExec() {
|
|
t.Skipf("skipping test: cannot exec subprocess on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
}
|
|
}
|
|
|
|
func MustHaveCommand(t testing.TB, cmd string) string {
|
|
path, err := exec.LookPath(cmd)
|
|
if err != nil {
|
|
t.Skipf("skipping test: cannot find the %q command: %v", cmd, err)
|
|
}
|
|
return path
|
|
}
|
|
|
|
func helperCommand(t *testing.T, s ...string) []string {
|
|
MustHaveExec(t)
|
|
|
|
cmd := []string{os.Args[0], "-test.run=TestHelperPlugins", "--"}
|
|
return append(cmd, s...)
|
|
}
|
|
|
|
func createMockPlugins(t *testing.T, plugins map[string]pluginsdk.Set) {
|
|
pluginDir, err := tmp.Dir("pkr-multi-component-plugin-test-*")
|
|
{
|
|
// create an exectutable file with a `sh` sheebang
|
|
// this file will look like:
|
|
// #!/bin/sh
|
|
// PKR_WANT_TEST_PLUGINS=1 ...plugin/debug.test -test.run=TestHelperPlugins -- bird $@
|
|
// 'bird' is the mock plugin we want to start
|
|
// $@ just passes all passed arguments
|
|
// This will allow to run the fake plugin from go tests which in turn
|
|
// will run go tests callback to `TestHelperPlugins`, this one will be
|
|
// transparently calling our mock multi-component plugins `mockPlugins`.
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
t.Logf("putting temporary mock plugins in %s", pluginDir)
|
|
|
|
shPath := MustHaveCommand(t, "bash")
|
|
for name := range plugins {
|
|
plugin := path.Join(pluginDir, "packer-plugin-"+name)
|
|
t.Logf("creating fake plugin %s", plugin)
|
|
fileContent := ""
|
|
fileContent = fmt.Sprintf("#!%s\n", shPath)
|
|
fileContent += strings.Join(
|
|
append([]string{"PKR_WANT_TEST_PLUGINS=1"}, helperCommand(t, name, "$@")...),
|
|
" ")
|
|
if err := os.WriteFile(plugin, []byte(fileContent), os.ModePerm); err != nil {
|
|
t.Fatalf("failed to create fake plugin binary: %v", err)
|
|
}
|
|
}
|
|
}
|
|
t.Setenv("PACKER_PLUGIN_PATH", pluginDir)
|
|
}
|
|
|
|
func createMockChecksumFile(t testing.TB, filePath string) {
|
|
t.Helper()
|
|
cs, err := generateMockChecksumFile(filePath)
|
|
if err != nil {
|
|
t.Fatalf(err.Error())
|
|
}
|
|
t.Logf("created fake plugin checksum file %s", cs)
|
|
}
|
|
|
|
func generateMockChecksumFile(filePath string) (string, error) {
|
|
cs := plugingetter.Checksummer{
|
|
Type: "sha256",
|
|
Hash: sha256.New(),
|
|
}
|
|
|
|
f, err := os.Open(filePath)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to open fake plugin binary: %v", err)
|
|
}
|
|
defer f.Close()
|
|
|
|
sum, err := cs.Sum(f)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to checksum fake plugin binary: %v", err)
|
|
}
|
|
|
|
sumfile := filePath + cs.FileExt()
|
|
if err := os.WriteFile(sumfile, []byte(fmt.Sprintf("%x", sum)), os.ModePerm); err != nil {
|
|
return "", fmt.Errorf("failed to write checksum fake plugin binary: %v", err)
|
|
}
|
|
return sumfile, nil
|
|
}
|
|
|
|
func createMockInstalledPlugins(t *testing.T, plugins map[string]pluginsdk.Set, opts ...func(tb testing.TB, filePath string)) {
|
|
pluginDir, err := tmp.Dir("pkr-multi-component-plugin-test-*")
|
|
{
|
|
// create an exectutable file with a `sh` sheebang
|
|
// this file will look like:
|
|
// #!/bin/sh
|
|
// PKR_WANT_TEST_PLUGINS=1 ...plugin/debug.test -test.run=TestHelperPlugins -- bird $@
|
|
// 'bird' is the mock plugin we want to start
|
|
// $@ just passes all passed arguments
|
|
// This will allow to run the fake plugin from go tests which in turn
|
|
// will run go tests callback to `TestHelperPlugins`, this one will be
|
|
// transparently calling our mock multi-component plugins `mockPlugins`.
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
dir, err := os.MkdirTemp(pluginDir, "github.com")
|
|
if err != nil {
|
|
t.Fatalf("failed to create temporary test directory: %v", err)
|
|
}
|
|
dir, err = os.MkdirTemp(dir, "hashicorp")
|
|
if err != nil {
|
|
t.Fatalf("failed to create temporary test directory: %v", err)
|
|
}
|
|
dir, err = os.MkdirTemp(dir, "plugin")
|
|
if err != nil {
|
|
t.Fatalf("failed to create temporary test directory: %v", err)
|
|
}
|
|
t.Logf("putting temporary mock installed plugins in %s", dir)
|
|
|
|
shPath := MustHaveCommand(t, "bash")
|
|
for name := range plugins {
|
|
plugin := path.Join(dir, "packer-plugin-"+name)
|
|
t.Logf("creating fake plugin %s", plugin)
|
|
fileContent := ""
|
|
fileContent = fmt.Sprintf("#!%s\n", shPath)
|
|
fileContent += strings.Join(
|
|
append([]string{"PKR_WANT_TEST_PLUGINS=1"}, helperCommand(t, strings.Split(name, "_")[0], "$@")...),
|
|
" ")
|
|
if err := os.WriteFile(plugin, []byte(fileContent), os.ModePerm); err != nil {
|
|
t.Fatalf("failed to create fake plugin binary: %v", err)
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
opt(t, plugin)
|
|
}
|
|
}
|
|
}
|
|
t.Setenv("PACKER_PLUGIN_PATH", pluginDir)
|
|
}
|
|
|
|
func getFormattedInstalledPluginSuffix() string {
|
|
return fmt.Sprintf("v1.0.0_x5.0_%s_%s", runtime.GOOS, runtime.GOARCH)
|
|
}
|
|
|
|
var (
|
|
mockPlugins = map[string]pluginsdk.Set{
|
|
"bird": {
|
|
Builders: map[string]packersdk.Builder{
|
|
"feather": nil,
|
|
"guacamole": nil,
|
|
},
|
|
},
|
|
"chimney": {
|
|
PostProcessors: map[string]packersdk.PostProcessor{
|
|
"smoke": nil,
|
|
},
|
|
},
|
|
"data": {
|
|
Datasources: map[string]packersdk.Datasource{
|
|
"source": nil,
|
|
},
|
|
},
|
|
}
|
|
mockInstalledPlugins = map[string]pluginsdk.Set{
|
|
fmt.Sprintf("bird_%s", getFormattedInstalledPluginSuffix()): {
|
|
Builders: map[string]packersdk.Builder{
|
|
"feather": nil,
|
|
"guacamole": nil,
|
|
},
|
|
},
|
|
fmt.Sprintf("chimney_%s", getFormattedInstalledPluginSuffix()): {
|
|
PostProcessors: map[string]packersdk.PostProcessor{
|
|
"smoke": nil,
|
|
},
|
|
},
|
|
fmt.Sprintf("data_%s", getFormattedInstalledPluginSuffix()): {
|
|
Datasources: map[string]packersdk.Datasource{
|
|
"source": nil,
|
|
},
|
|
},
|
|
}
|
|
|
|
invalidInstalledPluginsMock = map[string]pluginsdk.Set{
|
|
"bird_v0.1.1_x5.0_wrong_architecture": {
|
|
Builders: map[string]packersdk.Builder{
|
|
"feather": nil,
|
|
"guacamole": nil,
|
|
},
|
|
},
|
|
"chimney_cool_ranch": {
|
|
PostProcessors: map[string]packersdk.PostProcessor{
|
|
"smoke": nil,
|
|
},
|
|
},
|
|
"data": {
|
|
Datasources: map[string]packersdk.Datasource{
|
|
"source": nil,
|
|
},
|
|
},
|
|
}
|
|
defaultNameMock = map[string]pluginsdk.Set{
|
|
"foo": {
|
|
Builders: map[string]packersdk.Builder{
|
|
"bar": nil,
|
|
"baz": nil,
|
|
pluginsdk.DEFAULT_NAME: nil,
|
|
},
|
|
},
|
|
}
|
|
|
|
doubleDefaultMock = map[string]pluginsdk.Set{
|
|
"yolo": {
|
|
Builders: map[string]packersdk.Builder{
|
|
"bar": nil,
|
|
"baz": nil,
|
|
pluginsdk.DEFAULT_NAME: nil,
|
|
},
|
|
PostProcessors: map[string]packersdk.PostProcessor{
|
|
pluginsdk.DEFAULT_NAME: nil,
|
|
},
|
|
},
|
|
}
|
|
|
|
badDefaultNameMock = map[string]pluginsdk.Set{
|
|
"foo": {
|
|
Builders: map[string]packersdk.Builder{
|
|
"bar": nil,
|
|
"baz": nil,
|
|
pluginsdk.DEFAULT_NAME: nil,
|
|
},
|
|
},
|
|
}
|
|
)
|