-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpageSetups.ts
More file actions
411 lines (342 loc) · 12.5 KB
/
pageSetups.ts
File metadata and controls
411 lines (342 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
import { generateUUID, INTAKE_URL_PARAMETERS } from '@datadog/browser-core'
import type { LogsInitConfiguration } from '@datadog/browser-logs'
import type { RumInitConfiguration, RemoteConfiguration } from '@datadog/browser-rum-core'
import type { DebuggerInitConfiguration } from '@datadog/browser-debugger'
import type test from '@playwright/test'
import { isBrowserStack, isContinuousIntegration } from './environment'
import type { Servers } from './httpServers'
export interface SetupOptions {
rum?: RumInitConfiguration
useRumSlim: boolean
logs?: LogsInitConfiguration
logsInit: (initConfiguration: LogsInitConfiguration) => void
rumInit: (initConfiguration: RumInitConfiguration) => void
debugger?: DebuggerInitConfiguration
remoteConfiguration?: RemoteConfiguration
eventBridge: boolean
head?: string
body?: string
baseUrlHooks: UrlHook[]
context: {
run_id: string
test_name: string
}
testFixture: typeof test
extension?: {
rumConfiguration?: RumInitConfiguration
logsConfiguration?: LogsInitConfiguration
}
worker?: WorkerOptions
callerLocation?: CallerLocation
}
export interface CallerLocation {
file: string
line: number
column: number
}
export interface WorkerOptions {
importScripts?: boolean
rumConfiguration?: RumInitConfiguration
logsConfiguration?: LogsInitConfiguration
}
export type SetupFactory = (options: SetupOptions, servers: Servers) => string
export type UrlHook = (baseUrl: URL, servers: Servers, options: SetupOptions) => void
// By default, run tests only with the 'bundle' setup outside of the CI (to run faster on the
// developer laptop) or with Browser Stack (to limit flakiness).
export const DEFAULT_SETUPS =
!isContinuousIntegration || isBrowserStack
? [{ name: 'bundle', factory: bundleSetup }]
: [
{ name: 'async', factory: asyncSetup },
{ name: 'npm', factory: npmSetup },
{ name: 'bundle', factory: bundleSetup },
]
export function asyncSetup(options: SetupOptions, servers: Servers) {
let header = options.head || ''
let footer = ''
if (options.eventBridge) {
header += setupEventBridge(servers)
}
if (options.extension) {
header += setupExtension(options, servers)
}
function formatSnippet(url: string, globalName: string) {
return `(function(h,o,u,n,d) {
h=h[d]=h[d]||{q:[],onReady:function(c){h.q.push(c)}}
d=o.createElement(u);d.async=1;d.src=n
n=o.getElementsByTagName(u)[0];n.parentNode.insertBefore(d,n)
})(window,document,'script','${url}','${globalName}')`
}
const { logsScriptUrl, rumScriptUrl, debuggerScriptUrl } = createCrossOriginScriptUrls(servers, options)
if (options.logs) {
footer += html`<script>
${formatSnippet(logsScriptUrl, 'DD_LOGS')}
DD_LOGS.onReady(function () {
DD_LOGS.setGlobalContext(${JSON.stringify(options.context)})
;(${options.logsInit.toString()})(${formatConfiguration(options.logs, servers)})
})
</script>`
}
if (options.rum) {
footer += html`<script type="text/javascript">
${formatSnippet(rumScriptUrl, 'DD_RUM')}
DD_RUM.onReady(function () {
DD_RUM.setGlobalContext(${JSON.stringify(options.context)})
;(${options.rumInit.toString()})(${formatConfiguration(options.rum, servers)})
})
</script>`
}
if (options.debugger) {
footer += html`<script type="text/javascript">
${formatSnippet(debuggerScriptUrl, 'DD_DEBUGGER')}
DD_DEBUGGER.onReady(function () {
DD_DEBUGGER.init(${formatConfiguration(options.debugger, servers)})
})
</script>`
}
return basePage({
header,
body: options.body,
footer,
})
}
export function bundleSetup(options: SetupOptions, servers: Servers) {
let header = options.head || ''
if (options.eventBridge) {
header += setupEventBridge(servers)
}
if (options.extension) {
header += setupExtension(options, servers)
}
const { logsScriptUrl, rumScriptUrl, debuggerScriptUrl } = createCrossOriginScriptUrls(servers, options)
if (options.logs) {
header += html`<script type="text/javascript" src="${logsScriptUrl}"></script>`
header += html`<script type="text/javascript">
DD_LOGS.setGlobalContext(${JSON.stringify(options.context)})
;(${options.logsInit.toString()})(${formatConfiguration(options.logs, servers)})
</script>`
}
if (options.rum) {
header += html`<script type="text/javascript" src="${rumScriptUrl}"></script>`
header += html`<script type="text/javascript">
DD_RUM.setGlobalContext(${JSON.stringify(options.context)})
;(${options.rumInit.toString()})(${formatConfiguration(options.rum, servers)})
</script>`
}
if (options.debugger) {
header += html`
<script type="text/javascript" src="${debuggerScriptUrl}"></script>
<script type="text/javascript">
DD_DEBUGGER.init(${formatConfiguration(options.debugger, servers)})
</script>
`
}
return basePage({
header,
body: options.body,
})
}
export function npmSetup(options: SetupOptions, servers: Servers) {
let header = options.head || ''
if (options.eventBridge) {
header += setupEventBridge(servers)
}
if (options.extension) {
header += setupExtension(options, servers)
}
if (options.logs) {
header += html`<script type="text/javascript">
window.LOGS_INIT = () => {
window.DD_LOGS.setGlobalContext(${JSON.stringify(options.context)})
;(${options.logsInit.toString()})(${formatConfiguration(options.logs, servers)})
}
</script>`
}
if (options.rum) {
header += html`<script type="text/javascript">
window.RUM_INIT = () => {
window.DD_RUM.setGlobalContext(${JSON.stringify(options.context)})
;(${options.rumInit.toString()})(${formatConfiguration(options.rum, servers)})
}
</script>`
}
if (options.debugger) {
header += html`<script type="text/javascript">
window.DEBUGGER_INIT = () => {
window.DD_DEBUGGER.init(${formatConfiguration(options.debugger, servers)})
}
</script>`
}
header += html`<script type="text/javascript" src="./app.js"></script>`
return basePage({
header,
body: options.body,
})
}
export function appSetup(options: SetupOptions, servers: Servers, appName: string) {
let header = options.head || ''
if (options.eventBridge) {
header += setupEventBridge(servers)
}
if (options.extension) {
header += setupExtension(options, servers)
}
if (options.rum) {
header += html`<script type="text/javascript">
window.RUM_CONFIGURATION = ${formatConfiguration(options.rum, servers)}
window.RUM_CONTEXT = ${JSON.stringify(options.context)}
</script>`
}
const footer = html`<script type="text/javascript" src="./${appName}.js"></script>`
return basePage({
header,
body: options.body,
footer,
})
}
export function workerSetup(setupOptions: SetupOptions, servers: Servers) {
const { worker, context } = setupOptions
let setup = ''
if (worker?.logsConfiguration) {
setup += js`
${worker.importScripts ? js`importScripts('/datadog-logs.js');` : js`import '/datadog-logs.js';`}
DD_LOGS.init(${formatConfiguration(worker.logsConfiguration, servers)})
DD_LOGS.setGlobalContext(${JSON.stringify(context)})
`
}
if (worker?.rumConfiguration) {
setup += js`
${worker.importScripts ? js`importScripts('/datadog-rum.js');` : js`import '/datadog-rum.js';`}
DD_RUM.init(${formatConfiguration(worker.rumConfiguration, servers)})
DD_RUM.setGlobalContext(${JSON.stringify(context)})
`
}
setup += js`
self.addEventListener('message', (event) => {
if (event.data.__type === 'evaluate') {
new Function(event.data.code)();
}
});
`
return setup
}
export function microfrontendSetup(options: SetupOptions, servers: Servers) {
let header = options.head || ''
if (options.eventBridge) {
header += setupEventBridge(servers)
}
if (options.extension) {
header += setupExtension(options, servers)
}
const { rumScriptUrl } = createCrossOriginScriptUrls(servers, options)
if (options.rum) {
header += html`<script type="text/javascript" src="${rumScriptUrl}"></script>`
header += html`<script type="text/javascript">
DD_RUM.setGlobalContext(${JSON.stringify(options.context)})
;(${options.rumInit.toString()})(${formatConfiguration(options.rum, servers)})
</script>`
}
header += html`<script type="module" src="/microfrontend/shell.js"></script>`
return basePage({
header,
body: options.body,
})
}
function basePage({ header, body, footer }: { header?: string; body?: string; footer?: string }) {
// prettier-ignore
// The empty favicon avoids a /favicon.ico request from the browser.
return html`<!doctype html><html><head><link rel="icon" href="data:,"/>${header || ''}</head><body>${body || ''}</body>${footer || ''}</html>`
}
// html is a simple template string tag to allow prettier to format various setups as HTML
export function html(parts: readonly string[], ...vars: string[]) {
return parts.reduce((full, part, index) => full + vars[index - 1] + part)
}
function js(parts: readonly string[], ...vars: string[]) {
return parts.reduce((full, part, index) => full + vars[index - 1] + part)
}
function setupEventBridge(servers: Servers) {
const baseHostname = new URL(servers.base.origin).hostname
// Send EventBridge events to the intake so we can inspect them in our E2E test cases. The URL
// needs to be similar to the normal Datadog intake (through proxy) to make the SDK completely
// ignore them.
const eventBridgeIntake = `${servers.intake.origin}/?${new URLSearchParams({
ddforward: `/api/v2/rum?${INTAKE_URL_PARAMETERS.join('&')}`,
bridge: 'true',
}).toString()}`
return html`<script type="text/javascript">
window.DatadogEventBridge = {
getCapabilities() {
return '["records"]'
},
getPrivacyLevel() {
return 'mask'
},
getAllowedWebViewHosts() {
return '["${baseHostname}"]'
},
send(e) {
const { eventType, event } = JSON.parse(e)
const request = new XMLHttpRequest()
request.open('POST', ${JSON.stringify(eventBridgeIntake)} + '&event_type=' + eventType, true)
request.send(JSON.stringify(event))
},
}
</script>`
}
function setupExtension(options: SetupOptions, servers: Servers) {
let header = ''
const { rumScriptUrl, logsScriptUrl } = createCrossOriginScriptUrls(servers, { ...options, useRumSlim: false })
if (options.extension?.rumConfiguration) {
header += html`<script type="text/javascript">
window.RUM_BUNDLE_URL = '${rumScriptUrl}'
window.RUM_CONTEXT = ${JSON.stringify(options.context)}
window.EXT_RUM_CONFIGURATION = ${formatConfiguration(options.extension.rumConfiguration, servers)}
</script>`
}
if (options.extension?.logsConfiguration) {
header += html`<script type="text/javascript">
window.LOGS_BUNDLE_URL = '${logsScriptUrl}'
window.LOGS_CONTEXT = ${JSON.stringify(options.context)}
window.EXT_LOGS_CONFIGURATION = ${formatConfiguration(options.extension.logsConfiguration, servers)}
</script>`
}
return header
}
type JsonIncompatibleValue = ((...args: any[]) => any) | RegExp
function isJsonIncompatibleValue(value: unknown): value is JsonIncompatibleValue {
return typeof value === 'function' || value instanceof RegExp
}
export function formatConfiguration(
initConfiguration: LogsInitConfiguration | RumInitConfiguration | DebuggerInitConfiguration,
servers: Servers
) {
const jsonIncompatibles = new Map<string, JsonIncompatibleValue>()
let result = JSON.stringify(
{
...initConfiguration,
proxy: servers.intake.origin,
remoteConfigurationProxy: `${servers.base.origin}/config`,
},
(_key, value) => {
if (isJsonIncompatibleValue(value)) {
const id = generateUUID()
jsonIncompatibles.set(id, value)
return id
}
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return value
}
)
result = result.replace('"LOCATION_ORIGIN"', 'location.origin')
for (const [id, value] of jsonIncompatibles) {
result = result.replace(`"${id}"`, String(value))
}
return result
}
export function createCrossOriginScriptUrls(servers: Servers, options: SetupOptions) {
return {
logsScriptUrl: `${servers.crossOrigin.origin}/datadog-logs.js`,
rumScriptUrl: `${servers.crossOrigin.origin}/${options.useRumSlim ? 'datadog-rum-slim.js' : 'datadog-rum.js'}`,
debuggerScriptUrl: `${servers.crossOrigin.origin}/datadog-debugger.js`,
}
}