Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 55e6751

Browse files
committedFeb 26, 2024·
Update ui tests runner to use new cors config
1 parent 2c4d19f commit 55e6751

File tree

1 file changed

+45
-8
lines changed

1 file changed

+45
-8
lines changed
 

‎web/tests/_globalSetup.ts

+45-8
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,23 @@ function checkEdgeDBServerAlive() {
3434
});
3535
}
3636

37-
async function waitUntilAlive(check: () => Promise<boolean>, event: Event) {
37+
async function waitUntilAlive(
38+
check: () => Promise<boolean>,
39+
errMessage: string,
40+
event?: Event
41+
) {
3842
for (let i = 0; i < STARTUP_TIMEOUT / 1000; i++) {
3943
if (await check()) {
40-
event.set();
44+
event?.set();
4145
return;
4246
}
4347
await sleep(1000);
4448
}
45-
event.setError("EdgeDB server startup timed out");
49+
if (event) {
50+
event.setError(errMessage);
51+
} else {
52+
throw new Error(errMessage);
53+
}
4654
}
4755

4856
async function checkUIServerAlive() {
@@ -61,14 +69,31 @@ async function checkUIServerAlive() {
6169
});
6270
}
6371

72+
async function checkConfigApplied() {
73+
try {
74+
const res = await fetch("http://localhost:5656/server-info");
75+
if (res.ok) {
76+
const info = await res.json();
77+
if (info.instance_config.cors_allow_origins.length > 0) {
78+
return true;
79+
}
80+
}
81+
return false;
82+
} catch {
83+
return false;
84+
}
85+
}
86+
6487
export default async function globalSetup() {
6588
console.log("\n");
6689

6790
let edbServerProc: ChildProcess | null = null;
6891
const edbServerAlive = new Event();
92+
let usingExistingDevServer = false;
6993

7094
if (await checkEdgeDBServerAlive()) {
7195
console.log("Re-using EdgeDB server already running on 5656");
96+
usingExistingDevServer = true;
7297
edbServerAlive.set();
7398
} else {
7499
console.log("Starting EdgeDB server...");
@@ -84,17 +109,19 @@ export default async function globalSetup() {
84109
]
85110
: ["--devmode"];
86111

87-
edbServerProc = spawn(srvcmd, args, {
88-
env: {...process.env, EDGEDB_DEBUG_HTTP_INJECT_CORS: "1"},
89-
}) as ChildProcess;
112+
edbServerProc = spawn(srvcmd, args) as ChildProcess;
90113
edbServerProc.once("close", (code) => {
91114
if (!edbServerAlive.done) {
92115
edbServerAlive.setError(
93116
`EdgeDB server failed to start with exit code: ${code}`
94117
);
95118
}
96119
});
97-
waitUntilAlive(checkEdgeDBServerAlive, edbServerAlive);
120+
waitUntilAlive(
121+
checkEdgeDBServerAlive,
122+
"EdgeDB server startup timed out",
123+
edbServerAlive
124+
);
98125
}
99126

100127
let uiServerProc: ChildProcess | null = null;
@@ -116,7 +143,11 @@ export default async function globalSetup() {
116143
);
117144
}
118145
});
119-
waitUntilAlive(checkUIServerAlive, uiServerAlive);
146+
waitUntilAlive(
147+
checkUIServerAlive,
148+
"UI server startup timed out",
149+
uiServerAlive
150+
);
120151
}
121152

122153
await Promise.all([
@@ -146,6 +177,12 @@ export default async function globalSetup() {
146177

147178
try {
148179
await testClient.execute(schemaScript);
180+
if (!usingExistingDevServer) {
181+
await testClient.execute(
182+
`configure instance set cors_allow_origins := {'*'}`
183+
);
184+
await waitUntilAlive(checkConfigApplied, "Config apply timed out");
185+
}
149186
break;
150187
} catch (err) {
151188
if (!(err instanceof AccessError)) {

0 commit comments

Comments
 (0)
Please sign in to comment.