Skip to content

Commit 0260f2f

Browse files
authored
fix(tests): use retryStrategy in favor of deprecated doubleCheck (#127)
DoubleCheck is now being converted to retryStrategy at the API level which broke tests. Use retryStrategy instead.
1 parent 5b35b64 commit 0260f2f

6 files changed

+45
-17
lines changed

checkly_test.go

+15-7
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@ import (
2727
var wantCheckID = "73d29e72-6540-4bb5-967e-e07fa2c9465e"
2828

2929
var wantCheck = checkly.Check{
30-
Name: "test",
31-
Type: checkly.TypeAPI,
32-
Frequency: 10,
33-
Activated: true,
34-
Muted: false,
35-
DoubleCheck: true,
30+
Name: "test",
31+
Type: checkly.TypeAPI,
32+
Frequency: 10,
33+
Activated: true,
34+
Muted: false,
35+
RetryStrategy: &checkly.RetryStrategy{
36+
Type: "FIXED",
37+
MaxRetries: 1,
38+
MaxDurationSeconds: 600,
39+
},
3640
ShouldFail: false,
3741
Locations: []string{"eu-west-1"},
3842
PrivateLocations: &[]string{},
@@ -376,7 +380,11 @@ var wantGroup = checkly.Group{
376380
Value: "Hello world",
377381
},
378382
},
379-
DoubleCheck: true,
383+
RetryStrategy: &checkly.RetryStrategy{
384+
Type: "FIXED",
385+
MaxRetries: 1,
386+
MaxDurationSeconds: 600,
387+
},
380388
UseGlobalAlertSettings: false,
381389
AlertSettings: checkly.AlertSettings{
382390
EscalationType: checkly.RunBased,

fixtures/CreateCheck.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
},
3939
"frequency": 10,
4040
"muted": false,
41-
"doubleCheck": true,
41+
"retryStrategy": {
42+
"type": "FIXED",
43+
"maxRetries": 1,
44+
"maxDurationSeconds": 600
45+
},
4246
"locations": [
4347
"eu-west-1"
4448
],
@@ -66,7 +70,7 @@
6670
},
6771
"parallelRunFailureThreshold": {
6872
"enabled": false,
69-
"percentage": 10
73+
"percentage": 10
7074
}
7175
},
7276
"script": "foo",

fixtures/CreateGroup.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@
4545
"locked": false
4646
}
4747
],
48-
"doubleCheck": true,
48+
"retryStrategy": {
49+
"type": "FIXED",
50+
"maxRetries": 1,
51+
"maxDurationSeconds": 600
52+
},
4953
"useGlobalAlertSettings": false,
5054
"alertSettings": {
5155
"escalationType": "RUN_BASED",
@@ -61,7 +65,7 @@
6165
},
6266
"parallelRunFailureThreshold": {
6367
"enabled": false,
64-
"percentage": 10
68+
"percentage": 10
6569
}
6670
},
6771
"alertChannelSubscriptions": [

fixtures/GetCheck.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
},
3939
"frequency": 10,
4040
"muted": false,
41-
"doubleCheck": true,
41+
"retryStrategy": {
42+
"type": "FIXED",
43+
"maxRetries": 1,
44+
"maxDurationSeconds": 600
45+
},
4246
"locations": [
4347
"eu-west-1"
4448
],
@@ -66,7 +70,7 @@
6670
},
6771
"parallelRunFailureThreshold": {
6872
"enabled": false,
69-
"percentage": 10
73+
"percentage": 10
7074
}
7175
},
7276
"script": "foo",

fixtures/UpdateCheck.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
},
3939
"frequency": 10,
4040
"muted": false,
41-
"doubleCheck": true,
41+
"retryStrategy": {
42+
"type": "FIXED",
43+
"maxRetries": 1,
44+
"maxDurationSeconds": 600
45+
},
4246
"locations": [
4347
"eu-west-1"
4448
],
@@ -66,7 +70,7 @@
6670
},
6771
"parallelRunFailureThreshold": {
6872
"enabled": false,
69-
"percentage": 10
73+
"percentage": 10
7074
}
7175
},
7276
"script": "foo",

fixtures/UpdateGroup.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"parallelRunFailureThreshold": {
4040
"enabled": false,
41-
"percentage": 10
41+
"percentage": 10
4242
},
4343
"escalationType": "RUN_BASED",
4444
"runBasedEscalation": {
@@ -62,7 +62,11 @@
6262
"activated": true,
6363
"muted": false,
6464
"useGlobalAlertSettings": false,
65-
"doubleCheck": true,
65+
"retryStrategy": {
66+
"type": "FIXED",
67+
"maxRetries": 1,
68+
"maxDurationSeconds": 600
69+
},
6670
"locations": [
6771
"eu-west-1"
6872
],

0 commit comments

Comments
 (0)