Skip to content

Commit

Permalink
Merge branch 'master' into tlim_testpr
Browse files Browse the repository at this point in the history
  • Loading branch information
tlimoncelli authored Jan 5, 2024
2 parents ad1454b + db75e84 commit 944ad93
Show file tree
Hide file tree
Showing 2 changed files with 163 additions and 161 deletions.
17 changes: 17 additions & 0 deletions integrationTest/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1317,6 +1317,23 @@ func makeTests(t *testing.T) []*TestGroup {
tc("Update 1200 records", manyA("rec%04d", "1.2.3.5", 1200)...),
),

// Test the boundaries of Google' batch system.
// 1200 is used because it is larger than batchMax.
// https://github.com/StackExchange/dnscontrol/pull/2762#issuecomment-1877825559
testgroup("batchRecordswithOthers",
only(
"GCLOUD",
),
tc("1200 records",
manyA("rec%04d", "1.2.3.4", 1200)...),
tc("Update 1200 records and Create others", append(
manyA("arec%04d", "1.2.3.4", 1200),
manyA("rec%04d", "1.2.3.5", 1200)...)...),
tc("Update 1200 records and Create and Delete others", append(
manyA("rec%04d", "1.2.3.4", 1200),
manyA("zrec%04d", "1.2.3.4", 1200)...)...),
),

//// CanUse* types:

// Narrative: Many DNS record types are optional. If the provider
Expand Down
Loading

0 comments on commit 944ad93

Please sign in to comment.