forked from OpenEnergyTools/scl-template-update
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscl-template-update.spec.ts
More file actions
572 lines (490 loc) · 18 KB
/
scl-template-update.spec.ts
File metadata and controls
572 lines (490 loc) · 18 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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
/* eslint-disable no-unused-expressions */
import { fixture, expect, html, waitUntil } from '@open-wc/testing';
import { restore, SinonSpy, spy } from 'sinon';
import { Insert, Remove } from '@openscd/oscd-api';
import {
extension,
lln0Selection,
mmxuExceptSelection,
mmxuSelection,
nsdSpeced,
customDataObjectInvalidCDC,
} from './scl-template-update.testfiles.js';
import NsdTemplateUpdated from './scl-template-update.js';
customElements.define('scl-template-update', NsdTemplateUpdated);
describe('NsdTemplateUpdater', () => {
let element: NsdTemplateUpdated;
beforeEach(async () => {
element = await fixture<NsdTemplateUpdated>(
html`<scl-template-update></scl-template-update>`
);
});
it('shows notification without loaded doc', () => {
expect(element.shadowRoot?.querySelector('h1')).to.exist;
expect(element.shadowRoot?.querySelector('tree-grid')).to.not.exist;
expect(
element.shadowRoot?.querySelector('oscd-fab[data-testid="update-fab"]')
).to.not.exist;
});
describe('given a nsd specced document', () => {
let listener: SinonSpy;
afterEach(restore);
beforeEach(async () => {
listener = spy();
element.addEventListener('oscd-edit-v2', listener);
element.doc = new DOMParser().parseFromString(
nsdSpeced,
'application/xml'
);
await element.updateComplete;
await new Promise(res => {
setTimeout(res, 200);
});
});
it('displays an action button', () =>
expect(element.shadowRoot?.querySelector('oscd-fab')).to.exist);
it('updates MMXU on action button click', async () => {
// Test the default 'update' behavior
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = mmxuSelection;
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.calledOnce;
const updateEdits = listener.args[0][0].detail.edit;
expect(updateEdits).to.have.length.greaterThan(0);
expect(listener.args[0][0].detail.title).to.equal(
'Update MMXU$oscd$_c53e78191fabefa3'
);
}).timeout(5000);
it('swaps MMXU when swap mode is configured', async () => {
localStorage.setItem('template-update-setting', 'swap');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = mmxuSelection;
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
const inserts = listener.args[0][0].detail.edit;
const removes = listener.args[1][0].detail.edit;
expect(inserts).to.have.lengthOf(5);
expect(removes).to.have.lengthOf(2);
expect(
((inserts[0] as Insert).node as Element).getAttribute('id')
).to.equal('MMXU$oscd$_b96484e663b92760');
expect(
((inserts[1] as Insert).node as Element).getAttribute('id')
).to.equal('Beh$oscd$_954939784529ca3d');
expect(
((inserts[2] as Insert).node as Element).getAttribute('id')
).to.equal('phsB$oscd$_65ee65af9248ae5d');
expect(
((inserts[3] as Insert).node as Element).getAttribute('id')
).to.equal('A$oscd$_ad714f2a7845e863');
expect(
((inserts[4] as Insert).node as Element).getAttribute('id')
).to.equal('stVal$oscd$_2ff6286b1710bcc1');
expect(
((removes[0] as Remove).node as Element).getAttribute('id')
).to.equal('MMXU$oscd$_c53e78191fabefa3');
expect(
((removes[1] as Remove).node as Element).getAttribute('id')
).to.equal('A$oscd$_41824603f63b26ac');
}).timeout(5000);
it('updates LLN0 on action button click', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'LLN0$oscd$_85c7ffbe25d80e63' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = lln0Selection; // change selection
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await new Promise(res => {
setTimeout(res, 200);
});
expect(listener).to.have.been.calledOnce;
const updateEdits = listener.args[0][0].detail.edit;
expect(updateEdits).to.have.length.greaterThan(0);
// Verify the edit has the correct title
expect(listener.args[0][0].detail.title).to.equal(
'Update LLN0$oscd$_85c7ffbe25d80e63'
);
}).timeout(5000);
it('does not update with same selection', async () => {
const event = {
detail: { id: 'LLN0$oscd$_85c7ffbe25d80e63' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await new Promise(res => {
setTimeout(res, 200);
});
expect(listener).to.not.have.been.called;
});
it('shows the data loss dialog if (part of) selection is not in tree', async () => {
element.selectedLNodeType = element.doc?.querySelector('LNodeType')!;
element.treeUI.tree = { foo: {} };
element.treeUI.selection = { foo: {}, bar: {} };
element.treeUI.requestUpdate = () => {};
element.nsdSelection = { foo: {} };
(element as any).handleUpdateTemplate();
await waitUntil(() => element.choiceDialog?.open);
expect(element.choiceDialog?.open).to.be.true;
expect(element.choiceDialog).shadowDom.to.equalSnapshot();
});
});
describe('given a non nsd specced document', () => {
let listener: SinonSpy;
afterEach(restore);
beforeEach(async () => {
listener = spy();
element.addEventListener('oscd-edit-v2', listener);
element.doc = new DOMParser().parseFromString(
extension,
'application/xml'
);
await element.updateComplete;
await new Promise(res => {
setTimeout(res, 200);
});
});
it('does not load non NSD ln classes', async () => {
const event = { detail: { id: 'invalidLnClass' } } as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 50);
});
expect(JSON.stringify(element.treeUI.tree)).to.equal('{}');
expect(element.warningDialog?.getAttribute('open')).to.not.be.null;
});
it('notifies with LNodeType is referenced', async () => {
const event = {
detail: { id: 'LLN0$oscd$_85c7ffbe25d80e63' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 200);
});
expect(element.warningDialog?.getAttribute('open')).to.not.be.null;
expect(
element.warningDialog?.querySelector('form')?.textContent
).to.include(
`The selected logical node type is referenced. This plugin should be used during specification only.`
);
});
it('updates MMXU on action button click', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = mmxuExceptSelection;
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
(
element.choiceDialog?.querySelector('.button.proceed') as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.called;
const firstCall = listener.args[0][0].detail;
expect(firstCall.edit).to.have.length.greaterThan(0);
expect(firstCall.title).to.equal('Update MMXU$oscd$_c53e78191fabefa3');
}).timeout(5000);
it('updates the selected LNodeType when the description is changed', async () => {
const event = {
detail: { id: 'LLN0$oscd$_85c7ffbe25d80e63' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.lnodeTypeDesc.value = 'New Description';
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.called;
});
it('does not delete LNodeType when clicking update twice with same selection', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = mmxuSelection;
await element.updateComplete;
// First update
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.calledOnce;
// Second update with same selection should not delete the LNodeType
listener.resetHistory();
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
// Verify LNodeType still exists in document
const lNodeType = element.doc?.querySelector(
'LNodeType[id="MMXU$oscd$_c53e78191fabefa3"]'
);
expect(lNodeType).to.exist;
}).timeout(5000);
it('successfully removes data objects from LNodeType', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
// Remove the 'A' data object by not including it in selection
const selectionWithoutA = {
Beh: {
q: {},
stVal: {
blocked: {},
on: {},
'test/blocked': {},
},
t: {},
},
};
element.treeUI.selection = selectionWithoutA;
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.called;
const updateEdits = listener.args[0][0].detail.edit;
expect(updateEdits).to.have.length.greaterThan(0);
// Verify that the new LNodeType node should not contain 'A' but should contain 'Beh'
const lNodeTypeInsert = updateEdits.find(
(e: any) => 'node' in e && e.node.tagName === 'LNodeType'
);
expect(lNodeTypeInsert).to.exist;
const newLNodeType = lNodeTypeInsert.node as Element;
expect(newLNodeType.querySelector('DO[name="A"]')).to.not.exist;
expect(newLNodeType.querySelector('DO[name="Beh"]')).to.exist;
}).timeout(5000);
it('updates description when making selection changes', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
// Change both selection and description
element.treeUI.selection = mmxuSelection;
element.lnodeTypeDesc.value = 'Updated with new DOs';
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.called;
// Verify that description should appear either in the inserted LNodeType node
// or as an attribute update, depending on whether the selection changed
const edits = listener.args[0][0].detail.edit;
const hasDescUpdate = edits.some(
(e: any) =>
('attributes' in e && e.attributes.desc === 'Updated with new DOs') ||
('node' in e &&
(e.node as Element).tagName === 'LNodeType' &&
(e.node as Element).getAttribute('desc') === 'Updated with new DOs')
);
expect(hasDescUpdate).to.be.true;
}).timeout(5000);
it('clears description when set to empty string', async () => {
localStorage.removeItem('template-update-setting');
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
// First add a description
element.lnodeTypeDesc.value = 'Test Description';
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
// Simulate the edit being applied to the document (normally done by an external editor)
element.selectedLNodeType?.setAttribute('desc', 'Test Description');
listener.resetHistory();
// Now clear the description
element.lnodeTypeDesc.value = '';
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(listener).to.have.been.called;
// Verify that description should be cleared, either as a null attribute update
// or the inserted LNodeType node should lack the desc attribute
const edits = listener.args[0][0].detail.edit;
const hasDescClear = edits.some(
(e: any) =>
('attributes' in e && e.attributes.desc === null) ||
('node' in e &&
(e.node as Element).tagName === 'LNodeType' &&
!(e.node as Element).hasAttribute('desc'))
);
expect(hasDescClear).to.be.true;
}).timeout(5000);
});
describe('given a document with unsupported CDC', () => {
afterEach(restore);
beforeEach(async () => {
element.addEventListener('oscd-edit-v2', () => {});
element.doc = new DOMParser().parseFromString(
customDataObjectInvalidCDC,
'application/xml'
);
await element.updateComplete;
await new Promise(res => {
setTimeout(res, 200);
});
const treeUI = element.shadowRoot?.querySelector('tree-grid') as any;
if (treeUI) {
treeUI.tree = {};
treeUI.requestUpdate = () => {};
}
});
it('shows a warning dialog when a lnode type has user defined DOs with unsupported CDC', async () => {
const event = {
detail: { id: 'MMXU$oscd$_c53e78191fabefa3' },
} as CustomEvent;
element.onLNodeTypeSelect(event);
await new Promise(res => {
setTimeout(res, 0);
});
element.treeUI.selection = mmxuSelection;
await element.updateComplete;
(
element.shadowRoot?.querySelector(
'oscd-fab[data-testid="update-fab"]'
) as HTMLElement
).click();
await element.updateComplete;
expect(element.warningDialog?.getAttribute('open')).to.not.be.null;
expect(
element.warningDialog?.querySelector('form')?.textContent
).to.include(
'The selected logical node type contains user-defined data objects with unsupported CDCs.'
);
});
it('adds a data object to the tree when form is valid', async () => {
const dialog = element.shadowRoot?.querySelector(
'add-data-object-dialog'
) as HTMLElement & { show: () => void };
dialog.show();
const cdcSelect = dialog.shadowRoot?.querySelector(
'#cdc-type'
) as HTMLSelectElement;
const doNameField = dialog.shadowRoot?.querySelector(
'#do-name'
) as HTMLInputElement;
const namespaceField = dialog.shadowRoot?.querySelector(
'#namespace'
) as HTMLInputElement;
cdcSelect.value = 'WYE';
doNameField.value = 'TestDO';
namespaceField.value = 'CustomNamespace';
cdcSelect.dispatchEvent(new Event('input', { bubbles: true }));
doNameField.dispatchEvent(new Event('input', { bubbles: true }));
// Submit the form
const form = dialog.shadowRoot?.querySelector('form')!;
form.dispatchEvent(
new Event('submit', { bubbles: true, cancelable: true })
);
await element.updateComplete;
expect(element.treeUI.tree).to.have.property('TestDO');
expect(element.treeUI.tree.TestDO).to.include({
type: 'WYE',
tagName: 'DataObject',
descID: '',
presCond: 'O',
});
});
it('does not add a data object if form is invalid', async () => {
const dialog = element.shadowRoot?.querySelector(
'add-data-object-dialog'
) as HTMLElement & { show: () => void };
dialog.show();
await element.updateComplete;
const form = dialog.shadowRoot?.querySelector('form')!;
form.dispatchEvent(
new Event('submit', { bubbles: true, cancelable: true })
);
await element.updateComplete;
expect(element.treeUI.tree).to.not.have.property('TestDO');
});
});
});