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 41 42 43 44 45 46 47 48 49 50 51 52 53
|
//go:build acceptance || compute || images
// +build acceptance compute images
package v2
import (
"testing"
"github.com/gophercloud/gophercloud/acceptance/clients"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/compute/v2/images"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestImagesList(t *testing.T) {
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
choices, err := clients.AcceptanceTestChoicesFromEnv()
th.AssertNoErr(t, err)
allPages, err := images.ListDetail(client, nil).AllPages()
th.AssertNoErr(t, err)
allImages, err := images.ExtractImages(allPages)
th.AssertNoErr(t, err)
var found bool
for _, image := range allImages {
tools.PrintResource(t, image)
if image.ID == choices.ImageID {
found = true
}
}
th.AssertEquals(t, found, true)
}
func TestImagesGet(t *testing.T) {
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
choices, err := clients.AcceptanceTestChoicesFromEnv()
th.AssertNoErr(t, err)
image, err := images.Get(client, choices.ImageID).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, image)
th.AssertEquals(t, choices.ImageID, image.ID)
}
|