packer-cn/post-processor/shell-local/post-processor_test.go

266 lines
6.3 KiB
Go
Raw Normal View History

package shell_local
import (
"io/ioutil"
"os"
"runtime"
"testing"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/packer"
"github.com/stretchr/testify/assert"
)
func TestPostProcessor_ImplementsPostProcessor(t *testing.T) {
var _ packer.PostProcessor = new(PostProcessor)
}
func testConfig() map[string]interface{} {
return map[string]interface{}{
"inline": []interface{}{"foo", "bar"},
}
}
func TestPostProcessor_Impl(t *testing.T) {
var raw interface{}
raw = &PostProcessor{}
if _, ok := raw.(packer.PostProcessor); !ok {
t.Fatalf("must be a post processor")
}
}
func TestPostProcessorPrepare_Defaults(t *testing.T) {
var p PostProcessor
2018-02-28 17:35:42 -05:00
raws := testConfig()
2018-02-28 17:35:42 -05:00
err := p.Configure(raws)
if err != nil {
t.Fatalf("err: %s", err)
}
}
func TestPostProcessorPrepare_InlineShebang(t *testing.T) {
2018-02-28 17:35:42 -05:00
raws := testConfig()
2018-02-28 17:35:42 -05:00
delete(raws, "inline_shebang")
p := new(PostProcessor)
2018-02-28 17:35:42 -05:00
err := p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
expected := ""
if runtime.GOOS != "windows" {
expected = "/bin/sh -e"
}
if p.config.InlineShebang != expected {
t.Fatalf("bad value: %s", p.config.InlineShebang)
}
// Test with a good one
2018-02-28 17:35:42 -05:00
raws["inline_shebang"] = "foo"
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
if p.config.InlineShebang != "foo" {
t.Fatalf("bad value: %s", p.config.InlineShebang)
}
}
func TestPostProcessorPrepare_InvalidKey(t *testing.T) {
var p PostProcessor
2018-02-28 17:35:42 -05:00
raws := testConfig()
// Add a random key
2018-02-28 17:35:42 -05:00
raws["i_should_not_be_valid"] = true
err := p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
}
func TestPostProcessorPrepare_Script(t *testing.T) {
2018-02-28 17:35:42 -05:00
raws := testConfig()
delete(raws, "inline")
2018-02-28 17:35:42 -05:00
raws["script"] = "/this/should/not/exist"
p := new(PostProcessor)
2018-02-28 17:35:42 -05:00
err := p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
// Test with a good one
tf, err := ioutil.TempFile("", "packer")
if err != nil {
t.Fatalf("error tempfile: %s", err)
}
defer os.Remove(tf.Name())
2018-02-28 17:35:42 -05:00
raws["script"] = tf.Name()
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
}
func TestPostProcessorPrepare_ExecuteCommand(t *testing.T) {
// Check that passing a string will work (Backwards Compatibility)
p := new(PostProcessor)
raws := testConfig()
raws["execute_command"] = "foo bar"
err := p.Configure(raws)
expected := []string{"sh", "-c", "foo bar"}
if err != nil {
t.Fatalf("should handle backwards compatibility: %s", err)
}
assert.Equal(t, p.config.ExecuteCommand, expected,
"Did not get expected execute_command: expected: %#v; received %#v", expected, p.config.ExecuteCommand)
// Check that passing a list will work
p = new(PostProcessor)
raws = testConfig()
raws["execute_command"] = []string{"foo", "bar"}
err = p.Configure(raws)
if err != nil {
t.Fatalf("should handle backwards compatibility: %s", err)
}
expected = []string{"foo", "bar"}
assert.Equal(t, p.config.ExecuteCommand, expected,
"Did not get expected execute_command: expected: %#v; received %#v", expected, p.config.ExecuteCommand)
// Check that default is as expected
raws = testConfig()
delete(raws, "execute_command")
p = new(PostProcessor)
p.Configure(raws)
if runtime.GOOS != "windows" {
expected = []string{"/bin/sh", "-c", "{{.Vars}} {{.Script}}"}
} else {
2018-04-04 18:52:39 -04:00
expected = []string{"cmd", "/V", "/C", "{{.Vars}}", "call", "{{.Script}}"}
}
assert.Equal(t, p.config.ExecuteCommand, expected,
"Did not get expected default: expected: %#v; received %#v", expected, p.config.ExecuteCommand)
}
func TestPostProcessorPrepare_ScriptAndInline(t *testing.T) {
var p PostProcessor
2018-02-28 17:35:42 -05:00
raws := testConfig()
// Error if no scripts/inline commands provided
delete(raws, "inline")
delete(raws, "script")
delete(raws, "command")
delete(raws, "scripts")
err := p.Configure(raws)
if err == nil {
t.Fatalf("should error when no scripts/inline commands are provided")
}
// Test with both
tf, err := ioutil.TempFile("", "packer")
if err != nil {
t.Fatalf("error tempfile: %s", err)
}
defer os.Remove(tf.Name())
2018-02-28 17:35:42 -05:00
raws["inline"] = []interface{}{"foo"}
raws["script"] = tf.Name()
err = p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
}
func TestPostProcessorPrepare_ScriptAndScripts(t *testing.T) {
var p PostProcessor
2018-02-28 17:35:42 -05:00
raws := testConfig()
// Test with both
tf, err := ioutil.TempFile("", "packer")
if err != nil {
t.Fatalf("error tempfile: %s", err)
}
defer os.Remove(tf.Name())
2018-02-28 17:35:42 -05:00
raws["inline"] = []interface{}{"foo"}
raws["scripts"] = []string{tf.Name()}
err = p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
}
func TestPostProcessorPrepare_Scripts(t *testing.T) {
2018-02-28 17:35:42 -05:00
raws := testConfig()
delete(raws, "inline")
2018-02-28 17:35:42 -05:00
raws["scripts"] = []string{}
p := new(PostProcessor)
2018-02-28 17:35:42 -05:00
err := p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
// Test with a good one
tf, err := ioutil.TempFile("", "packer")
if err != nil {
t.Fatalf("error tempfile: %s", err)
}
defer os.Remove(tf.Name())
2018-02-28 17:35:42 -05:00
raws["scripts"] = []string{tf.Name()}
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
}
func TestPostProcessorPrepare_EnvironmentVars(t *testing.T) {
2018-02-28 17:35:42 -05:00
raws := testConfig()
// Test with a bad case
2018-02-28 17:35:42 -05:00
raws["environment_vars"] = []string{"badvar", "good=var"}
p := new(PostProcessor)
2018-02-28 17:35:42 -05:00
err := p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
// Test with a trickier case
2018-02-28 17:35:42 -05:00
raws["environment_vars"] = []string{"=bad"}
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err == nil {
t.Fatal("should have error")
}
// Test with a good case
// Note: baz= is a real env variable, just empty
2018-02-28 17:35:42 -05:00
raws["environment_vars"] = []string{"FOO=bar", "baz="}
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
// Test when the env variable value contains an equals sign
2018-02-28 17:35:42 -05:00
raws["environment_vars"] = []string{"good=withequals=true"}
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
// Test when the env variable value starts with an equals sign
2018-02-28 17:35:42 -05:00
raws["environment_vars"] = []string{"good==true"}
p = new(PostProcessor)
2018-02-28 17:35:42 -05:00
err = p.Configure(raws)
if err != nil {
t.Fatalf("should not have error: %s", err)
}
}