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
|
package testing
import (
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/openstack/identity/v2/tenants"
"github.com/gophercloud/gophercloud/pagination"
th "github.com/gophercloud/gophercloud/testhelper"
"github.com/gophercloud/gophercloud/testhelper/client"
)
func TestListTenants(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleListTenantsSuccessfully(t)
count := 0
err := tenants.List(client.ServiceClient(), nil).EachPage(func(page pagination.Page) (bool, error) {
count++
actual, err := tenants.ExtractTenants(page)
th.AssertNoErr(t, err)
th.CheckDeepEquals(t, ExpectedTenantSlice, actual)
return true, nil
})
th.AssertNoErr(t, err)
th.CheckEquals(t, count, 1)
}
func TestCreateTenant(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
mockCreateTenantResponse(t)
opts := tenants.CreateOpts{
Name: "new_tenant",
Description: "This is new tenant",
Enabled: gophercloud.Enabled,
}
tenant, err := tenants.Create(client.ServiceClient(), opts).Extract()
th.AssertNoErr(t, err)
expected := &tenants.Tenant{
Name: "new_tenant",
Description: "This is new tenant",
Enabled: true,
ID: "5c62ef576dc7444cbb73b1fe84b97648",
}
th.AssertDeepEquals(t, expected, tenant)
}
func TestDeleteTenant(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
mockDeleteTenantResponse(t)
err := tenants.Delete(client.ServiceClient(), "2466f69cd4714d89a548a68ed97ffcd4").ExtractErr()
th.AssertNoErr(t, err)
}
func TestUpdateTenant(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
mockUpdateTenantResponse(t)
id := "5c62ef576dc7444cbb73b1fe84b97648"
description := "This is new name"
opts := tenants.UpdateOpts{
Name: "new_name",
Description: &description,
Enabled: gophercloud.Enabled,
}
tenant, err := tenants.Update(client.ServiceClient(), id, opts).Extract()
th.AssertNoErr(t, err)
expected := &tenants.Tenant{
Name: "new_name",
ID: id,
Description: "This is new name",
Enabled: true,
}
th.AssertDeepEquals(t, expected, tenant)
}
func TestGetTenant(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
mockGetTenantResponse(t)
tenant, err := tenants.Get(client.ServiceClient(), "5c62ef576dc7444cbb73b1fe84b97648").Extract()
th.AssertNoErr(t, err)
expected := &tenants.Tenant{
Name: "new_tenant",
ID: "5c62ef576dc7444cbb73b1fe84b97648",
Description: "This is new tenant",
Enabled: true,
}
th.AssertDeepEquals(t, expected, tenant)
}
|