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 115 116 117 118 119 120 121 122 123 124 125
|
//go:build acceptance || compute || hypervisors
// +build acceptance compute hypervisors
package v2
import (
"fmt"
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/acceptance/clients"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/hypervisors"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestHypervisorsList(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
allPages, err := hypervisors.List(client, nil).AllPages()
th.AssertNoErr(t, err)
allHypervisors, err := hypervisors.ExtractHypervisors(allPages)
th.AssertNoErr(t, err)
for _, h := range allHypervisors {
tools.PrintResource(t, h)
}
}
func TestHypervisorsGet(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
hypervisorID, err := getHypervisorID(t, client)
th.AssertNoErr(t, err)
hypervisor, err := hypervisors.Get(client, hypervisorID).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, hypervisor)
th.AssertEquals(t, hypervisorID, hypervisor.ID)
}
func TestHypervisorsGetStatistics(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
hypervisorsStats, err := hypervisors.GetStatistics(client).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, hypervisorsStats)
if hypervisorsStats.Count == 0 {
t.Fatalf("Unable to get hypervisor stats")
}
}
func TestHypervisorsGetUptime(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
hypervisorID, err := getHypervisorID(t, client)
th.AssertNoErr(t, err)
hypervisor, err := hypervisors.GetUptime(client, hypervisorID).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, hypervisor)
th.AssertEquals(t, hypervisorID, hypervisor.ID)
}
func TestHypervisorListQuery(t *testing.T) {
clients.RequireAdmin(t)
client, err := clients.NewComputeV2Client()
th.AssertNoErr(t, err)
client.Microversion = "2.53"
server, err := CreateMicroversionServer(t, client)
th.AssertNoErr(t, err)
defer DeleteServer(t, client, server)
iTrue := true
listOpts := hypervisors.ListOpts{
WithServers: &iTrue,
}
allPages, err := hypervisors.List(client, listOpts).AllPages()
th.AssertNoErr(t, err)
allHypervisors, err := hypervisors.ExtractHypervisors(allPages)
th.AssertNoErr(t, err)
hypervisor := allHypervisors[0]
if len(*hypervisor.Servers) < 1 {
t.Fatalf("hypervisor.Servers length should be >= 1")
}
}
func getHypervisorID(t *testing.T, client *gophercloud.ServiceClient) (string, error) {
allPages, err := hypervisors.List(client, nil).AllPages()
th.AssertNoErr(t, err)
allHypervisors, err := hypervisors.ExtractHypervisors(allPages)
th.AssertNoErr(t, err)
if len(allHypervisors) > 0 {
return allHypervisors[0].ID, nil
}
return "", fmt.Errorf("Unable to get hypervisor ID")
}
|