190 lines
4.7 KiB
Go
190 lines
4.7 KiB
Go
package ns1
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
ns1 "gopkg.in/ns1/ns1-go.v2/rest"
|
|
"gopkg.in/ns1/ns1-go.v2/rest/model/dns"
|
|
)
|
|
|
|
func TestAccZone_basic(t *testing.T) {
|
|
var zone dns.Zone
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckZoneDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccZoneBasic,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckZoneExists("ns1_zone.it", &zone),
|
|
testAccCheckZoneName(&zone, "terraform-test-zone.io"),
|
|
testAccCheckZoneTTL(&zone, 3600),
|
|
testAccCheckZoneRefresh(&zone, 43200),
|
|
testAccCheckZoneRetry(&zone, 7200),
|
|
testAccCheckZoneExpiry(&zone, 1209600),
|
|
testAccCheckZoneNxTTL(&zone, 3600),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccZone_updated(t *testing.T) {
|
|
var zone dns.Zone
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckZoneDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccZoneBasic,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckZoneExists("ns1_zone.it", &zone),
|
|
testAccCheckZoneName(&zone, "terraform-test-zone.io"),
|
|
testAccCheckZoneTTL(&zone, 3600),
|
|
testAccCheckZoneRefresh(&zone, 43200),
|
|
testAccCheckZoneRetry(&zone, 7200),
|
|
testAccCheckZoneExpiry(&zone, 1209600),
|
|
testAccCheckZoneNxTTL(&zone, 3600),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: testAccZoneUpdated,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckZoneExists("ns1_zone.it", &zone),
|
|
testAccCheckZoneName(&zone, "terraform-test-zone.io"),
|
|
testAccCheckZoneTTL(&zone, 10800),
|
|
testAccCheckZoneRefresh(&zone, 3600),
|
|
testAccCheckZoneRetry(&zone, 300),
|
|
testAccCheckZoneExpiry(&zone, 2592000),
|
|
testAccCheckZoneNxTTL(&zone, 3601),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckZoneExists(n string, zone *dns.Zone) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rs, ok := s.RootModule().Resources[n]
|
|
|
|
if !ok {
|
|
return fmt.Errorf("Not found: %s", n)
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
return fmt.Errorf("NoID is set")
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*ns1.Client)
|
|
|
|
foundZone, _, err := client.Zones.Get(rs.Primary.Attributes["zone"])
|
|
|
|
p := rs.Primary
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if foundZone.ID != p.Attributes["id"] {
|
|
return fmt.Errorf("Zone not found")
|
|
}
|
|
|
|
*zone = *foundZone
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckZoneDestroy(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*ns1.Client)
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "ns1_zone" {
|
|
continue
|
|
}
|
|
|
|
zone, _, err := client.Zones.Get(rs.Primary.Attributes["zone"])
|
|
|
|
if err == nil {
|
|
return fmt.Errorf("Zone still exists: %#v: %#v", err, zone)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func testAccCheckZoneName(zone *dns.Zone, expected string) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.Zone != expected {
|
|
return fmt.Errorf("Zone: got: %s want: %s", zone.Zone, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckZoneTTL(zone *dns.Zone, expected int) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.TTL != expected {
|
|
return fmt.Errorf("TTL: got: %d want: %d", zone.TTL, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
func testAccCheckZoneRefresh(zone *dns.Zone, expected int) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.Refresh != expected {
|
|
return fmt.Errorf("Refresh: got: %d want: %d", zone.Refresh, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
func testAccCheckZoneRetry(zone *dns.Zone, expected int) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.Retry != expected {
|
|
return fmt.Errorf("Retry: got: %d want: %d", zone.Retry, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
func testAccCheckZoneExpiry(zone *dns.Zone, expected int) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.Expiry != expected {
|
|
return fmt.Errorf("Expiry: got: %d want: %d", zone.Expiry, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
func testAccCheckZoneNxTTL(zone *dns.Zone, expected int) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if zone.NxTTL != expected {
|
|
return fmt.Errorf("NxTTL: got: %d want: %d", zone.NxTTL, expected)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccZoneBasic = `
|
|
resource "ns1_zone" "it" {
|
|
zone = "terraform-test-zone.io"
|
|
}
|
|
`
|
|
|
|
const testAccZoneUpdated = `
|
|
resource "ns1_zone" "it" {
|
|
zone = "terraform-test-zone.io"
|
|
ttl = 10800
|
|
refresh = 3600
|
|
retry = 300
|
|
expiry = 2592000
|
|
nx_ttl = 3601
|
|
# link = "1.2.3.4.in-addr.arpa" # TODO
|
|
# primary = "1.2.3.4.in-addr.arpa" # TODO
|
|
}
|
|
`
|