package aws import ( "fmt" "regexp" "testing" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/apigateway" "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" ) func TestAccAWSAPIGatewayMethod_basic(t *testing.T) { var conf apigateway.Method rInt := acctest.RandInt() resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, CheckDestroy: testAccCheckAWSAPIGatewayMethodDestroy, Steps: []resource.TestStep{ { Config: testAccAWSAPIGatewayMethodConfig(rInt), Check: resource.ComposeTestCheckFunc( testAccCheckAWSAPIGatewayMethodExists("aws_api_gateway_method.test", &conf), testAccCheckAWSAPIGatewayMethodAttributes(&conf), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "http_method", "GET"), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "authorization", "NONE"), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "request_models.application/json", "Error"), ), }, { Config: testAccAWSAPIGatewayMethodConfigUpdate(rInt), Check: resource.ComposeTestCheckFunc( testAccCheckAWSAPIGatewayMethodExists("aws_api_gateway_method.test", &conf), testAccCheckAWSAPIGatewayMethodAttributesUpdate(&conf), ), }, }, }) } func TestAccAWSAPIGatewayMethod_customauthorizer(t *testing.T) { var conf apigateway.Method rInt := acctest.RandInt() resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, CheckDestroy: testAccCheckAWSAPIGatewayMethodDestroy, Steps: []resource.TestStep{ { Config: testAccAWSAPIGatewayMethodConfigWithCustomAuthorizer(rInt), Check: resource.ComposeTestCheckFunc( testAccCheckAWSAPIGatewayMethodExists("aws_api_gateway_method.test", &conf), testAccCheckAWSAPIGatewayMethodAttributes(&conf), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "http_method", "GET"), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "authorization", "CUSTOM"), resource.TestMatchResourceAttr( "aws_api_gateway_method.test", "authorizer_id", regexp.MustCompile("^[a-z0-9]{6}$")), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "request_models.application/json", "Error"), ), }, { Config: testAccAWSAPIGatewayMethodConfigUpdate(rInt), Check: resource.ComposeTestCheckFunc( testAccCheckAWSAPIGatewayMethodExists("aws_api_gateway_method.test", &conf), testAccCheckAWSAPIGatewayMethodAttributesUpdate(&conf), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "authorization", "NONE"), resource.TestCheckResourceAttr( "aws_api_gateway_method.test", "authorizer_id", ""), ), }, }, }) } func testAccCheckAWSAPIGatewayMethodAttributes(conf *apigateway.Method) resource.TestCheckFunc { return func(s *terraform.State) error { if *conf.HttpMethod != "GET" { return fmt.Errorf("Wrong HttpMethod: %q", *conf.HttpMethod) } if *conf.AuthorizationType != "NONE" && *conf.AuthorizationType != "CUSTOM" { return fmt.Errorf("Wrong Authorization: %q", *conf.AuthorizationType) } if val, ok := conf.RequestParameters["method.request.header.Content-Type"]; !ok { return fmt.Errorf("missing Content-Type RequestParameters") } else { if *val != false { return fmt.Errorf("wrong Content-Type RequestParameters value") } } if val, ok := conf.RequestParameters["method.request.querystring.page"]; !ok { return fmt.Errorf("missing page RequestParameters") } else { if *val != true { return fmt.Errorf("wrong query string RequestParameters value") } } return nil } } func testAccCheckAWSAPIGatewayMethodAttributesUpdate(conf *apigateway.Method) resource.TestCheckFunc { return func(s *terraform.State) error { if *conf.HttpMethod != "GET" { return fmt.Errorf("Wrong HttpMethod: %q", *conf.HttpMethod) } if conf.RequestParameters["method.request.header.Content-Type"] != nil { return fmt.Errorf("Content-Type RequestParameters shouldn't exist") } if val, ok := conf.RequestParameters["method.request.querystring.page"]; !ok { return fmt.Errorf("missing updated page RequestParameters") } else { if *val != false { return fmt.Errorf("wrong query string RequestParameters updated value") } } return nil } } func testAccCheckAWSAPIGatewayMethodExists(n string, res *apigateway.Method) 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 API Gateway Method ID is set") } conn := testAccProvider.Meta().(*AWSClient).apigateway req := &apigateway.GetMethodInput{ HttpMethod: aws.String("GET"), ResourceId: aws.String(s.RootModule().Resources["aws_api_gateway_resource.test"].Primary.ID), RestApiId: aws.String(s.RootModule().Resources["aws_api_gateway_rest_api.test"].Primary.ID), } describe, err := conn.GetMethod(req) if err != nil { return err } *res = *describe return nil } } func testAccCheckAWSAPIGatewayMethodDestroy(s *terraform.State) error { conn := testAccProvider.Meta().(*AWSClient).apigateway for _, rs := range s.RootModule().Resources { if rs.Type != "aws_api_gateway_method" { continue } req := &apigateway.GetMethodInput{ HttpMethod: aws.String("GET"), ResourceId: aws.String(s.RootModule().Resources["aws_api_gateway_resource.test"].Primary.ID), RestApiId: aws.String(s.RootModule().Resources["aws_api_gateway_rest_api.test"].Primary.ID), } _, err := conn.GetMethod(req) if err == nil { return fmt.Errorf("API Gateway Method still exists") } aws2err, ok := err.(awserr.Error) if !ok { return err } if aws2err.Code() != "NotFoundException" { return err } return nil } return nil } func testAccAWSAPIGatewayMethodConfigWithCustomAuthorizer(rInt int) string { return fmt.Sprintf(` resource "aws_api_gateway_rest_api" "test" { name = "tf-acc-test-custom-auth-%d" } resource "aws_iam_role" "invocation_role" { name = "tf_acc_api_gateway_auth_invocation_role-%d" path = "/" assume_role_policy = <