89 lines
1.9 KiB
Go
89 lines
1.9 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package core
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/vagrant-plugin-sdk/component"
|
|
"github.com/hashicorp/vagrant/internal/plugin"
|
|
)
|
|
|
|
// Synced folder entry
|
|
type testSyncedFolder struct {
|
|
source string
|
|
destination string
|
|
kind string
|
|
}
|
|
|
|
// Add vm box name to configuration
|
|
func testBoxConfig(name string) *component.ConfigData {
|
|
return &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"vm": &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"box": name,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Add synced folders to vm configuration
|
|
func testSyncedFolderConfig(folders []*testSyncedFolder) *component.ConfigData {
|
|
f := map[interface{}]interface{}{}
|
|
for _, tf := range folders {
|
|
f[tf.destination] = map[interface{}]interface{}{
|
|
"hostpath": tf.source,
|
|
"guestpath": tf.destination,
|
|
"type": tf.kind,
|
|
}
|
|
}
|
|
|
|
return &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"vm": &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"__synced_folders": f,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Set guest name in vm configuration
|
|
func testGuestConfig(name string) *component.ConfigData {
|
|
return &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"vm": &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"guest": name,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Set communicator name in vm configuration
|
|
func testCommunicatorConfig(name string) *component.ConfigData {
|
|
return &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"vm": &component.ConfigData{
|
|
Data: map[string]interface{}{
|
|
"communicator": name,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Generate a synced folder plugin
|
|
func syncedFolderPlugin(t *testing.T, name string) *plugin.Plugin {
|
|
return plugin.TestPlugin(t,
|
|
BuildTestSyncedFolderPlugin(""),
|
|
plugin.WithPluginName(name),
|
|
plugin.WithPluginTypes(component.SyncedFolderType),
|
|
)
|
|
}
|