github.com/opentelekomcloud/gophertelekomcloud@v0.9.3/openstack/dns/v2/zones/testing/requests_test.go (about)

     1  package testing
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/opentelekomcloud/gophertelekomcloud/openstack/dns/v2/zones"
     7  	"github.com/opentelekomcloud/gophertelekomcloud/pagination"
     8  	th "github.com/opentelekomcloud/gophertelekomcloud/testhelper"
     9  	"github.com/opentelekomcloud/gophertelekomcloud/testhelper/client"
    10  )
    11  
    12  func TestList(t *testing.T) {
    13  	th.SetupHTTP()
    14  	defer th.TeardownHTTP()
    15  	HandleListSuccessfully(t)
    16  
    17  	count := 0
    18  	err := zones.List(client.ServiceClient(), nil).EachPage(func(page pagination.Page) (bool, error) {
    19  		count++
    20  		actual, err := zones.ExtractZones(page)
    21  		th.AssertNoErr(t, err)
    22  		th.CheckDeepEquals(t, ExpectedZonesSlice, actual)
    23  
    24  		return true, nil
    25  	})
    26  	th.AssertNoErr(t, err)
    27  	th.CheckEquals(t, 1, count)
    28  }
    29  
    30  func TestListAllPages(t *testing.T) {
    31  	th.SetupHTTP()
    32  	defer th.TeardownHTTP()
    33  	HandleListSuccessfully(t)
    34  
    35  	allPages, err := zones.List(client.ServiceClient(), nil).AllPages()
    36  	th.AssertNoErr(t, err)
    37  	allZones, err := zones.ExtractZones(allPages)
    38  	th.AssertNoErr(t, err)
    39  	th.CheckEquals(t, 2, len(allZones))
    40  }
    41  
    42  func TestGet(t *testing.T) {
    43  	th.SetupHTTP()
    44  	defer th.TeardownHTTP()
    45  	HandleGetSuccessfully(t)
    46  
    47  	actual, err := zones.Get(client.ServiceClient(), "a86dba58-0043-4cc6-a1bb-69d5e86f3ca3").Extract()
    48  	th.AssertNoErr(t, err)
    49  	th.CheckDeepEquals(t, &FirstZone, actual)
    50  }
    51  
    52  func TestCreate(t *testing.T) {
    53  	th.SetupHTTP()
    54  	defer th.TeardownHTTP()
    55  	HandleCreateSuccessfully(t)
    56  
    57  	createOpts := zones.CreateOpts{
    58  		Name:        "example.org.",
    59  		Email:       "joe@example.org",
    60  		TTL:         7200,
    61  		Description: "This is an example zone.",
    62  	}
    63  
    64  	actual, err := zones.Create(client.ServiceClient(), createOpts).Extract()
    65  	th.AssertNoErr(t, err)
    66  	th.CheckDeepEquals(t, &CreatedZone, actual)
    67  }
    68  
    69  func TestUpdate(t *testing.T) {
    70  	th.SetupHTTP()
    71  	defer th.TeardownHTTP()
    72  	HandleUpdateSuccessfully(t)
    73  
    74  	updateOpts := zones.UpdateOpts{
    75  		TTL:         600,
    76  		Description: "Updated Description",
    77  	}
    78  
    79  	UpdatedZone := CreatedZone
    80  	UpdatedZone.Status = "PENDING"
    81  	UpdatedZone.TTL = 600
    82  	UpdatedZone.Description = "Updated Description"
    83  
    84  	actual, err := zones.Update(client.ServiceClient(), UpdatedZone.ID, updateOpts).Extract()
    85  	th.AssertNoErr(t, err)
    86  	th.CheckDeepEquals(t, &UpdatedZone, actual)
    87  }
    88  
    89  func TestDelete(t *testing.T) {
    90  	th.SetupHTTP()
    91  	defer th.TeardownHTTP()
    92  	HandleDeleteSuccessfully(t)
    93  
    94  	DeletedZone := CreatedZone
    95  	DeletedZone.Status = "PENDING"
    96  	DeletedZone.TTL = 600
    97  	DeletedZone.Description = "Updated Description"
    98  
    99  	actual, err := zones.Delete(client.ServiceClient(), DeletedZone.ID).Extract()
   100  	th.AssertNoErr(t, err)
   101  	th.CheckDeepEquals(t, &DeletedZone, actual)
   102  }