mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-23 15:12:57 +08:00
CICD: Make pager tests more visible (#3387)
This commit is contained in:
parent
67db0e287d
commit
9e88b6a801
1 changed files with 14 additions and 13 deletions
|
@ -1457,9 +1457,9 @@ func makeTests() []*TestGroup {
|
||||||
"TRANSIP", // Doesn't page. Works fine. Due to the slow API we skip.
|
"TRANSIP", // Doesn't page. Works fine. Due to the slow API we skip.
|
||||||
"CNR", // Test beaks limits.
|
"CNR", // Test beaks limits.
|
||||||
),
|
),
|
||||||
tc("99 records", manyA("rec%04d", "1.2.3.4", 99)...),
|
tc("99 records", manyA("pager101-rec%04d", "1.2.3.4", 99)...),
|
||||||
tc("100 records", manyA("rec%04d", "1.2.3.4", 100)...),
|
tc("100 records", manyA("pager101-rec%04d", "1.2.3.4", 100)...),
|
||||||
tc("101 records", manyA("rec%04d", "1.2.3.4", 101)...),
|
tc("101 records", manyA("pager101-rec%04d", "1.2.3.4", 101)...),
|
||||||
),
|
),
|
||||||
|
|
||||||
testgroup("pager601",
|
testgroup("pager601",
|
||||||
|
@ -1474,8 +1474,8 @@ func makeTests() []*TestGroup {
|
||||||
//"HEXONET", // Doesn't page. Works fine. Due to the slow API we skip.
|
//"HEXONET", // Doesn't page. Works fine. Due to the slow API we skip.
|
||||||
"ROUTE53", // Batches up changes in pages.
|
"ROUTE53", // Batches up changes in pages.
|
||||||
),
|
),
|
||||||
tc("601 records", manyA("rec%04d", "1.2.3.4", 600)...),
|
tc("601 records", manyA("pager601-rec%04d", "1.2.3.4", 600)...),
|
||||||
tc("Update 601 records", manyA("rec%04d", "1.2.3.5", 600)...),
|
tc("Update 601 records", manyA("pager601-rec%04d", "1.2.3.5", 600)...),
|
||||||
),
|
),
|
||||||
|
|
||||||
testgroup("pager1201",
|
testgroup("pager1201",
|
||||||
|
@ -1493,8 +1493,8 @@ func makeTests() []*TestGroup {
|
||||||
"HOSTINGDE", // Pages.
|
"HOSTINGDE", // Pages.
|
||||||
"ROUTE53", // Batches up changes in pages.
|
"ROUTE53", // Batches up changes in pages.
|
||||||
),
|
),
|
||||||
tc("1200 records", manyA("rec%04d", "1.2.3.4", 1200)...),
|
tc("1200 records", manyA("pager1201-rec%04d", "1.2.3.4", 1200)...),
|
||||||
tc("Update 1200 records", manyA("rec%04d", "1.2.3.5", 1200)...),
|
tc("Update 1200 records", manyA("pager1201-rec%04d", "1.2.3.5", 1200)...),
|
||||||
),
|
),
|
||||||
|
|
||||||
// Test the boundaries of Google' batch system.
|
// Test the boundaries of Google' batch system.
|
||||||
|
@ -1502,16 +1502,17 @@ func makeTests() []*TestGroup {
|
||||||
// https://github.com/StackExchange/dnscontrol/pull/2762#issuecomment-1877825559
|
// https://github.com/StackExchange/dnscontrol/pull/2762#issuecomment-1877825559
|
||||||
testgroup("batchRecordswithOthers",
|
testgroup("batchRecordswithOthers",
|
||||||
only(
|
only(
|
||||||
//"GCLOUD",
|
//"GCLOUD",
|
||||||
|
"HOSTINGDE", // Pages.
|
||||||
),
|
),
|
||||||
tc("1200 records",
|
tc("1200 records",
|
||||||
manyA("rec%04d", "1.2.3.4", 1200)...),
|
manyA("batch-rec%04d", "1.2.3.4", 1200)...),
|
||||||
tc("Update 1200 records and Create others", append(
|
tc("Update 1200 records and Create others", append(
|
||||||
manyA("arec%04d", "1.2.3.4", 1200),
|
manyA("batch-arec%04d", "1.2.3.4", 1200),
|
||||||
manyA("rec%04d", "1.2.3.5", 1200)...)...),
|
manyA("batch-rec%04d", "1.2.3.5", 1200)...)...),
|
||||||
tc("Update 1200 records and Create and Delete others", append(
|
tc("Update 1200 records and Create and Delete others", append(
|
||||||
manyA("rec%04d", "1.2.3.4", 1200),
|
manyA("batch-rec%04d", "1.2.3.4", 1200),
|
||||||
manyA("zrec%04d", "1.2.3.4", 1200)...)...),
|
manyA("batch-zrec%04d", "1.2.3.4", 1200)...)...),
|
||||||
),
|
),
|
||||||
|
|
||||||
//// CanUse* types:
|
//// CanUse* types:
|
||||||
|
|
Loading…
Reference in a new issue