mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 15:01: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>
137 lines
3.3 KiB
Go
137 lines
3.3 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// plugin_acc_test.go should contain acceptance tests for features related to
|
|
// installing, discovering and running plugins.
|
|
package plugin
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"regexp"
|
|
"testing"
|
|
|
|
amazonacc "github.com/hashicorp/packer-plugin-amazon/builder/ebs/acceptance"
|
|
"github.com/hashicorp/packer-plugin-sdk/acctest"
|
|
"github.com/hashicorp/packer-plugin-sdk/acctest/testutils"
|
|
"github.com/hashicorp/packer/hcl2template/addrs"
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
//go:embed test-fixtures/basic-amazon-ebs.pkr.hcl
|
|
var basicAmazonEbsHCL2Template string
|
|
|
|
func TestAccInitAndBuildBasicAmazonEbs(t *testing.T) {
|
|
plugin := addrs.Plugin{
|
|
Hostname: "github.com",
|
|
Namespace: "hashicorp",
|
|
Type: "amazon",
|
|
}
|
|
testCase := &acctest.PluginTestCase{
|
|
Name: "amazon-ebs_basic_plugin_init_and_build_test",
|
|
Setup: func() error {
|
|
return cleanupPluginInstallation(plugin)
|
|
},
|
|
Teardown: func() error {
|
|
helper := amazonacc.AMIHelper{
|
|
Region: "us-east-1",
|
|
Name: "packer-plugin-amazon-ebs-test",
|
|
}
|
|
return helper.CleanUpAmi()
|
|
},
|
|
Template: basicAmazonEbsHCL2Template,
|
|
Type: "amazon-ebs",
|
|
Init: true,
|
|
CheckInit: func(initCommand *exec.Cmd, logfile string) error {
|
|
if initCommand.ProcessState != nil {
|
|
if initCommand.ProcessState.ExitCode() != 0 {
|
|
return fmt.Errorf("Bad exit code. Logfile: %s", logfile)
|
|
}
|
|
}
|
|
logs, err := os.Open(logfile)
|
|
if err != nil {
|
|
return fmt.Errorf("Unable find %s", logfile)
|
|
}
|
|
defer logs.Close()
|
|
|
|
logsBytes, err := ioutil.ReadAll(logs)
|
|
if err != nil {
|
|
return fmt.Errorf("Unable to read %s", logfile)
|
|
}
|
|
initOutput := string(logsBytes)
|
|
return checkPluginInstallation(initOutput, plugin)
|
|
},
|
|
Check: func(buildCommand *exec.Cmd, logfile string) error {
|
|
if buildCommand.ProcessState != nil {
|
|
if buildCommand.ProcessState.ExitCode() != 0 {
|
|
return fmt.Errorf("Bad exit code. Logfile: %s", logfile)
|
|
}
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
acctest.TestPlugin(t, testCase)
|
|
}
|
|
|
|
func cleanupPluginInstallation(plugin addrs.Plugin) error {
|
|
home, err := homedir.Dir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pluginPath := filepath.Join(home,
|
|
".packer.d",
|
|
"plugins",
|
|
plugin.Hostname,
|
|
plugin.Namespace,
|
|
plugin.Type)
|
|
|
|
if xdgConfigHome := os.Getenv("XDG_CONFIG_HOME"); xdgConfigHome != "" {
|
|
pluginPath = filepath.Join(xdgConfigHome,
|
|
"packer",
|
|
"plugins",
|
|
plugin.Hostname,
|
|
plugin.Namespace,
|
|
plugin.Type)
|
|
}
|
|
|
|
testutils.CleanupFiles(pluginPath)
|
|
return nil
|
|
}
|
|
|
|
func checkPluginInstallation(initOutput string, plugin addrs.Plugin) error {
|
|
expectedInitLog := "Installed plugin " + plugin.String()
|
|
if matched, _ := regexp.MatchString(expectedInitLog+".*", initOutput); !matched {
|
|
return fmt.Errorf("logs doesn't contain expected foo value %q", initOutput)
|
|
}
|
|
|
|
home, err := homedir.Dir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pluginPath := filepath.Join(home,
|
|
".packer.d",
|
|
"plugins",
|
|
plugin.Hostname,
|
|
plugin.Namespace,
|
|
plugin.Type)
|
|
|
|
if xdgConfigHome := os.Getenv("XDG_CONFIG_HOME"); xdgConfigHome != "" {
|
|
pluginPath = filepath.Join(xdgConfigHome,
|
|
"packer",
|
|
"plugins",
|
|
plugin.Hostname,
|
|
plugin.Namespace,
|
|
plugin.Type)
|
|
}
|
|
|
|
if !testutils.FileExists(pluginPath) {
|
|
return fmt.Errorf("%s plugin installation not found", plugin.String())
|
|
}
|
|
return nil
|
|
}
|