blob: d85070d685f7aff4e4c1a7654b30d0da45705548 [file] [log] [blame]
package bootfromvolume
import (
"testing"
"github.com/gophercloud/gophercloud/openstack/compute/v2/servers"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestCreateOpts(t *testing.T) {
base := servers.CreateOpts{
Name: "createdserver",
ImageRef: "asdfasdfasdf",
FlavorRef: "performance1-1",
}
ext := CreateOptsExt{
CreateOptsBuilder: base,
BlockDevice: []BlockDevice{
BlockDevice{
UUID: "123456",
SourceType: Image,
DestinationType: "volume",
VolumeSize: 10,
DeleteOnTermination: false,
},
},
}
expected := `
{
"server": {
"name": "createdserver",
"imageRef": "asdfasdfasdf",
"flavorRef": "performance1-1",
"block_device_mapping_v2":[
{
"uuid":"123456",
"source_type":"image",
"destination_type":"volume",
"boot_index": 0,
"delete_on_termination": false,
"volume_size": 10
}
]
}
}
`
actual, err := ext.ToServerCreateMap()
th.AssertNoErr(t, err)
th.CheckJSONEquals(t, expected, actual)
}
func TestCreateMultiEphemeralOpts(t *testing.T) {
base := servers.CreateOpts{
Name: "createdserver",
ImageRef: "asdfasdfasdf",
FlavorRef: "performance1-1",
}
ext := CreateOptsExt{
CreateOptsBuilder: base,
BlockDevice: []BlockDevice{
BlockDevice{
BootIndex: 0,
DeleteOnTermination: true,
DestinationType: "local",
SourceType: Image,
UUID: "123456",
},
BlockDevice{
BootIndex: -1,
DeleteOnTermination: true,
DestinationType: "local",
GuestFormat: "ext4",
SourceType: Blank,
VolumeSize: 1,
},
BlockDevice{
BootIndex: -1,
DeleteOnTermination: true,
DestinationType: "local",
GuestFormat: "ext4",
SourceType: Blank,
VolumeSize: 1,
},
},
}
expected := `
{
"server": {
"name": "createdserver",
"imageRef": "asdfasdfasdf",
"flavorRef": "performance1-1",
"block_device_mapping_v2":[
{
"boot_index": 0,
"delete_on_termination": true,
"destination_type":"local",
"source_type":"image",
"uuid":"123456",
"volume_size": 0
},
{
"boot_index": -1,
"delete_on_termination": true,
"destination_type":"local",
"guest_format":"ext4",
"source_type":"blank",
"volume_size": 1
},
{
"boot_index": -1,
"delete_on_termination": true,
"destination_type":"local",
"guest_format":"ext4",
"source_type":"blank",
"volume_size": 1
}
]
}
}
`
actual, err := ext.ToServerCreateMap()
th.AssertNoErr(t, err)
th.CheckJSONEquals(t, expected, actual)
}