-
Notifications
You must be signed in to change notification settings - Fork 8
/
open-scd.spec.ts
200 lines (158 loc) · 5.82 KB
/
open-scd.spec.ts
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
import { elementUpdated, expect } from '@open-wc/testing';
import './open-scd.js';
import type { OpenSCD } from './open-scd.js';
import { newEditEvent, newOpenEvent } from './foundation.js';
function isOscdPlugin(tag: string): boolean {
return tag.toLocaleLowerCase().startsWith('oscd-p');
}
const doc = new DOMParser().parseFromString(
`<testdoc></testdoc>`,
'application/xml'
);
let editor: OpenSCD;
beforeEach(() => {
editor = document.createElement('open-scd');
document.body.prepend(editor);
});
afterEach(() => {
editor.remove();
});
describe('with editor plugins loaded', () => {
beforeEach(async () => {
editor.plugins = {
menu: [],
editor: [
{
name: 'Test Editor Plugin',
translations: { de: 'Test Editor Erweiterung' },
src: 'data:text/javascript;charset=utf-8,export%20default%20class%20TestEditorPlugin%20extends%20HTMLElement%20%7B%0D%0A%20%20constructor%20%28%29%20%7B%20super%28%29%3B%20this.innerHTML%20%3D%20%60%3Cp%3ETest%20Editor%20Plugin%3C%2Fp%3E%60%3B%20%7D%0D%0A%7D',
icon: 'edit',
active: true,
requireDoc: false,
},
],
};
await editor.updateComplete;
});
it('passes attribute locale', async () => {
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin?.tagName).to.exist.and.to.satisfy(isOscdPlugin);
});
it('passes attribute docName', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin?.tagName).to.exist.and.to.satisfy(isOscdPlugin);
expect(plugin).to.have.property('docName', 'test.xml');
});
it('passes property doc', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('docs');
});
it('passes property editCount', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('editCount', 0);
});
it('updated passed editCount property on edit events', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
editor.dispatchEvent(
newEditEvent({
element: doc.querySelector('testdoc')!,
attributes: { name: 'someName' },
})
);
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('editCount', 1);
});
});
describe('with menu plugins loaded', () => {
beforeEach(async () => {
editor.plugins = {
menu: [
{
name: 'Test Menu Plugin',
translations: { de: 'Test Menü Erweiterung' },
src: 'data:text/javascript;charset=utf-8,export%20default%20class%20TestPlugin%20extends%20HTMLElement%20%7B%0D%0A%20%20async%20run%28%29%20%7B%0D%0A%20%20%20%20return%20false%3B%0D%0A%20%20%7D%0D%0A%7D',
icon: 'android',
active: true,
requireDoc: true,
},
],
};
await editor.updateComplete;
});
it('passes attribute locale', async () => {
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin?.tagName).to.exist.and.to.satisfy(isOscdPlugin);
expect(plugin).to.have.property('locale', 'en');
});
it('passes attribute docName', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin?.tagName).to.exist.and.to.satisfy(isOscdPlugin);
expect(plugin).to.have.property('docName', 'test.xml');
});
it('passes property doc', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('docs');
});
it('passes property editCount', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('editCount', 0);
});
it('updated passed editCount property on edit events', async () => {
editor.dispatchEvent(newOpenEvent(doc, 'test.xml'));
await editor.updateComplete;
editor.dispatchEvent(
newEditEvent({
element: doc.querySelector('testdoc')!,
attributes: { name: 'someName' },
})
);
await editor.updateComplete;
const plugin: Element = Array.from(
editor.shadowRoot?.querySelectorAll('*') || []
).find(e => isOscdPlugin(e.tagName))!;
await elementUpdated(plugin);
expect(plugin).to.have.property('editCount', 1);
});
});