132 lines
2.6 KiB
Go
132 lines
2.6 KiB
Go
|
package alicloud
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/denverdino/aliyungo/ecs"
|
||
|
"github.com/hashicorp/terraform/helper/resource"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func TestAccAlicloudEIP_basic(t *testing.T) {
|
||
|
var eip ecs.EipAddressSetType
|
||
|
|
||
|
resource.Test(t, resource.TestCase{
|
||
|
PreCheck: func() {
|
||
|
testAccPreCheck(t)
|
||
|
},
|
||
|
|
||
|
// module name
|
||
|
IDRefreshName: "alicloud_eip.foo",
|
||
|
|
||
|
Providers: testAccProviders,
|
||
|
CheckDestroy: testAccCheckEIPDestroy,
|
||
|
Steps: []resource.TestStep{
|
||
|
resource.TestStep{
|
||
|
Config: testAccEIPConfig,
|
||
|
Check: resource.ComposeTestCheckFunc(
|
||
|
testAccCheckEIPExists(
|
||
|
"alicloud_eip.foo", &eip),
|
||
|
testAccCheckEIPAttributes(&eip),
|
||
|
),
|
||
|
},
|
||
|
resource.TestStep{
|
||
|
Config: testAccEIPConfigTwo,
|
||
|
Check: resource.ComposeTestCheckFunc(
|
||
|
testAccCheckEIPExists(
|
||
|
"alicloud_eip.foo", &eip),
|
||
|
testAccCheckEIPAttributes(&eip),
|
||
|
resource.TestCheckResourceAttr(
|
||
|
"alicloud_eip.foo",
|
||
|
"bandwidth",
|
||
|
"10"),
|
||
|
),
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
}
|
||
|
|
||
|
func testAccCheckEIPExists(n string, eip *ecs.EipAddressSetType) 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("No EIP ID is set")
|
||
|
}
|
||
|
|
||
|
client := testAccProvider.Meta().(*AliyunClient)
|
||
|
d, err := client.DescribeEipAddress(rs.Primary.ID)
|
||
|
|
||
|
log.Printf("[WARN] eip id %#v", rs.Primary.ID)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if d == nil || d.IpAddress == "" {
|
||
|
return fmt.Errorf("EIP not found")
|
||
|
}
|
||
|
|
||
|
*eip = *d
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func testAccCheckEIPAttributes(eip *ecs.EipAddressSetType) resource.TestCheckFunc {
|
||
|
return func(s *terraform.State) error {
|
||
|
if eip.IpAddress == "" {
|
||
|
return fmt.Errorf("Empty Ip address")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func testAccCheckEIPDestroy(s *terraform.State) error {
|
||
|
client := testAccProvider.Meta().(*AliyunClient)
|
||
|
|
||
|
for _, rs := range s.RootModule().Resources {
|
||
|
if rs.Type != "alicloud_eip" {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
// Try to find the EIP
|
||
|
conn := client.ecsconn
|
||
|
|
||
|
args := &ecs.DescribeEipAddressesArgs{
|
||
|
RegionId: client.Region,
|
||
|
AllocationId: rs.Primary.ID,
|
||
|
}
|
||
|
d, _, err := conn.DescribeEipAddresses(args)
|
||
|
|
||
|
if d != nil && len(d) > 0 {
|
||
|
return fmt.Errorf("Error EIP still exist")
|
||
|
}
|
||
|
|
||
|
// Verify the error is what we want
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
const testAccEIPConfig = `
|
||
|
resource "alicloud_eip" "foo" {
|
||
|
}
|
||
|
`
|
||
|
|
||
|
const testAccEIPConfigTwo = `
|
||
|
resource "alicloud_eip" "foo" {
|
||
|
bandwidth = "10"
|
||
|
internet_charge_type = "PayByBandwidth"
|
||
|
}
|
||
|
`
|