-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathdesktop-agent.steps.ts
More file actions
473 lines (424 loc) · 16.7 KB
/
desktop-agent.steps.ts
File metadata and controls
473 lines (424 loc) · 16.7 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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import { After, DataTable, Given, Then, When } from '@cucumber/cucumber';
import { CustomWorld } from '../world';
import { doesRowMatch, handleResolve, setupGenericSteps } from '@finos/testing';
import { MockDocument } from '../support/MockDocument';
import { MockWindow } from '../support/MockWindow';
import { fdc3Ready, getAgent } from '../../src';
import {
DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX,
DesktopAgentDetails,
GetAgentLogLevels,
GetAgentParams,
LogLevel,
} from '@finos/fdc3-standard';
import { EMBED_URL, MockFDC3Server } from '../support/MockFDC3Server';
import { MockStorage } from '../support/MockStorage';
import { DesktopAgent, ImplementationMetadata } from '@finos/fdc3-standard';
import { clearAgentPromise } from '../../src/strategies/getAgent';
import expect from 'expect';
import { dummyInstanceDetails } from '../support/TestServerContext';
import { MockIFrame } from '../support/MockIFrame';
interface MockPageTransitionEvent extends Event {
persisted?: boolean;
}
setupGenericSteps();
//Change logging settings here when debugging test failures
export const loggingSettings: GetAgentLogLevels = {
connection: LogLevel.INFO,
proxy: LogLevel.INFO,
};
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns direct message response',
async function (this: CustomWorld, field: string, w: string) {
const mockWindow = handleResolve(w, this);
this.mockFDC3Server = new MockFDC3Server(mockWindow, false, this.mockContext);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns direct message response, but times out identity validation',
async function (this: CustomWorld, field: string, w: string) {
const mockWindow = handleResolve(w, this);
this.mockFDC3Server = new MockFDC3Server(mockWindow, false, this.mockContext, true, true);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns direct message response and uses default UI URLs',
async function (this: CustomWorld, field: string, w: string) {
const mockWindow = handleResolve(w, this);
this.mockFDC3Server = new MockFDC3Server(mockWindow, false, this.mockContext, true);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns direct message response and times out message exchanges',
async function (this: CustomWorld, field: string, w: string) {
const mockWindow = handleResolve(w, this);
this.mockFDC3Server = new MockFDC3Server(mockWindow, false, this.mockContext, true, false, true);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns direct message response, times out message exchanges and uses message exchange timeout {string} ms and app launch timeout {string} ms',
async function (this: CustomWorld, field: string, w: string, t1: string, t2: string) {
const mockWindow = handleResolve(w, this);
const messageExchangeTimeout: number = handleResolve(t1, this);
const appLaunchTimeout: number = handleResolve(t2, this);
this.mockFDC3Server = new MockFDC3Server(
mockWindow,
false,
this.mockContext,
true,
false,
true,
messageExchangeTimeout,
appLaunchTimeout
);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'Parent Window desktop {string} listens for postMessage events in {string}, returns iframe response',
async function (this: CustomWorld, field: string, w: string) {
const mockWindow = handleResolve(w, this);
this.mockFDC3Server = new MockFDC3Server(mockWindow, true, this.mockContext);
this.props[field] = this.mockFDC3Server;
this.mockContext.open(dummyInstanceDetails[0].appId);
this.mockContext.open(dummyInstanceDetails[1].appId);
}
);
Given(
'{string} is a function which opens an iframe for communications on {string}',
function (this: CustomWorld, fn: string, doc: string) {
this.props[fn] = () => {
this.mockContext.open(dummyInstanceDetails[0].appId);
const document = handleResolve(doc, this) as MockDocument;
const ifrm = document.createElement('iframe');
this.mockFDC3Server = new MockFDC3Server(ifrm as unknown as MockIFrame, false, this.mockContext);
ifrm.setAttribute('src', EMBED_URL);
document.body.appendChild(ifrm);
return ifrm;
};
}
);
Given(
'{string} is a function which opens an iframe for communications on {string} but times out identity validation',
function (this: CustomWorld, fn: string, doc: string) {
this.props[fn] = () => {
this.mockContext.open(dummyInstanceDetails[0].appId);
const document = handleResolve(doc, this) as MockDocument;
const ifrm = document.createElement('iframe');
this.mockFDC3Server = new MockFDC3Server(ifrm as unknown as MockIFrame, false, this.mockContext, true, true);
ifrm.setAttribute('src', EMBED_URL);
document.body.appendChild(ifrm);
return ifrm;
};
}
);
Given(
'{string} is a function which opens an iframe for communications on {string} and times out message exchanges',
function (this: CustomWorld, fn: string, doc: string) {
this.props[fn] = () => {
this.mockContext.open(dummyInstanceDetails[0].appId);
const document = handleResolve(doc, this) as MockDocument;
const ifrm = document.createElement('iframe');
this.mockFDC3Server = new MockFDC3Server(
ifrm as unknown as MockIFrame,
false,
this.mockContext,
false,
false,
true
);
ifrm.setAttribute('src', EMBED_URL);
document.body.appendChild(ifrm);
return ifrm;
};
}
);
Given(
'{string} is a function which opens an iframe for communications on {string}, times out message exchanges and uses message exchange timeout {string} ms and app launch timeout {string} ms',
function (this: CustomWorld, fn: string, doc: string, t1: string, t2: string) {
const messageExchangeTimeout: number = handleResolve(t1, this);
const appLaunchTimeout: number = handleResolve(t2, this);
this.props[fn] = () => {
this.mockContext.open(dummyInstanceDetails[0].appId);
const document = handleResolve(doc, this) as MockDocument;
const ifrm = document.createElement('iframe');
this.mockFDC3Server = new MockFDC3Server(
ifrm as unknown as MockIFrame,
false,
this.mockContext,
false,
false,
true,
messageExchangeTimeout,
appLaunchTimeout
);
ifrm.setAttribute('src', EMBED_URL);
document.body.appendChild(ifrm);
return ifrm;
};
}
);
Given('an existing app instance in {string}', async function (this: CustomWorld, field: string) {
const uuid = this.mockContext.open(dummyInstanceDetails[0].appId);
this.props[field] = uuid;
});
Given('A Dummy Desktop Agent in {string}', async function (this: CustomWorld, field: string) {
const notImplemented = () => {
throw new Error('Function not implemented.');
};
const da: DesktopAgent = {
async getInfo(): Promise<ImplementationMetadata> {
return {
fdc3Version: '2.0',
optionalFeatures: {
DesktopAgentBridging: false,
OriginatingAppMetadata: false,
UserChannelMembershipAPIs: false,
},
appMetadata: {
appId: 'cucumber-app',
instanceId: 'uuid-0',
},
provider: 'preload-provider',
};
},
open: notImplemented,
findIntent: notImplemented,
findIntentsByContext: notImplemented,
findInstances: notImplemented,
broadcast: notImplemented,
raiseIntent: notImplemented,
raiseIntentForContext: notImplemented,
addIntentListener: notImplemented,
addIntentListenerWithContext: notImplemented,
addContextListener: notImplemented,
addEventListener: notImplemented,
getUserChannels: notImplemented,
joinUserChannel: notImplemented,
getOrCreateChannel: notImplemented,
createPrivateChannel: notImplemented,
getCurrentChannel: notImplemented,
leaveCurrentChannel: notImplemented,
getAppMetadata: notImplemented,
getSystemChannels: notImplemented,
joinChannel: notImplemented,
};
this.props[field] = da;
this.props['result'] = null;
});
Given(
'`window.fdc3` is injected into the runtime with the value in {string}',
async function (this: CustomWorld, field: string) {
const object = handleResolve(field, this);
window.fdc3 = object;
}
);
Given(
'`window.fdc3` is injected into the runtime with the value in {string} and fdc3Ready is fired',
async function (this: CustomWorld, field: string) {
const object = handleResolve(field, this);
window.fdc3 = object;
window.dispatchEvent(new Event('fdc3Ready'));
}
);
When('I call getAgent for a promise result', function (this: CustomWorld) {
try {
const params: GetAgentParams = {
logLevels: loggingSettings,
};
this.props['result'] = getAgent(params);
} catch (error) {
this.props['result'] = error;
}
});
When('I call fdc3Ready for a promise result', function (this: CustomWorld) {
try {
this.props['result'] = fdc3Ready();
} catch (error) {
this.props['result'] = error;
}
});
After(function (this: CustomWorld) {
console.log(' Cleaning up test infrastructure');
clearAgentPromise();
MockDocument.shutdownAllDocuments();
});
When('I call getAgent for a promise result with the following options', function (this: CustomWorld, dt: DataTable) {
try {
const first = dt.hashes()[0];
const toArgs: GetAgentParams = Object.fromEntries(
Object.entries(first).map(([k, v]) => {
const val = handleResolve(v, this);
const val2 = isNaN(val) ? val : Number(val);
const val3 = val2 === 'true' ? true : val2 === 'false' ? false : val2;
return [k, val3];
})
);
//add logging settings to help with debug
toArgs.logLevels = loggingSettings;
this.props['result'] = getAgent(toArgs);
} catch (error) {
this.props['result'] = error;
}
});
Given(
'a parent window document in {string}, window in {string}, child window document in {string} and window in {string}',
async function (this: CustomWorld, pd: string, pw: string, cd: string, cw: string) {
//create the parent window
const mpw = new MockWindow('mockParentWindow', this, 'parentWin');
this.props[pw] = mpw;
// mock parent window document
this.props[pd] = new MockDocument('parentDoc', mpw);
// creates the mock app window
const mcw = new MockWindow('mockWindow', this, 'mocky');
this.props[cw] = mcw;
// mock app document
this.props[cd] = new MockDocument('childDoc', mcw);
//run tests from the perspective of the child window
globalThis.window = this.props[cw];
globalThis.document = this.props[cd];
// create parent relationship
mcw.parent = mpw;
//create child relationship (for attributing postMessage calls)
mpw.child = mcw;
// session storage (will be common between windows, which is ok as DA doesn't use this)
globalThis.sessionStorage = new MockStorage();
}
);
Given(
'SessionStorage contains instanceUuid {string}, appId {string} with identityUrl {string} and agentType {string}',
async function (this: CustomWorld, uuid: string, appId: string, identityUrl: string, agentType: string) {
const theUuid = handleResolve(uuid, this);
const theAppId = handleResolve(appId, this);
const theIdentityUrl = handleResolve(identityUrl, this);
const theAgentType = handleResolve(agentType, this);
const details: Record<string, DesktopAgentDetails> = {};
details[theIdentityUrl] = {
agentType: theAgentType,
instanceUuid: theUuid,
appId: theAppId,
instanceId: 'uuid-0',
identityUrl: theIdentityUrl,
actualUrl: theIdentityUrl,
};
globalThis.sessionStorage.setItem(DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky', JSON.stringify(details));
}
);
Given(
'SessionStorage contains instanceUuid {string}, appId {string} with identityUrl {string}, agentType {string} and agentUrl {string}',
async function (
this: CustomWorld,
uuid: string,
appId: string,
identityUrl: string,
agentType: string,
agentUrl: string
) {
const theUuid = handleResolve(uuid, this);
const theAppId = handleResolve(appId, this);
const theIdentityUrl = handleResolve(identityUrl, this);
const theAgentType = handleResolve(agentType, this);
const theAgentUrl = handleResolve(agentUrl, this);
const details: Record<string, DesktopAgentDetails> = {};
details[theIdentityUrl] = {
agentType: theAgentType,
instanceUuid: theUuid,
appId: theAppId,
instanceId: 'uuid-0',
identityUrl: theIdentityUrl,
actualUrl: theIdentityUrl,
agentUrl: theAgentUrl,
};
globalThis.sessionStorage.setItem(DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky', JSON.stringify(details));
}
);
Given(
'SessionStorage contains partial data with with identityUrl {string}, appId {string} and agentType {string}',
async function (this: CustomWorld, identityUrl: string, agentType: string, appId: string) {
const theIdentityUrl = handleResolve(identityUrl, this);
const theAgentType = handleResolve(agentType, this);
const theAppId = handleResolve(appId, this);
const partialDetails: Record<string, Partial<DesktopAgentDetails>> = {};
partialDetails[theIdentityUrl] = {
agentType: theAgentType,
appId: theAppId,
identityUrl: identityUrl,
};
globalThis.sessionStorage.setItem(
DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky',
JSON.stringify(partialDetails)
);
}
);
Given('SessionStorage contains corrupted data', async function (this: CustomWorld) {
const corruptedData = ['All your base are belong to us'];
globalThis.sessionStorage.setItem(DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky', JSON.stringify(corruptedData));
});
Given('SessionStorage is clear', async function () {
globalThis.sessionStorage.clear();
});
Then(
'SessionStorage should contain instanceUuid {string}, appId {string} with identityUrl {string}, agentType {string} and agentUrl {string}',
async function (
this: CustomWorld,
uuid: string,
appId: string,
identityUrl: string,
agentType: string,
agentUrl: string
) {
const theUuid = handleResolve(uuid, this);
const theAppId = handleResolve(appId, this);
const theIdentityUrl = handleResolve(identityUrl, this);
const theAgentType = handleResolve(agentType, this);
const theAgentUrl = handleResolve(agentUrl, this);
const value = globalThis.sessionStorage.getItem(DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky');
expect(value).toBeTruthy();
const theObject = JSON.parse(value!);
const details = theObject[theIdentityUrl];
expect(details).toBeTruthy();
expect(details.agentType).toEqual(theAgentType);
expect(details.agentUrl).toEqual(theAgentUrl);
expect(details.appId).toEqual(theAppId);
expect(details.instanceUuid).toEqual(theUuid);
}
);
Then(
'SessionStorage for identityUrl {string} should contain the following values',
function (this: CustomWorld, identityUrl: string, dt: DataTable) {
const theIdentityUrl = handleResolve(identityUrl, this);
const value = globalThis.sessionStorage.getItem(DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX + '-mocky');
expect(value).toBeTruthy();
const theObject = JSON.parse(value!);
const details = theObject[theIdentityUrl];
const table = dt.hashes();
expect(doesRowMatch(this, table[0], details)).toBeTruthy();
}
);
When(
'{string} pagehide occurs with persisted = {string}',
async function (this: CustomWorld, field: string, persisted: string) {
const window: MockWindow = handleResolve(field, this);
const isPersisted = handleResolve(persisted, this);
const transitionEvent: MockPageTransitionEvent = new Event('pagehide');
transitionEvent.persisted = isPersisted;
window.dispatchEvent(transitionEvent);
}
);
When('The Desktop Agent receives a WCP6Goodbye message', async function (this: CustomWorld) {
expect(this.mockFDC3Server?.hasReceivedGoodbye).toBeTruthy();
});