packer-cn/builder/hyperv/common/step_test.go

29 lines
717 B
Go
Raw Normal View History

2018-07-07 08:57:44 -04:00
package common
import (
"bytes"
"os"
"path/filepath"
2018-07-07 08:57:44 -04:00
"testing"
2020-12-17 16:29:25 -05:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
"github.com/hashicorp/packer-plugin-sdk/uuid"
2018-07-07 08:57:44 -04:00
)
func testState(t *testing.T) multistep.StateBag {
state := new(multistep.BasicStateBag)
state.Put("driver", new(DriverMock))
state.Put("ui", &packersdk.BasicUi{
2018-07-07 08:57:44 -04:00
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
})
return state
}
// Generates an absolute path to a directory under OS temp with a name
// beginning with prefix and a UUID appended to the end
func genTestDirPath(prefix string) string {
return filepath.Join(os.TempDir(), prefix+"-"+uuid.TimeOrderedUUID())
}