217 lines
5.1 KiB
Go
217 lines
5.1 KiB
Go
package alicloud
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/denverdino/aliyungo/common"
|
|
"github.com/denverdino/aliyungo/ecs"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
"testing"
|
|
)
|
|
|
|
func TestAccAlicloudForward_basic(t *testing.T) {
|
|
var forward ecs.ForwardTableEntrySetType
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() {
|
|
testAccPreCheck(t)
|
|
},
|
|
|
|
// module name
|
|
IDRefreshName: "alicloud_forward_entry.foo",
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckForwardEntryDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccForwardEntryConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckForwardEntryExists(
|
|
"alicloud_forward_entry.foo", &forward),
|
|
),
|
|
},
|
|
|
|
resource.TestStep{
|
|
Config: testAccForwardEntryUpdate,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckForwardEntryExists(
|
|
"alicloud_forward_entry.foo", &forward),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
|
|
}
|
|
|
|
func testAccCheckForwardEntryDestroy(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*AliyunClient)
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "alicloud_snat_entry" {
|
|
continue
|
|
}
|
|
|
|
// Try to find the Snat entry
|
|
instance, err := client.DescribeForwardEntry(rs.Primary.Attributes["forward_table_id"], rs.Primary.ID)
|
|
|
|
//this special deal cause the DescribeSnatEntry can't find the records would be throw "cant find the snatTable error"
|
|
if instance.ForwardEntryId == "" {
|
|
return nil
|
|
}
|
|
|
|
if instance.ForwardEntryId != "" {
|
|
return fmt.Errorf("Forward entry still exist")
|
|
}
|
|
|
|
if err != nil {
|
|
// Verify the error is what we want
|
|
e, _ := err.(*common.Error)
|
|
|
|
if !notFoundError(e) {
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func testAccCheckForwardEntryExists(n string, snat *ecs.ForwardTableEntrySetType) 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 ForwardEntry ID is set")
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*AliyunClient)
|
|
instance, err := client.DescribeForwardEntry(rs.Primary.Attributes["forward_table_id"], rs.Primary.ID)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if instance.ForwardEntryId == "" {
|
|
return fmt.Errorf("ForwardEntry not found")
|
|
}
|
|
|
|
*snat = instance
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccForwardEntryConfig = `
|
|
provider "alicloud"{
|
|
region = "cn-hangzhou"
|
|
}
|
|
|
|
data "alicloud_zones" "default" {
|
|
"available_resource_creation"= "VSwitch"
|
|
}
|
|
|
|
resource "alicloud_vpc" "foo" {
|
|
name = "tf_test_foo"
|
|
cidr_block = "172.16.0.0/12"
|
|
}
|
|
|
|
resource "alicloud_vswitch" "foo" {
|
|
vpc_id = "${alicloud_vpc.foo.id}"
|
|
cidr_block = "172.16.0.0/21"
|
|
availability_zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
}
|
|
|
|
resource "alicloud_nat_gateway" "foo" {
|
|
vpc_id = "${alicloud_vpc.foo.id}"
|
|
spec = "Small"
|
|
name = "test_foo"
|
|
bandwidth_packages = [{
|
|
ip_count = 1
|
|
bandwidth = 5
|
|
zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
},{
|
|
ip_count = 1
|
|
bandwidth = 6
|
|
zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
}]
|
|
depends_on = [
|
|
"alicloud_vswitch.foo"]
|
|
}
|
|
|
|
resource "alicloud_forward_entry" "foo"{
|
|
forward_table_id = "${alicloud_nat_gateway.foo.forward_table_ids}"
|
|
external_ip = "${alicloud_nat_gateway.foo.bandwidth_packages.0.public_ip_addresses}"
|
|
external_port = "80"
|
|
ip_protocol = "tcp"
|
|
internal_ip = "172.16.0.3"
|
|
internal_port = "8080"
|
|
}
|
|
|
|
resource "alicloud_forward_entry" "foo1"{
|
|
forward_table_id = "${alicloud_nat_gateway.foo.forward_table_ids}"
|
|
external_ip = "${alicloud_nat_gateway.foo.bandwidth_packages.0.public_ip_addresses}"
|
|
external_port = "443"
|
|
ip_protocol = "udp"
|
|
internal_ip = "172.16.0.4"
|
|
internal_port = "8080"
|
|
}
|
|
`
|
|
|
|
const testAccForwardEntryUpdate = `
|
|
provider "alicloud"{
|
|
region = "cn-hangzhou"
|
|
}
|
|
|
|
data "alicloud_zones" "default" {
|
|
"available_resource_creation"= "VSwitch"
|
|
}
|
|
|
|
resource "alicloud_vpc" "foo" {
|
|
name = "tf_test_foo"
|
|
cidr_block = "172.16.0.0/12"
|
|
}
|
|
|
|
resource "alicloud_vswitch" "foo" {
|
|
vpc_id = "${alicloud_vpc.foo.id}"
|
|
cidr_block = "172.16.0.0/21"
|
|
availability_zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
}
|
|
|
|
resource "alicloud_nat_gateway" "foo" {
|
|
vpc_id = "${alicloud_vpc.foo.id}"
|
|
spec = "Small"
|
|
name = "test_foo"
|
|
bandwidth_packages = [{
|
|
ip_count = 1
|
|
bandwidth = 5
|
|
zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
},{
|
|
ip_count = 1
|
|
bandwidth = 6
|
|
zone = "${data.alicloud_zones.default.zones.0.id}"
|
|
}]
|
|
depends_on = [
|
|
"alicloud_vswitch.foo"]
|
|
}
|
|
|
|
resource "alicloud_forward_entry" "foo"{
|
|
forward_table_id = "${alicloud_nat_gateway.foo.forward_table_ids}"
|
|
external_ip = "${alicloud_nat_gateway.foo.bandwidth_packages.0.public_ip_addresses}"
|
|
external_port = "80"
|
|
ip_protocol = "tcp"
|
|
internal_ip = "172.16.0.3"
|
|
internal_port = "8081"
|
|
}
|
|
|
|
|
|
resource "alicloud_forward_entry" "foo1"{
|
|
forward_table_id = "${alicloud_nat_gateway.foo.forward_table_ids}"
|
|
external_ip = "${alicloud_nat_gateway.foo.bandwidth_packages.0.public_ip_addresses}"
|
|
external_port = "22"
|
|
ip_protocol = "udp"
|
|
internal_ip = "172.16.0.4"
|
|
internal_port = "8080"
|
|
}
|
|
`
|