2017-01-19 15:08:56 +01:00
|
|
|
package alicloud
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/denverdino/aliyungo/common"
|
|
|
|
"github.com/denverdino/aliyungo/slb"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
"log"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccAlicloudSlb_basic(t *testing.T) {
|
|
|
|
var slb slb.LoadBalancerType
|
|
|
|
|
|
|
|
testCheckAttr := func() resource.TestCheckFunc {
|
|
|
|
return func(*terraform.State) error {
|
|
|
|
log.Printf("testCheckAttr slb AddressType is: %s", slb.AddressType)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
},
|
|
|
|
|
|
|
|
// module name
|
|
|
|
IDRefreshName: "alicloud_slb.bindwidth",
|
|
|
|
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckSlbDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
//test internet_charge_type is paybybandwidth
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccSlbBindWidth,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckSlbExists("alicloud_slb.bindwidth", &slb),
|
|
|
|
testCheckAttr(),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"alicloud_slb.bindwidth", "internet_charge_type", "paybybandwidth"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccAlicloudSlb_traffic(t *testing.T) {
|
|
|
|
var slb slb.LoadBalancerType
|
|
|
|
|
|
|
|
testCheckAttr := func() resource.TestCheckFunc {
|
|
|
|
return func(*terraform.State) error {
|
|
|
|
log.Printf("testCheckAttr slb AddressType is: %s", slb.AddressType)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
},
|
|
|
|
|
|
|
|
// module name
|
|
|
|
IDRefreshName: "alicloud_slb.traffic",
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckSlbDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
//test internet_charge_type is paybytraffic
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccSlbTraffic,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckSlbExists("alicloud_slb.traffic", &slb),
|
|
|
|
testCheckAttr(),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"alicloud_slb.traffic", "name", "tf_test_slb_classic"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccAlicloudSlb_listener(t *testing.T) {
|
|
|
|
var slb slb.LoadBalancerType
|
|
|
|
|
|
|
|
testListener := func() resource.TestCheckFunc {
|
|
|
|
return func(*terraform.State) error {
|
|
|
|
listenerPorts := slb.ListenerPorts.ListenerPort[0]
|
2017-03-24 12:04:56 +01:00
|
|
|
if listenerPorts != 2001 {
|
2017-01-19 15:08:56 +01:00
|
|
|
return fmt.Errorf("bad loadbalancer listener: %#v", listenerPorts)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
},
|
|
|
|
|
|
|
|
// module name
|
|
|
|
IDRefreshName: "alicloud_slb.listener",
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckSlbDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccSlbListener,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckSlbExists("alicloud_slb.listener", &slb),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"alicloud_slb.listener", "name", "tf_test_slb"),
|
|
|
|
testAccCheckListenersExists("alicloud_slb.listener", &slb, "http"),
|
|
|
|
testListener(),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccAlicloudSlb_vpc(t *testing.T) {
|
|
|
|
var slb slb.LoadBalancerType
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
},
|
|
|
|
|
|
|
|
// module name
|
|
|
|
IDRefreshName: "alicloud_slb.vpc",
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckSlbDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccSlb4Vpc,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckSlbExists("alicloud_slb.vpc", &slb),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"alicloud_slb.vpc", "name", "tf_test_slb_vpc"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckSlbExists(n string, slb *slb.LoadBalancerType) 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 SLB ID is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
client := testAccProvider.Meta().(*AliyunClient)
|
|
|
|
instance, err := client.DescribeLoadBalancerAttribute(rs.Primary.ID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if instance == nil {
|
|
|
|
return fmt.Errorf("SLB not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
*slb = *instance
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckListenersExists(n string, slb *slb.LoadBalancerType, p string) 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 SLB ID is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
client := testAccProvider.Meta().(*AliyunClient)
|
|
|
|
instance, err := client.DescribeLoadBalancerAttribute(rs.Primary.ID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if instance == nil {
|
|
|
|
return fmt.Errorf("SLB not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
exist := false
|
|
|
|
for _, listener := range instance.ListenerPortsAndProtocol.ListenerPortAndProtocol {
|
|
|
|
if listener.ListenerProtocol == p {
|
|
|
|
exist = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !exist {
|
|
|
|
return fmt.Errorf("The %s protocol Listener not found.", p)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckSlbDestroy(s *terraform.State) error {
|
|
|
|
client := testAccProvider.Meta().(*AliyunClient)
|
|
|
|
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
|
|
if rs.Type != "alicloud_slb" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to find the Slb
|
|
|
|
instance, err := client.DescribeLoadBalancerAttribute(rs.Primary.ID)
|
|
|
|
|
|
|
|
if instance != nil {
|
|
|
|
return fmt.Errorf("SLB still exist")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
e, _ := err.(*common.Error)
|
|
|
|
// Verify the error is what we want
|
|
|
|
if e.ErrorResponse.Code != LoadBalancerNotFound {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccSlbBindWidth = `
|
|
|
|
resource "alicloud_slb" "bindwidth" {
|
|
|
|
name = "tf_test_slb_bindwidth"
|
|
|
|
internet_charge_type = "paybybandwidth"
|
|
|
|
bandwidth = 5
|
|
|
|
internet = true
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccSlbTraffic = `
|
|
|
|
resource "alicloud_slb" "traffic" {
|
|
|
|
name = "tf_test_slb_classic"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccSlbListener = `
|
|
|
|
resource "alicloud_slb" "listener" {
|
|
|
|
name = "tf_test_slb"
|
|
|
|
internet_charge_type = "paybybandwidth"
|
|
|
|
bandwidth = 5
|
|
|
|
internet = true
|
|
|
|
listener = [
|
|
|
|
{
|
|
|
|
"instance_port" = "2111"
|
|
|
|
"lb_port" = "21"
|
|
|
|
"lb_protocol" = "tcp"
|
|
|
|
"bandwidth" = 1
|
2017-03-24 12:04:56 +01:00
|
|
|
"persistence_timeout" = 500
|
|
|
|
"health_check_type" = "http"
|
2017-01-19 15:08:56 +01:00
|
|
|
},{
|
|
|
|
"instance_port" = "8000"
|
|
|
|
"lb_port" = "80"
|
|
|
|
"lb_protocol" = "http"
|
2017-03-24 12:04:56 +01:00
|
|
|
"sticky_session" = "on"
|
|
|
|
"sticky_session_type" = "insert"
|
|
|
|
"cookie_timeout" = 800
|
2017-01-19 15:08:56 +01:00
|
|
|
"bandwidth" = 1
|
|
|
|
},{
|
2017-03-24 12:04:56 +01:00
|
|
|
"instance_port" = "8001"
|
|
|
|
"lb_port" = "81"
|
|
|
|
"lb_protocol" = "http"
|
|
|
|
"sticky_session" = "on"
|
|
|
|
"sticky_session_type" = "server"
|
|
|
|
"cookie" = "testslblistenercookie"
|
|
|
|
"cookie_timeout" = 1800
|
|
|
|
"health_check" = "on"
|
|
|
|
"health_check_domain" = "$_ip"
|
|
|
|
"health_check_uri" = "/console"
|
|
|
|
"health_check_connect_port" = 20
|
|
|
|
"healthy_threshold" = 8
|
|
|
|
"unhealthy_threshold" = 8
|
|
|
|
"health_check_timeout" = 8
|
|
|
|
"health_check_interval" = 4
|
|
|
|
"health_check_http_code" = "http_2xx"
|
|
|
|
"bandwidth" = 1
|
|
|
|
},{
|
|
|
|
"instance_port" = "2001"
|
|
|
|
"lb_port" = "2001"
|
2017-01-19 15:08:56 +01:00
|
|
|
"lb_protocol" = "udp"
|
|
|
|
"bandwidth" = 1
|
2017-03-24 12:04:56 +01:00
|
|
|
"persistence_timeout" = 700
|
2017-01-19 15:08:56 +01:00
|
|
|
}]
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccSlb4Vpc = `
|
2017-03-24 12:04:56 +01:00
|
|
|
data "alicloud_zones" "default" {
|
|
|
|
"available_resource_creation"= "VSwitch"
|
|
|
|
}
|
|
|
|
|
2017-01-19 15:08:56 +01:00
|
|
|
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"
|
2017-03-24 12:04:56 +01:00
|
|
|
availability_zone = "${data.alicloud_zones.default.zones.0.id}"
|
2017-01-19 15:08:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "alicloud_slb" "vpc" {
|
|
|
|
name = "tf_test_slb_vpc"
|
|
|
|
//internet_charge_type = "paybybandwidth"
|
|
|
|
vswitch_id = "${alicloud_vswitch.foo.id}"
|
|
|
|
}
|
|
|
|
`
|