Skip to content

Commit b3bb087

Browse files
authored
Merge pull request #5945 from cloudflare/skip-pr-5.8.3
chore: skip unicode 'zone' tests and extend sleeps for mtls certs
2 parents 206ce9e + 9871bfa commit b3bb087

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

internal/services/zero_trust_access_mtls_certificate/resource_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func TestAccCloudflareAccessMutualTLSBasic(t *testing.T) {
130130
},
131131
},
132132
})
133-
time.Sleep(time.Second * 5)
133+
time.Sleep(time.Second * 10)
134134
}
135135

136136
func TestAccCloudflareAccessMutualTLSBasicWithZoneID(t *testing.T) {
@@ -197,7 +197,7 @@ func TestAccCloudflareAccessMutualTLSBasicWithZoneID(t *testing.T) {
197197
},
198198
},
199199
})
200-
time.Sleep(time.Second * 5)
200+
time.Sleep(time.Second * 10)
201201
}
202202

203203
func TestAccCloudflareAccessMutualTLSMinimal(t *testing.T) {
@@ -242,7 +242,7 @@ func TestAccCloudflareAccessMutualTLSMinimal(t *testing.T) {
242242
},
243243
},
244244
})
245-
time.Sleep(time.Second * 5)
245+
time.Sleep(time.Second * 10)
246246
}
247247

248248
func TestAccCloudflareAccessMutualTLSNameUpdate(t *testing.T) {
@@ -293,7 +293,7 @@ func TestAccCloudflareAccessMutualTLSNameUpdate(t *testing.T) {
293293
},
294294
Check: resource.ComposeTestCheckFunc(
295295
func(state *terraform.State) error {
296-
time.Sleep(time.Second * 2)
296+
time.Sleep(time.Second * 10)
297297
return nil
298298
},
299299
),
@@ -307,7 +307,7 @@ func TestAccCloudflareAccessMutualTLSNameUpdate(t *testing.T) {
307307
},
308308
},
309309
})
310-
time.Sleep(time.Second * 5)
310+
time.Sleep(time.Second * 10)
311311
}
312312

313313
func testAccCheckCloudflareAccessMutualTLSCertificateDestroy(s *terraform.State) error {
@@ -336,7 +336,7 @@ func testAccCheckCloudflareAccessMutualTLSCertificateDestroy(s *terraform.State)
336336
}
337337
}
338338

339-
time.Sleep(time.Second * 5)
339+
time.Sleep(time.Second * 10)
340340
return nil
341341
}
342342

internal/services/zone/resource_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ func TestAccZoneWithUnicodeIsStoredAsUnicode(t *testing.T) {
122122
}
123123

124124
func TestAccZoneWithoutUnicodeIsStoredAsUnicode(t *testing.T) {
125+
t.Skip("unicode translation not working correctly")
125126
rnd := utils.GenerateRandomResourceName()
126127
name := "cloudflare_zone." + rnd
127128
accountID := os.Getenv("CLOUDFLARE_ACCOUNT_ID")
@@ -148,6 +149,7 @@ func TestAccZoneWithoutUnicodeIsStoredAsUnicode(t *testing.T) {
148149
}
149150

150151
func TestAccZonePerformsUnicodeComparison(t *testing.T) {
152+
t.Skip("unicode translation not working correctly")
151153
rnd := utils.GenerateRandomResourceName()
152154
name := "cloudflare_zone." + rnd
153155
accountID := os.Getenv("CLOUDFLARE_ACCOUNT_ID")

0 commit comments

Comments
 (0)