Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Synthetics] Add options_list to replace options #624

Merged
merged 16 commits into from
Aug 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2020-08-05T12:09:03.765352+02:00
2020-08-14T10:51:08.364485+02:00
154 changes: 77 additions & 77 deletions datadog/cassettes/TestAccDatadogSyntheticsAPITest_Basic.yaml

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2020-08-14T10:51:08.366818+02:00

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2020-08-05T12:09:03.766499+02:00
2020-08-14T10:51:08.365661+02:00
266 changes: 133 additions & 133 deletions datadog/cassettes/TestAccDatadogSyntheticsAPITest_Updated.yaml

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2020-08-14T10:51:08.367972+02:00

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2020-08-05T12:09:03.76007+02:00
2020-08-14T10:51:08.361935+02:00
154 changes: 77 additions & 77 deletions datadog/cassettes/TestAccDatadogSyntheticsAPITest_importBasic.yaml

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2020-08-14T10:59:31.624312+02:00

Large diffs are not rendered by default.

191 changes: 139 additions & 52 deletions datadog/resource_datadog_synthetics_test_.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ func resourceDatadogSyntheticsTest() *schema.Resource {
Type: schema.TypeString,
},
},
"options": syntheticsTestOptions(),
"options": syntheticsTestOptions(),
"options_list": syntheticsTestOptionsList(),
"name": {
Type: schema.TypeString,
Required: true,
Expand Down Expand Up @@ -204,8 +205,14 @@ func syntheticsTestRequest() *schema.Schema {

func syntheticsTestOptions() *schema.Schema {
return &schema.Schema{
Type: schema.TypeMap,
Type: schema.TypeMap,
ConflictsWith: []string{"options_list"},
DiffSuppressFunc: func(key, old, new string, d *schema.ResourceData) bool {
// DiffSuppressFunc is useless if options_list exists
if _, isOptionsV2 := d.GetOk("options_list"); isOptionsV2 {
return isOptionsV2
}
romainberger marked this conversation as resolved.
Show resolved Hide resolved

if key == "options.follow_redirects" || key == "options.accept_self_signed" || key == "options.allow_insecure" {
// TF nested schemas is limited to string values only
// follow_redirects, accept_self_signed and allow_insecure being booleans in Datadog json api
Expand Down Expand Up @@ -295,6 +302,44 @@ func syntheticsTestOptions() *schema.Schema {
}
}

func syntheticsTestOptionsList() *schema.Schema {
return &schema.Schema{
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
ConflictsWith: []string{"options"},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nth: As discussed earlier, we should add a test if ConflictsWith can raise an error

Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"allow_insecure": {
Type: schema.TypeBool,
Optional: true,
},
"follow_redirects": {
Type: schema.TypeBool,
Optional: true,
},
"tick_every": {
Type: schema.TypeInt,
Optional: true,
},
"accept_self_signed": {
Type: schema.TypeBool,
Optional: true,
},
"min_location_failed": {
Type: schema.TypeInt,
Default: 1,
Optional: true,
},
"min_failure_duration": {
Type: schema.TypeInt,
Optional: true,
romainberger marked this conversation as resolved.
Show resolved Hide resolved
},
},
},
}
}

func resourceDatadogSyntheticsTestCreate(d *schema.ResourceData, meta interface{}) error {
providerConf := meta.(*ProviderConfiguration)
datadogClientV1 := providerConf.DatadogClientV1
Expand Down Expand Up @@ -500,49 +545,73 @@ func buildSyntheticsTestStruct(d *schema.ResourceData) *datadogV1.SyntheticsTest
}

options := datadogV1.NewSyntheticsTestOptions()
if attr, ok := d.GetOk("options.tick_every"); ok {
tickEvery, _ := strconv.Atoi(attr.(string))
options.SetTickEvery(datadogV1.SyntheticsTickInterval(tickEvery))
}
if attr, ok := d.GetOk("options.follow_redirects"); ok {
// follow_redirects is a string ("true" or "false") in TF state
// it used to be "1" and "0" but it does not play well with the API
// we support both for retro-compatibility
followRedirects, _ := strconv.ParseBool(attr.(string))
options.SetFollowRedirects(followRedirects)
}
if attr, ok := d.GetOk("options.min_failure_duration"); ok {
minFailureDuration, _ := strconv.Atoi(attr.(string))
options.SetMinFailureDuration(int64(minFailureDuration))
}
if attr, ok := d.GetOk("options.min_location_failed"); ok {
minLocationFailed, _ := strconv.Atoi(attr.(string))
options.SetMinLocationFailed(int64(minLocationFailed))
}
if attr, ok := d.GetOk("options.accept_self_signed"); ok {
// for some reason, attr is equal to "1" or "0" in TF 0.11
// so ParseBool is required for retro-compatibility
acceptSelfSigned, _ := strconv.ParseBool(attr.(string))
options.SetAcceptSelfSigned(acceptSelfSigned)
}
if attr, ok := d.GetOk("options.allow_insecure"); ok {
// for some reason, attr is equal to "1" or "0" in TF 0.11
// so ParseBool is required for retro-compatibility
allowInsecure, _ := strconv.ParseBool(attr.(string))
options.SetAllowInsecure(allowInsecure)
}
if attr, ok := d.GetOk("options.retry_count"); ok {
retryCount, _ := strconv.Atoi(attr.(string))
retry := datadogV1.SyntheticsTestOptionsRetry{}
retry.SetCount(int64(retryCount))

if retryIntervalRaw, ok := d.GetOk("options.retry_interval"); ok {
retryInterval, _ := strconv.Atoi(retryIntervalRaw.(string))
retry.SetInterval(float64(retryInterval))
// use new options_list first, then fallback to legacy options
if attr, ok := d.GetOk("options_list"); ok && attr != nil {
if attr, ok := d.GetOk("options_list.0.tick_every"); ok {
options.SetTickEvery(datadogV1.SyntheticsTickInterval(attr.(int)))
}
if attr, ok := d.GetOk("options_list.0.accept_self_signed"); ok {
options.SetAcceptSelfSigned(attr.(bool))
}
if attr, ok := d.GetOk("options_list.0.min_location_failed"); ok {
options.SetMinLocationFailed(int64(attr.(int)))
}
if attr, ok := d.GetOk("options_list.0.min_failure_duration"); ok {
options.SetMinFailureDuration(int64(attr.(int)))
}
if attr, ok := d.GetOk("options_list.0.follow_redirects"); ok {
options.SetFollowRedirects(attr.(bool))
}
if attr, ok := d.GetOk("options_list.0.allow_insecure"); ok {
options.SetAllowInsecure(attr.(bool))
}
} else {
if attr, ok := d.GetOk("options.tick_every"); ok {
tickEvery, _ := strconv.Atoi(attr.(string))
options.SetTickEvery(datadogV1.SyntheticsTickInterval(tickEvery))
}
if attr, ok := d.GetOk("options.follow_redirects"); ok {
// follow_redirects is a string ("true" or "false") in TF state
// it used to be "1" and "0" but it does not play well with the API
// we support both for retro-compatibility
followRedirects, _ := strconv.ParseBool(attr.(string))
options.SetFollowRedirects(followRedirects)
}
if attr, ok := d.GetOk("options.min_failure_duration"); ok {
minFailureDuration, _ := strconv.Atoi(attr.(string))
options.SetMinFailureDuration(int64(minFailureDuration))
}
if attr, ok := d.GetOk("options.min_location_failed"); ok {
minLocationFailed, _ := strconv.Atoi(attr.(string))
options.SetMinLocationFailed(int64(minLocationFailed))
}
if attr, ok := d.GetOk("options.accept_self_signed"); ok {
// for some reason, attr is equal to "1" or "0" in TF 0.11
// so ParseBool is required for retro-compatibility
acceptSelfSigned, _ := strconv.ParseBool(attr.(string))
options.SetAcceptSelfSigned(acceptSelfSigned)
}
if attr, ok := d.GetOk("options.allow_insecure"); ok {
// for some reason, attr is equal to "1" or "0" in TF 0.11
// so ParseBool is required for retro-compatibility
allowInsecure, _ := strconv.ParseBool(attr.(string))
options.SetAllowInsecure(allowInsecure)
}
if attr, ok := d.GetOk("options.retry_count"); ok {
retryCount, _ := strconv.Atoi(attr.(string))
retry := datadogV1.SyntheticsTestOptionsRetry{}
retry.SetCount(int64(retryCount))

if retryIntervalRaw, ok := d.GetOk("options.retry_interval"); ok {
retryInterval, _ := strconv.Atoi(retryIntervalRaw.(string))
retry.SetInterval(float64(retryInterval))
}

options.SetRetry(retry)
options.SetRetry(retry)
}
}

if attr, ok := d.GetOk("device_ids"); ok {
var deviceIds []datadogV1.SyntheticsDeviceID
for _, s := range attr.([]interface{}) {
Expand Down Expand Up @@ -668,7 +737,7 @@ func updateSyntheticsTestLocalState(d *schema.ResourceData, syntheticsTest *data
}
localAssertions[i] = localAssertion
}
// If the config still uses assertions, keep using that in the state to not generate useless diffs
// If the existing state still uses assertions, keep using that in the state to not generate useless diffs
if attr, ok := d.GetOk("assertions"); ok && attr != nil && len(attr.([]interface{})) > 0 {
if err := d.Set("assertions", localAssertions); err != nil {
return err
Expand All @@ -684,35 +753,53 @@ func updateSyntheticsTestLocalState(d *schema.ResourceData, syntheticsTest *data
d.Set("locations", syntheticsTest.Locations)

actualOptions := syntheticsTest.GetOptions()
localOptions := make(map[string]string)
localOptionsList := make(map[string]interface{})
localOption := make(map[string]string)
if actualOptions.HasFollowRedirects() {
localOptions["follow_redirects"] = convertToString(actualOptions.GetFollowRedirects())
localOption["follow_redirects"] = convertToString(actualOptions.GetFollowRedirects())
localOptionsList["follow_redirects"] = actualOptions.GetFollowRedirects()
}
if actualOptions.HasMinFailureDuration() {
localOptions["min_failure_duration"] = convertToString(actualOptions.GetMinFailureDuration())
localOption["min_failure_duration"] = convertToString(actualOptions.GetMinFailureDuration())
localOptionsList["min_failure_duration"] = actualOptions.GetMinFailureDuration()
}
if actualOptions.HasMinLocationFailed() {
localOptions["min_location_failed"] = convertToString(actualOptions.GetMinLocationFailed())
localOption["min_location_failed"] = convertToString(actualOptions.GetMinLocationFailed())
localOptionsList["min_location_failed"] = actualOptions.GetMinLocationFailed()
}
if actualOptions.HasTickEvery() {
localOptions["tick_every"] = convertToString(actualOptions.GetTickEvery())
localOption["tick_every"] = convertToString(actualOptions.GetTickEvery())
localOptionsList["tick_every"] = actualOptions.GetTickEvery()
}
if actualOptions.HasAcceptSelfSigned() {
localOptions["accept_self_signed"] = convertToString(actualOptions.GetAcceptSelfSigned())
localOption["accept_self_signed"] = convertToString(actualOptions.GetAcceptSelfSigned())
localOptionsList["accept_self_signed"] = actualOptions.GetAcceptSelfSigned()
}
if actualOptions.HasAllowInsecure() {
localOptions["allow_insecure"] = convertToString(actualOptions.GetAllowInsecure())
localOption["allow_insecure"] = convertToString(actualOptions.GetAllowInsecure())
localOptionsList["allow_insecure"] = actualOptions.GetAllowInsecure()
}
if actualOptions.HasRetry() {
retry := actualOptions.GetRetry()
localOptions["retry_count"] = convertToString(retry.GetCount())
localOption["retry_count"] = convertToString(retry.GetCount())

if interval, ok := retry.GetIntervalOk(); ok {
localOptions["retry_interval"] = convertToString(interval)
localOption["retry_interval"] = convertToString(interval)
}
}

d.Set("options", localOptions)
// If the existing state still uses options, keep using that in the state to not generate useless diffs
if attr, ok := d.GetOk("options"); ok && attr != nil && len(attr.(map[string]interface{})) > 0 {
if err := d.Set("options", localOption); err != nil {
return err
}
} else {
localOptionsLists := make([]map[string]interface{}, 1)
localOptionsLists[0] = localOptionsList
if err := d.Set("options_list", localOptionsLists); err != nil {
return err
}
}

d.Set("name", syntheticsTest.GetName())
d.Set("message", syntheticsTest.GetMessage())
Expand Down
Loading