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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
package testing
import (
"testing"
"github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/aggregates"
"github.com/gophercloud/gophercloud/pagination"
th "github.com/gophercloud/gophercloud/testhelper"
"github.com/gophercloud/gophercloud/testhelper/client"
)
func TestListAggregates(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleListSuccessfully(t)
pages := 0
err := aggregates.List(client.ServiceClient()).EachPage(func(page pagination.Page) (bool, error) {
pages++
actual, err := aggregates.ExtractAggregates(page)
if err != nil {
return false, err
}
if len(actual) != 2 {
t.Fatalf("Expected 2 aggregates, got %d", len(actual))
}
th.CheckDeepEquals(t, FirstFakeAggregate, actual[0])
th.CheckDeepEquals(t, SecondFakeAggregate, actual[1])
return true, nil
})
th.AssertNoErr(t, err)
if pages != 1 {
t.Errorf("Expected 1 page, saw %d", pages)
}
}
func TestCreateAggregates(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleCreateSuccessfully(t)
expected := CreatedAggregate
opts := aggregates.CreateOpts{
Name: "name",
AvailabilityZone: "london",
}
actual, err := aggregates.Create(client.ServiceClient(), opts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
func TestDeleteAggregates(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleDeleteSuccessfully(t)
err := aggregates.Delete(client.ServiceClient(), AggregateIDtoDelete).ExtractErr()
th.AssertNoErr(t, err)
}
func TestGetAggregates(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGetSuccessfully(t)
expected := SecondFakeAggregate
actual, err := aggregates.Get(client.ServiceClient(), AggregateIDtoGet).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
func TestUpdateAggregate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleUpdateSuccessfully(t)
expected := UpdatedAggregate
opts := aggregates.UpdateOpts{
Name: "test-aggregates2",
AvailabilityZone: "nova2",
}
actual, err := aggregates.Update(client.ServiceClient(), expected.ID, opts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
func TestAddHostAggregate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleAddHostSuccessfully(t)
expected := AggregateWithAddedHost
opts := aggregates.AddHostOpts{
Host: "cmp1",
}
actual, err := aggregates.AddHost(client.ServiceClient(), expected.ID, opts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
func TestRemoveHostAggregate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleRemoveHostSuccessfully(t)
expected := AggregateWithRemovedHost
opts := aggregates.RemoveHostOpts{
Host: "cmp1",
}
actual, err := aggregates.RemoveHost(client.ServiceClient(), expected.ID, opts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
func TestSetMetadataAggregate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleSetMetadataSuccessfully(t)
expected := AggregateWithUpdatedMetadata
opts := aggregates.SetMetadataOpts{
Metadata: map[string]interface{}{"key": "value"},
}
actual, err := aggregates.SetMetadata(client.ServiceClient(), expected.ID, opts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, &expected, actual)
}
|