mirror of https://github.com/hashicorp/terraform
provider/fastly: Add support for Conditions for Fastly Services (#6481)
* provider/fastly: Add support for Conditions for Fastly Services Docs here: - https://docs.fastly.com/guides/conditions/ Also Bump go-fastly version for domain support in S3 Loggingpull/6560/head
parent
dbdf9f6c84
commit
3eee40cd98
@ -0,0 +1,122 @@
|
||||
package fastly
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/terraform/helper/acctest"
|
||||
"github.com/hashicorp/terraform/helper/resource"
|
||||
"github.com/hashicorp/terraform/terraform"
|
||||
gofastly "github.com/sethvargo/go-fastly"
|
||||
)
|
||||
|
||||
func TestAccFastlyServiceV1_conditional_basic(t *testing.T) {
|
||||
var service gofastly.ServiceDetail
|
||||
name := fmt.Sprintf("tf-test-%s", acctest.RandString(10))
|
||||
domainName1 := fmt.Sprintf("%s.notadomain.com", acctest.RandString(10))
|
||||
|
||||
con1 := gofastly.Condition{
|
||||
Name: "some amz condition",
|
||||
Priority: 10,
|
||||
Type: "REQUEST",
|
||||
Statement: `req.url ~ "^/yolo/"`,
|
||||
}
|
||||
|
||||
resource.Test(t, resource.TestCase{
|
||||
PreCheck: func() { testAccPreCheck(t) },
|
||||
Providers: testAccProviders,
|
||||
CheckDestroy: testAccCheckServiceV1Destroy,
|
||||
Steps: []resource.TestStep{
|
||||
resource.TestStep{
|
||||
Config: testAccServiceV1ConditionConfig(name, domainName1),
|
||||
Check: resource.ComposeTestCheckFunc(
|
||||
testAccCheckServiceV1Exists("fastly_service_v1.foo", &service),
|
||||
testAccCheckFastlyServiceV1ConditionalAttributes(&service, name, []*gofastly.Condition{&con1}),
|
||||
resource.TestCheckResourceAttr(
|
||||
"fastly_service_v1.foo", "name", name),
|
||||
resource.TestCheckResourceAttr(
|
||||
"fastly_service_v1.foo", "condition.#", "1"),
|
||||
),
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
func testAccCheckFastlyServiceV1ConditionalAttributes(service *gofastly.ServiceDetail, name string, conditions []*gofastly.Condition) resource.TestCheckFunc {
|
||||
return func(s *terraform.State) error {
|
||||
|
||||
if service.Name != name {
|
||||
return fmt.Errorf("Bad name, expected (%s), got (%s)", name, service.Name)
|
||||
}
|
||||
|
||||
conn := testAccProvider.Meta().(*FastlyClient).conn
|
||||
conditionList, err := conn.ListConditions(&gofastly.ListConditionsInput{
|
||||
Service: service.ID,
|
||||
Version: service.ActiveVersion.Number,
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
return fmt.Errorf("[ERR] Error looking up Conditions for (%s), version (%s): %s", service.Name, service.ActiveVersion.Number, err)
|
||||
}
|
||||
|
||||
if len(conditionList) != len(conditions) {
|
||||
return fmt.Errorf("Error: mis match count of conditions, expected (%d), got (%d)", len(conditions), len(conditionList))
|
||||
}
|
||||
|
||||
var found int
|
||||
for _, c := range conditions {
|
||||
for _, lc := range conditionList {
|
||||
if c.Name == lc.Name {
|
||||
// we don't know these things ahead of time, so populate them now
|
||||
c.ServiceID = service.ID
|
||||
c.Version = service.ActiveVersion.Number
|
||||
if !reflect.DeepEqual(c, lc) {
|
||||
return fmt.Errorf("Bad match Conditions match, expected (%#v), got (%#v)", c, lc)
|
||||
}
|
||||
found++
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if found != len(conditions) {
|
||||
return fmt.Errorf("Error matching Conditions rules")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
func testAccServiceV1ConditionConfig(name, domain string) string {
|
||||
return fmt.Sprintf(`
|
||||
resource "fastly_service_v1" "foo" {
|
||||
name = "%s"
|
||||
|
||||
domain {
|
||||
name = "%s"
|
||||
comment = "tf-testing-domain"
|
||||
}
|
||||
|
||||
backend {
|
||||
address = "aws.amazon.com"
|
||||
name = "amazon docs"
|
||||
}
|
||||
|
||||
header {
|
||||
destination = "http.x-amz-request-id"
|
||||
type = "cache"
|
||||
action = "delete"
|
||||
name = "remove x-amz-request-id"
|
||||
}
|
||||
|
||||
condition {
|
||||
name = "some amz condition"
|
||||
type = "REQUEST"
|
||||
|
||||
statement = "req.url ~ \"^/yolo/\""
|
||||
|
||||
priority = 10
|
||||
}
|
||||
|
||||
force_destroy = true
|
||||
}`, name, domain)
|
||||
}
|
||||
Loading…
Reference in new issue