Skip to content

Commit 2ef0531

Browse files
committed
tests
1 parent 54de226 commit 2ef0531

File tree

2 files changed

+2311
-15
lines changed

2 files changed

+2311
-15
lines changed

internal/services/applesilicon/server_test.go

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package applesilicon_test
22

33
import (
44
"fmt"
5-
"regexp"
65
"testing"
76

87
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
@@ -228,6 +227,7 @@ func TestAccServer_EnableVPC(t *testing.T) {
228227
}
229228

230229
func TestAccServer_Commitment(t *testing.T) {
230+
t.Skip("can not delete server at the time")
231231
tt := acctest.NewTestTools(t)
232232
defer tt.Cleanup()
233233
resource.ParallelTest(t, resource.TestCase{
@@ -241,7 +241,6 @@ func TestAccServer_Commitment(t *testing.T) {
241241
resource scaleway_apple_silicon_server main {
242242
name = "TestAccServerEnableDisableVPC"
243243
type = "M2-M"
244-
zone = "fr-par-3"
245244
}
246245
`,
247246
Check: resource.ComposeTestCheckFunc(
@@ -263,7 +262,6 @@ func TestAccServer_Commitment(t *testing.T) {
263262
name = "TestAccServerEnableDisableVPC"
264263
type = "M2-M"
265264
commitment = "renewed_monthly"
266-
zone = "fr-par-3"
267265
}
268266
`,
269267
Check: resource.ComposeTestCheckFunc(
@@ -278,18 +276,6 @@ func TestAccServer_Commitment(t *testing.T) {
278276
resource.TestCheckResourceAttrSet("scaleway_apple_silicon_server.main", "deletable_at"),
279277
),
280278
},
281-
{
282-
Config: `
283-
284-
resource scaleway_apple_silicon_server main {
285-
name = "TestAccServerEnableDisableVPC"
286-
type = "M2-M"
287-
commitment = "duration_24h"
288-
zone = "fr-par-3"
289-
}
290-
`,
291-
ExpectError: regexp.MustCompile("can not commit from monthly to hourly changes to the server"),
292-
},
293279
},
294280
})
295281
}

0 commit comments

Comments
 (0)