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
|
package testing
import (
"testing"
"github.com/gophercloud/gophercloud/openstack/clustering/v1/actions"
"github.com/gophercloud/gophercloud/pagination"
th "github.com/gophercloud/gophercloud/testhelper"
fake "github.com/gophercloud/gophercloud/testhelper/client"
)
func TestListActions(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleListSuccessfully(t)
pageCount := 0
err := actions.List(fake.ServiceClient(), nil).EachPage(func(page pagination.Page) (bool, error) {
pageCount++
actual, err := actions.ExtractActions(page)
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedActions, actual)
return true, nil
})
th.AssertNoErr(t, err)
if pageCount != 1 {
t.Errorf("Expected 1 page, got %d", pageCount)
}
}
func TestGetAction(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGetSuccessfully(t, ExpectedAction1.ID)
actual, err := actions.Get(fake.ServiceClient(), ExpectedAction1.ID).Extract()
th.AssertNoErr(t, err)
th.AssertDeepEquals(t, ExpectedAction1, *actual)
}
|