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
|
package flavors
import (
"testing"
"github.com/rackspace/gophercloud"
"github.com/rackspace/gophercloud/pagination"
th "github.com/rackspace/gophercloud/testhelper"
fake "github.com/rackspace/gophercloud/testhelper/client"
)
func TestListFlavors(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleList(t)
pages := 0
err := List(fake.ServiceClient()).EachPage(func(page pagination.Page) (bool, error) {
pages++
actual, err := ExtractFlavors(page)
if err != nil {
return false, err
}
expected := []Flavor{
Flavor{
ID: "1",
Name: "m1.tiny",
RAM: 512,
Links: []gophercloud.Link{
gophercloud.Link{Href: "https://openstack.example.com/v1.0/1234/flavors/1", Rel: "self"},
gophercloud.Link{Href: "https://openstack.example.com/flavors/1", Rel: "bookmark"},
},
},
Flavor{
ID: "2",
Name: "m1.small",
RAM: 1024,
Links: []gophercloud.Link{
gophercloud.Link{Href: "https://openstack.example.com/v1.0/1234/flavors/2", Rel: "self"},
gophercloud.Link{Href: "https://openstack.example.com/flavors/2", Rel: "bookmark"},
},
},
Flavor{
ID: "3",
Name: "m1.medium",
RAM: 2048,
Links: []gophercloud.Link{
gophercloud.Link{Href: "https://openstack.example.com/v1.0/1234/flavors/3", Rel: "self"},
gophercloud.Link{Href: "https://openstack.example.com/flavors/3", Rel: "bookmark"},
},
},
Flavor{
ID: "4",
Name: "m1.large",
RAM: 4096,
Links: []gophercloud.Link{
gophercloud.Link{Href: "https://openstack.example.com/v1.0/1234/flavors/4", Rel: "self"},
gophercloud.Link{Href: "https://openstack.example.com/flavors/4", Rel: "bookmark"},
},
},
}
th.AssertDeepEquals(t, expected, actual)
return true, nil
})
th.AssertNoErr(t, err)
th.AssertEquals(t, 1, pages)
}
func TestGetFlavor(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
HandleGet(t)
actual, err := Get(fake.ServiceClient(), flavorID).Extract()
th.AssertNoErr(t, err)
expected := &Flavor{
ID: "1",
Name: "m1.tiny",
RAM: 512,
Links: []gophercloud.Link{
gophercloud.Link{Href: "https://openstack.example.com/v1.0/1234/flavors/1", Rel: "self"},
},
}
th.AssertDeepEquals(t, expected, actual)
}
|