Skip to content

Commit 6c09928

Browse files
author
Guy Bedford
authored
test: reenable config store tests (#1140)
1 parent a6fc1d1 commit 6c09928

File tree

4 files changed

+20
-47
lines changed

4 files changed

+20
-47
lines changed

integration-tests/js-compute/fixtures/app/tests.json

Lines changed: 17 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
"GET /client/tlsClientCertificate": {},
410410
"GET /client/tlsCipherOpensslName": {},
411411
"GET /client/tlsProtocol": {},
412-
"GET /config-store": { "flake": true, "skip": true },
412+
"GET /config-store": { "flake": true },
413413
"GET /crypto": {
414414
"downstream_response": {
415415
"status": 200,
@@ -980,49 +980,24 @@
980980
"body": "ok"
981981
}
982982
},
983-
"GET /dictionary/exposed-as-global": { "flake": true, "skip": true },
984-
"GET /dictionary/interface": { "flake": true, "skip": true },
985-
"GET /dictionary/constructor/called-as-regular-function": {
986-
"flake": true,
987-
"skip": true
988-
},
983+
"GET /dictionary/exposed-as-global": { "flake": true },
984+
"GET /dictionary/interface": { "flake": true },
985+
"GET /dictionary/constructor/called-as-regular-function": { "flake": true },
989986
"GET /dictionary/constructor/parameter-calls-7.1.17-ToString": {
990-
"flake": true,
991-
"skip": true
992-
},
993-
"GET /dictionary/constructor/empty-parameter": {
994-
"flake": true,
995-
"skip": true
996-
},
997-
"GET /dictionary/constructor/found": { "flake": true, "skip": true },
998-
"GET /dictionary/constructor/invalid-name": { "flake": true, "skip": true },
999-
"GET /dictionary/get/called-as-constructor": { "flake": true, "skip": true },
1000-
"GET /dictionary/get/called-unbound": { "flake": true, "skip": true },
1001-
"GET /dictionary/get/key-parameter-calls-7.1.17-ToString": {
1002-
"flake": true,
1003-
"skip": true
1004-
},
1005-
"GET /dictionary/get/key-parameter-not-supplied": {
1006-
"flake": true,
1007-
"skip": true
1008-
},
1009-
"GET /dictionary/get/key-parameter-empty-string": {
1010-
"flake": true,
1011-
"skip": true
1012-
},
1013-
"GET /dictionary/get/key-parameter-255-character-string": {
1014-
"flake": true,
1015-
"skip": true
1016-
},
1017-
"GET /dictionary/get/key-parameter-256-character-string": {
1018-
"flake": true,
1019-
"skip": true
1020-
},
1021-
"GET /dictionary/get/key-does-not-exist-returns-null": {
1022-
"flake": true,
1023-
"skip": true
987+
"flake": true
1024988
},
1025-
"GET /dictionary/get/key-exists": { "flake": true, "skip": true },
989+
"GET /dictionary/constructor/empty-parameter": { "flake": true },
990+
"GET /dictionary/constructor/found": { "flake": true },
991+
"GET /dictionary/constructor/invalid-name": { "flake": true },
992+
"GET /dictionary/get/called-as-constructor": { "flake": true },
993+
"GET /dictionary/get/called-unbound": { "flake": true },
994+
"GET /dictionary/get/key-parameter-calls-7.1.17-ToString": { "flake": true },
995+
"GET /dictionary/get/key-parameter-not-supplied": { "flake": true },
996+
"GET /dictionary/get/key-parameter-empty-string": { "flake": true },
997+
"GET /dictionary/get/key-parameter-255-character-string": { "flake": true },
998+
"GET /dictionary/get/key-parameter-256-character-string": { "flake": true },
999+
"GET /dictionary/get/key-does-not-exist-returns-null": { "flake": true },
1000+
"GET /dictionary/get/key-exists": { "flake": true },
10261001
"GET /env": {
10271002
"environments": ["viceroy"]
10281003
},

integration-tests/js-compute/setup.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,7 @@ async function setupAcl() {
151151
}
152152

153153
zx.verbose = true;
154-
// disabled pending 404 fix
155-
// await setupConfigStores();
154+
await setupConfigStores();
156155
await setupKVStore();
157156
await setupSecretStore();
158157
// disabled pending 503 fix

integration-tests/js-compute/teardown.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ async function removeAcl() {
135135
}
136136
}
137137

138-
// Disabled pending 404 fix
139-
// await removeConfigStores();
138+
await removeConfigStores();
140139
await removeKVStore();
141140
await removeSecretStore();
142141
// Disabled pending 503 fix

integration-tests/js-compute/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ if (!local) {
151151
serviceId = domainListing.ServiceID;
152152
core.notice(`Service is running on ${domain}`);
153153
} else {
154-
localServer = zx`fastly compute serve --verbose --viceroy-args="${verbose ? '-vv' : ''}"`;
154+
localServer = zx`fastly compute serve --verbose --viceroy-args=${verbose ? '-vv' : ''}`;
155155
domain = 'http://127.0.0.1:7676';
156156
}
157157

0 commit comments

Comments
 (0)