mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
* Update docs with new parameters * Add request parameters as JSON * Update function name and error statements
215 lines
5.7 KiB
Go
215 lines
5.7 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"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/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccAWSAPIGatewayMethod_basic(t *testing.T) {
|
|
var conf apigateway.Method
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckAWSAPIGatewayMethodDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccAWSAPIGatewayMethodConfig,
|
|
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"),
|
|
),
|
|
},
|
|
|
|
resource.TestStep{
|
|
Config: testAccAWSAPIGatewayMethodConfigUpdate,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckAWSAPIGatewayMethodExists("aws_api_gateway_method.test", &conf),
|
|
testAccCheckAWSAPIGatewayMethodAttributesUpdate(&conf),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
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" {
|
|
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
|
|
}
|
|
|
|
const testAccAWSAPIGatewayMethodConfig = `
|
|
resource "aws_api_gateway_rest_api" "test" {
|
|
name = "test"
|
|
}
|
|
|
|
resource "aws_api_gateway_resource" "test" {
|
|
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
|
|
parent_id = "${aws_api_gateway_rest_api.test.root_resource_id}"
|
|
path_part = "test"
|
|
}
|
|
|
|
resource "aws_api_gateway_method" "test" {
|
|
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
|
|
resource_id = "${aws_api_gateway_resource.test.id}"
|
|
http_method = "GET"
|
|
authorization = "NONE"
|
|
|
|
request_models = {
|
|
"application/json" = "Error"
|
|
}
|
|
|
|
request_parameters_in_json = <<PARAMS
|
|
{
|
|
"method.request.header.Content-Type": false,
|
|
"method.request.querystring.page": true
|
|
}
|
|
PARAMS
|
|
}
|
|
`
|
|
|
|
const testAccAWSAPIGatewayMethodConfigUpdate = `
|
|
resource "aws_api_gateway_rest_api" "test" {
|
|
name = "test"
|
|
}
|
|
|
|
resource "aws_api_gateway_resource" "test" {
|
|
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
|
|
parent_id = "${aws_api_gateway_rest_api.test.root_resource_id}"
|
|
path_part = "test"
|
|
}
|
|
|
|
resource "aws_api_gateway_method" "test" {
|
|
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
|
|
resource_id = "${aws_api_gateway_resource.test.id}"
|
|
http_method = "GET"
|
|
authorization = "NONE"
|
|
|
|
request_models = {
|
|
"application/json" = "Error"
|
|
}
|
|
|
|
request_parameters_in_json = <<PARAMS
|
|
{
|
|
"method.request.querystring.page": false
|
|
}
|
|
PARAMS
|
|
}
|
|
`
|