@@ -34,15 +34,23 @@ function checkEdgeDBServerAlive() {
34
34
} ) ;
35
35
}
36
36
37
- async function waitUntilAlive ( check : ( ) => Promise < boolean > , event : Event ) {
37
+ async function waitUntilAlive (
38
+ check : ( ) => Promise < boolean > ,
39
+ errMessage : string ,
40
+ event ?: Event
41
+ ) {
38
42
for ( let i = 0 ; i < STARTUP_TIMEOUT / 1000 ; i ++ ) {
39
43
if ( await check ( ) ) {
40
- event . set ( ) ;
44
+ event ? .set ( ) ;
41
45
return ;
42
46
}
43
47
await sleep ( 1000 ) ;
44
48
}
45
- event . setError ( "EdgeDB server startup timed out" ) ;
49
+ if ( event ) {
50
+ event . setError ( errMessage ) ;
51
+ } else {
52
+ throw new Error ( errMessage ) ;
53
+ }
46
54
}
47
55
48
56
async function checkUIServerAlive ( ) {
@@ -61,14 +69,31 @@ async function checkUIServerAlive() {
61
69
} ) ;
62
70
}
63
71
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
+
64
87
export default async function globalSetup ( ) {
65
88
console . log ( "\n" ) ;
66
89
67
90
let edbServerProc : ChildProcess | null = null ;
68
91
const edbServerAlive = new Event ( ) ;
92
+ let usingExistingDevServer = false ;
69
93
70
94
if ( await checkEdgeDBServerAlive ( ) ) {
71
95
console . log ( "Re-using EdgeDB server already running on 5656" ) ;
96
+ usingExistingDevServer = true ;
72
97
edbServerAlive . set ( ) ;
73
98
} else {
74
99
console . log ( "Starting EdgeDB server..." ) ;
@@ -84,17 +109,19 @@ export default async function globalSetup() {
84
109
]
85
110
: [ "--devmode" ] ;
86
111
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 ;
90
113
edbServerProc . once ( "close" , ( code ) => {
91
114
if ( ! edbServerAlive . done ) {
92
115
edbServerAlive . setError (
93
116
`EdgeDB server failed to start with exit code: ${ code } `
94
117
) ;
95
118
}
96
119
} ) ;
97
- waitUntilAlive ( checkEdgeDBServerAlive , edbServerAlive ) ;
120
+ waitUntilAlive (
121
+ checkEdgeDBServerAlive ,
122
+ "EdgeDB server startup timed out" ,
123
+ edbServerAlive
124
+ ) ;
98
125
}
99
126
100
127
let uiServerProc : ChildProcess | null = null ;
@@ -116,7 +143,11 @@ export default async function globalSetup() {
116
143
) ;
117
144
}
118
145
} ) ;
119
- waitUntilAlive ( checkUIServerAlive , uiServerAlive ) ;
146
+ waitUntilAlive (
147
+ checkUIServerAlive ,
148
+ "UI server startup timed out" ,
149
+ uiServerAlive
150
+ ) ;
120
151
}
121
152
122
153
await Promise . all ( [
@@ -146,6 +177,12 @@ export default async function globalSetup() {
146
177
147
178
try {
148
179
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
+ }
149
186
break ;
150
187
} catch ( err ) {
151
188
if ( ! ( err instanceof AccessError ) ) {
0 commit comments