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
|
//go:build acceptance || dns || zones
// +build acceptance dns zones
package v2
import (
"testing"
"github.com/gophercloud/gophercloud/acceptance/clients"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/dns/v2/zones"
th "github.com/gophercloud/gophercloud/testhelper"
)
func TestZonesCRUD(t *testing.T) {
client, err := clients.NewDNSV2Client()
th.AssertNoErr(t, err)
zone, err := CreateZone(t, client)
th.AssertNoErr(t, err)
defer DeleteZone(t, client, zone)
tools.PrintResource(t, &zone)
allPages, err := zones.List(client, nil).AllPages()
th.AssertNoErr(t, err)
allZones, err := zones.ExtractZones(allPages)
th.AssertNoErr(t, err)
var found bool
for _, z := range allZones {
tools.PrintResource(t, &z)
if zone.Name == z.Name {
found = true
}
}
th.AssertEquals(t, found, true)
description := ""
updateOpts := zones.UpdateOpts{
Description: &description,
TTL: 0,
}
newZone, err := zones.Update(client, zone.ID, updateOpts).Extract()
th.AssertNoErr(t, err)
tools.PrintResource(t, &newZone)
th.AssertEquals(t, newZone.Description, description)
}
|