86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
package oci
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestInstanceInfo(t *testing.T) {
|
|
state := testState()
|
|
state.Put("instance_id", "ocid1...")
|
|
|
|
step := new(stepInstanceInfo)
|
|
defer step.Cleanup(state)
|
|
|
|
if action := step.Run(context.Background(), state); action != multistep.ActionContinue {
|
|
t.Fatalf("bad action: %#v", action)
|
|
}
|
|
|
|
instanceIPRaw, ok := state.GetOk("instance_ip")
|
|
if !ok {
|
|
t.Fatalf("should have instance_ip")
|
|
}
|
|
|
|
if instanceIPRaw.(string) != "ip" {
|
|
t.Fatalf("should've got ip ('%s' != 'ip')", instanceIPRaw.(string))
|
|
}
|
|
}
|
|
|
|
func TestInstanceInfoPrivateIP(t *testing.T) {
|
|
baseTestConfig := baseTestConfig()
|
|
baseTestConfig.UsePrivateIP = true
|
|
state := new(multistep.BasicStateBag)
|
|
state.Put("config", baseTestConfig)
|
|
state.Put("driver", &driverMock{cfg: baseTestConfig})
|
|
state.Put("hook", &packer.MockHook{})
|
|
state.Put("ui", &packer.BasicUi{
|
|
Reader: new(bytes.Buffer),
|
|
Writer: new(bytes.Buffer),
|
|
})
|
|
state.Put("instance_id", "ocid1...")
|
|
|
|
step := new(stepInstanceInfo)
|
|
defer step.Cleanup(state)
|
|
|
|
if action := step.Run(context.Background(), state); action != multistep.ActionContinue {
|
|
t.Fatalf("bad action: %#v", action)
|
|
}
|
|
|
|
instanceIPRaw, ok := state.GetOk("instance_ip")
|
|
if !ok {
|
|
t.Fatalf("should have instance_ip")
|
|
}
|
|
|
|
if instanceIPRaw.(string) != "private_ip" {
|
|
t.Fatalf("should've got ip ('%s' != 'private_ip')", instanceIPRaw.(string))
|
|
}
|
|
}
|
|
|
|
func TestInstanceInfo_GetInstanceIPErr(t *testing.T) {
|
|
state := testState()
|
|
state.Put("instance_id", "ocid1...")
|
|
|
|
step := new(stepInstanceInfo)
|
|
defer step.Cleanup(state)
|
|
|
|
driver := state.Get("driver").(*driverMock)
|
|
driver.GetInstanceIPErr = errors.New("error")
|
|
|
|
if action := step.Run(context.Background(), state); action != multistep.ActionHalt {
|
|
t.Fatalf("bad action: %#v", action)
|
|
}
|
|
|
|
if _, ok := state.GetOk("error"); !ok {
|
|
t.Fatalf("should have error")
|
|
}
|
|
|
|
if _, ok := state.GetOk("instance_ip"); ok {
|
|
t.Fatalf("should NOT have instance_ip")
|
|
}
|
|
}
|