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
|
package testing
import (
"errors"
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/quotasets"
th "github.com/gophercloud/gophercloud/testhelper"
"github.com/gophercloud/gophercloud/testhelper/client"
)
func TestGet(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGetSuccessfully(t)
actual, err := quotasets.Get(client.ServiceClient(), FirstTenantID).Extract()
th.AssertNoErr(t, err)
th.CheckDeepEquals(t, &FirstQuotaSet, actual)
}
func TestGetDetail(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGetDetailSuccessfully(t)
actual, err := quotasets.GetDetail(client.ServiceClient(), FirstTenantID).Extract()
th.CheckDeepEquals(t, FirstQuotaDetailsSet, actual)
th.AssertNoErr(t, err)
}
func TestUpdate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandlePutSuccessfully(t)
actual, err := quotasets.Update(client.ServiceClient(), FirstTenantID, UpdatedQuotaSet).Extract()
th.AssertNoErr(t, err)
th.CheckDeepEquals(t, &FirstQuotaSet, actual)
}
func TestPartialUpdate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandlePartialPutSuccessfully(t)
opts := quotasets.UpdateOpts{Cores: gophercloud.IntToPointer(200), Force: true}
actual, err := quotasets.Update(client.ServiceClient(), FirstTenantID, opts).Extract()
th.AssertNoErr(t, err)
th.CheckDeepEquals(t, &FirstQuotaSet, actual)
}
func TestDelete(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleDeleteSuccessfully(t)
_, err := quotasets.Delete(client.ServiceClient(), FirstTenantID).Extract()
th.AssertNoErr(t, err)
}
type ErrorUpdateOpts quotasets.UpdateOpts
func (opts ErrorUpdateOpts) ToComputeQuotaUpdateMap() (map[string]interface{}, error) {
return nil, errors.New("This is an error")
}
func TestErrorInToComputeQuotaUpdateMap(t *testing.T) {
opts := &ErrorUpdateOpts{}
th.SetupHTTP()
defer th.TeardownHTTP()
HandlePutSuccessfully(t)
_, err := quotasets.Update(client.ServiceClient(), FirstTenantID, opts).Extract()
if err == nil {
t.Fatal("Error handling failed")
}
}
|