packer-cn/helper/communicator/step_connect_test.go

40 lines
743 B
Go
Raw Normal View History

2015-06-13 17:50:45 -04:00
package communicator
import (
"bytes"
"testing"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
2015-06-13 17:50:45 -04:00
"github.com/mitchellh/multistep"
)
func TestStepConnect_impl(t *testing.T) {
var _ multistep.Step = new(StepConnect)
}
func TestStepConnect_none(t *testing.T) {
state := testState(t)
step := &StepConnect{
Config: &Config{
Type: "none",
},
}
defer step.Cleanup(state)
// run the step
if action := step.Run(state); action != multistep.ActionContinue {
t.Fatalf("bad action: %#v", action)
}
}
func testState(t *testing.T) multistep.StateBag {
state := new(multistep.BasicStateBag)
state.Put("hook", &packer.MockHook{})
state.Put("ui", &packer.BasicUi{
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
})
return state
}