github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/oneandone/resource_oneandone_public_ip_test.go (about) 1 package oneandone 2 3 import ( 4 "fmt" 5 "testing" 6 7 "github.com/1and1/oneandone-cloudserver-sdk-go" 8 "github.com/hashicorp/terraform/helper/resource" 9 "github.com/hashicorp/terraform/terraform" 10 "os" 11 "time" 12 ) 13 14 func TestAccOneandonePublicIp_Basic(t *testing.T) { 15 var public_ip oneandone.PublicIp 16 17 reverse_dns := "example.de" 18 reverse_dns_updated := "example.ba" 19 20 resource.Test(t, resource.TestCase{ 21 PreCheck: func() { 22 testAccPreCheck(t) 23 }, 24 Providers: testAccProviders, 25 CheckDestroy: testAccCheckDOneandonePublicIpDestroyCheck, 26 Steps: []resource.TestStep{ 27 resource.TestStep{ 28 Config: fmt.Sprintf(testAccCheckOneandonePublicIp_basic, reverse_dns), 29 Check: resource.ComposeTestCheckFunc( 30 func(*terraform.State) error { 31 time.Sleep(10 * time.Second) 32 return nil 33 }, 34 testAccCheckOneandonePublicIpExists("oneandone_public_ip.ip", &public_ip), 35 testAccCheckOneandonePublicIpAttributes("oneandone_public_ip.ip", reverse_dns), 36 resource.TestCheckResourceAttr("oneandone_public_ip.ip", "reverse_dns", reverse_dns), 37 ), 38 }, 39 resource.TestStep{ 40 Config: fmt.Sprintf(testAccCheckOneandonePublicIp_basic, reverse_dns_updated), 41 Check: resource.ComposeTestCheckFunc( 42 func(*terraform.State) error { 43 time.Sleep(10 * time.Second) 44 return nil 45 }, 46 testAccCheckOneandonePublicIpExists("oneandone_public_ip.ip", &public_ip), 47 testAccCheckOneandonePublicIpAttributes("oneandone_public_ip.ip", reverse_dns_updated), 48 resource.TestCheckResourceAttr("oneandone_public_ip.ip", "reverse_dns", reverse_dns_updated), 49 ), 50 }, 51 }, 52 }) 53 } 54 55 func testAccCheckDOneandonePublicIpDestroyCheck(s *terraform.State) error { 56 for _, rs := range s.RootModule().Resources { 57 if rs.Type != "oneandone_public_ip" { 58 continue 59 } 60 61 api := oneandone.New(os.Getenv("ONEANDONE_TOKEN"), oneandone.BaseUrl) 62 63 _, err := api.GetPublicIp(rs.Primary.ID) 64 65 if err == nil { 66 return fmt.Errorf("Public IP still exists %s %s", rs.Primary.ID, err.Error()) 67 } 68 } 69 70 return nil 71 } 72 func testAccCheckOneandonePublicIpAttributes(n string, reverse_dns string) resource.TestCheckFunc { 73 return func(s *terraform.State) error { 74 rs, ok := s.RootModule().Resources[n] 75 if !ok { 76 return fmt.Errorf("Not found: %s", n) 77 } 78 if rs.Primary.Attributes["reverse_dns"] != reverse_dns { 79 return fmt.Errorf("Bad name: expected %s : found %s ", reverse_dns, rs.Primary.Attributes["name"]) 80 } 81 82 return nil 83 } 84 } 85 86 func testAccCheckOneandonePublicIpExists(n string, public_ip *oneandone.PublicIp) resource.TestCheckFunc { 87 return func(s *terraform.State) error { 88 rs, ok := s.RootModule().Resources[n] 89 90 if !ok { 91 return fmt.Errorf("Not found: %s", n) 92 } 93 94 if rs.Primary.ID == "" { 95 return fmt.Errorf("No Record ID is set") 96 } 97 98 api := oneandone.New(os.Getenv("ONEANDONE_TOKEN"), oneandone.BaseUrl) 99 100 found_public_ip, err := api.GetPublicIp(rs.Primary.ID) 101 102 if err != nil { 103 return fmt.Errorf("Error occured while fetching public IP: %s", rs.Primary.ID) 104 } 105 if found_public_ip.Id != rs.Primary.ID { 106 return fmt.Errorf("Record not found") 107 } 108 public_ip = found_public_ip 109 110 return nil 111 } 112 } 113 114 const testAccCheckOneandonePublicIp_basic = ` 115 resource "oneandone_public_ip" "ip" { 116 "ip_type" = "IPV4" 117 "reverse_dns" = "%s" 118 "datacenter" = "GB" 119 }`