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
|
//go:build acceptance || compute || limits
// +build acceptance compute limits
package v2
import (
"strings"
"testing"
"github.com/gophercloud/gophercloud/acceptance/clients"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/limits"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestLimits(t *testing.T) {
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
limits, err := limits.Get(client, nil).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, limits)
th.AssertEquals(t, limits.Absolute.MaxPersonalitySize, 10240)
}
func TestLimitsForTenant(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
// I think this is the easiest way to get the tenant ID while being
// agnostic to Identity v2 and v3.
// Technically we're just returning the limits for ourselves, but it's
// the fact that we're specifying a tenant ID that is important here.
endpointParts := strings.Split(client.Endpoint, "/")
tenantID := endpointParts[4]
getOpts := limits.GetOpts{
TenantID: tenantID,
}
limits, err := limits.Get(client, getOpts).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, limits)
th.AssertEquals(t, limits.Absolute.MaxPersonalitySize, 10240)
}
|