59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
|
// Copyright (c) 2017 Oracle America, Inc.
|
||
|
// The contents of this file are subject to the Mozilla Public License Version
|
||
|
// 2.0 (the "License"); you may not use this file except in compliance with the
|
||
|
// License. If a copy of the MPL was not distributed with this file, You can
|
||
|
// obtain one at http://mozilla.org/MPL/2.0/
|
||
|
|
||
|
package bmcs
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mitchellh/multistep"
|
||
|
)
|
||
|
|
||
|
func TestInstanceInfo(t *testing.T) {
|
||
|
state := testState()
|
||
|
state.Put("instance_id", "ocid1...")
|
||
|
|
||
|
step := new(stepInstanceInfo)
|
||
|
defer step.Cleanup(state)
|
||
|
|
||
|
if action := step.Run(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 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(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")
|
||
|
}
|
||
|
}
|