1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
//go:build acceptance || compute || volumeattach
// +build acceptance compute volumeattach
package v2
import (
"testing"
"github.com/gophercloud/gophercloud/acceptance/clients"
bs "github.com/gophercloud/gophercloud/acceptance/openstack/blockstorage/v2"
"github.com/gophercloud/gophercloud/acceptance/tools"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestVolumeAttachAttachment(t *testing.T) {
clients.RequireLong(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
blockClient, err := clients.NewBlockStorageV3Client()
th.AssertNoErr(t, err)
server, err := CreateServer(t, client)
th.AssertNoErr(t, err)
defer DeleteServer(t, client, server)
volume, err := bs.CreateVolume(t, blockClient)
th.AssertNoErr(t, err)
defer bs.DeleteVolume(t, blockClient, volume)
client.Microversion = "2.79"
volumeAttachment, err := CreateVolumeAttachment(t, client, blockClient, server, volume)
th.AssertNoErr(t, err)
defer DeleteVolumeAttachment(t, client, blockClient, server, volumeAttachment)
tools.PrintResource(t, volumeAttachment)
th.AssertEquals(t, volumeAttachment.ServerID, server.ID)
}
|