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
|
package testing
import (
"testing"
"github.com/gophercloud/gophercloud/openstack/clustering/v1/profiles"
"github.com/gophercloud/gophercloud/pagination"
th "github.com/gophercloud/gophercloud/testhelper"
fake "github.com/gophercloud/gophercloud/testhelper/client"
)
func TestCreateProfile(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleCreateSuccessfully(t)
networks := []map[string]interface{}{
{"network": "private-network"},
}
props := map[string]interface{}{
"name": "test_gopher_cloud_profile",
"flavor": "t2.small",
"image": "centos7.3-latest",
"networks": networks,
"security_groups": "",
}
createOpts := &profiles.CreateOpts{
Name: "TestProfile",
Spec: profiles.Spec{
Type: "os.nova.server",
Version: "1.0",
Properties: props,
},
}
profile, err := profiles.Create(fake.ServiceClient(), createOpts).Extract()
if err != nil {
t.Errorf("Failed to extract profile: %v", err)
}
th.AssertDeepEquals(t, ExpectedCreate, *profile)
}
func TestGetProfile(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGetSuccessfully(t)
actual, err := profiles.Get(fake.ServiceClient(), ExpectedGet.ID).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedGet, *actual)
}
func TestListProfiles(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleListSuccessfully(t)
var iFalse bool
listOpts := profiles.ListOpts{
GlobalProject: &iFalse,
}
count := 0
err := profiles.List(fake.ServiceClient(), listOpts).EachPage(func(page pagination.Page) (bool, error) {
count++
actual, err := profiles.ExtractProfiles(page)
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedList, actual)
return true, nil
})
th.AssertNoErr(t, err)
if count != 1 {
t.Errorf("Expected 1 page of profiles, got %d pages instead", count)
}
}
func TestUpdateProfile(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleUpdateSuccessfully(t)
updateOpts := profiles.UpdateOpts{
Name: "pserver",
}
actual, err := profiles.Update(fake.ServiceClient(), ExpectedUpdate.ID, updateOpts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedUpdate, *actual)
}
func TestDeleteProfile(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleDeleteSuccessfully(t)
deleteResult := profiles.Delete(fake.ServiceClient(), "6dc6d336e3fc4c0a951b5698cd1236ee")
th.AssertNoErr(t, deleteResult.ExtractErr())
}
func TestValidateProfile(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleValidateSuccessfully(t)
validateOpts := profiles.ValidateOpts{
Spec: profiles.Spec{
Properties: map[string]interface{}{
"flavor": "t2.micro",
"image": "cirros-0.3.4-x86_64-uec",
"key_name": "oskey",
"name": "cirros_server",
"networks": []interface{}{
map[string]interface{}{"network": "private"},
},
},
Type: "os.nova.server",
Version: "1.0",
},
}
client := fake.ServiceClient()
client.Microversion = "1.2"
client.Type = "clustering"
profile, err := profiles.Validate(client, validateOpts).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedValidate, *profile)
}
|