-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-morph.js
272 lines (239 loc) · 9.45 KB
/
test-morph.js
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
/* eslint-disable max-statements, no-shadow */
const tape = require('tape');
const html = require('nanohtml');
module.exports = function abstractMorph(morph) {
tape('abstract morph', (t) => {
t.test('root level', (t) => {
t.test('should replace a node', (t) => {
t.plan(1);
const a = html`<p>hello world</p>`;
const b = html`<div>hello world</div>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should morph a text node', (t) => {
t.plan(1);
const a = html`<p>hello world</p>`;
const b = html`<p>hello you</p>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should morph a node with namespaced attribute', (t) => {
t.plan(1);
const a = html`<svg><use xlink:href="#heybooboo"></use></svg>`;
const b = html`<svg><use xlink:href="#boobear"></use></svg>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should ignore if node is same', (t) => {
t.plan(1);
const a = html`<p>hello world</p>`;
const expected = a.outerHTML;
const res = morph(a, a);
t.equal(res.outerHTML, expected, 'result was expected');
});
});
t.test('nested', (t) => {
t.test('should replace a node', (t) => {
t.plan(1);
const a = html`<main><p>hello world</p></main>`;
const b = html`<main><div>hello world</div></main>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should replace a text node', (t) => {
t.plan(1);
const a = html`<main><p>hello world</p></main>`;
const b = html`<main><p>hello you</p></main>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should replace a node', (t) => {
t.plan(1);
const a = html`<main><p>hello world</p></main>`;
const res = morph(a, a);
const expected = a.outerHTML;
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should append a node', (t) => {
t.plan(1);
const a = html`<main></main>`;
const b = html`<main><p>hello you</p></main>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should remove a node', (t) => {
t.plan(1);
const a = html`<main><p>hello you</p></main>`;
const b = html`<main></main>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
});
t.test('values', (t) => {
t.test(
'if new tree has no value and old tree does, remove value',
(t) => {
t.plan(4);
let a = html`<input type="text" value="howdy" />`;
let b = html`<input type="text" />`;
let res = morph(a, b);
t.equal(res.getAttribute('value'), null);
t.equal(res.value, '');
a = html`<input type="text" value="howdy" />`;
b = html`<input type="text" value=${null} />`;
res = morph(a, b);
t.equal(res.getAttribute('value'), null);
t.equal(res.value, '');
},
);
t.test(
'if new tree has value and old tree does too, set value from new tree',
(t) => {
t.plan(4);
let a = html`<input type="text" value="howdy" />`;
let b = html`<input type="text" value="hi" />`;
let res = morph(a, b);
t.equal(res.value, 'hi');
a = html`<input type="text"/>`;
a.value = 'howdy';
b = html`<input type="text"/>`;
b.value = 'hi';
res = morph(a, b);
t.equal(res.value, 'hi');
a = html`<input type="text" value="howdy"/>`;
b = html`<input type="text"/>`;
b.value = 'hi';
res = morph(a, b);
t.equal(res.value, 'hi');
a = html`<input type="text"/>`;
a.value = 'howdy';
b = html`<input type="text" value="hi"/>`;
res = morph(a, b);
t.equal(res.value, 'hi');
},
);
});
t.test('isSameNode', (t) => {
t.test('should return a if true', (t) => {
t.plan(1);
const a = html`<div>YOLO</div>`;
const b = html`<div>FOMO</div>`;
b.isSameNode = (/* el */) => true;
const res = morph(a, b);
t.equal(res.childNodes[0].data, 'YOLO');
});
t.test('should return b if false', (t) => {
t.plan(1);
const a = html`<div>YOLO</div>`;
const b = html`<div>FOMO</div>`;
b.isSameNode = (/* el */) => false;
const res = morph(a, b);
t.equal(res.childNodes[0].data, 'FOMO');
});
});
t.test('lists', (t) => {
t.test('should append nodes', (t) => {
t.plan(1);
const a = html`<ul></ul>`;
const b = html`<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should remove nodes', (t) => {
t.plan(1);
const a = html`<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>`;
const b = html`<ul></ul>`;
const res = morph(a, b);
const expected = b.outerHTML;
t.equal(res.outerHTML, expected, 'result was expected');
});
});
t.test('selectables', (t) => {
t.test('should append nodes', (t) => {
t.plan(1);
const a = html`<select></select>`;
const b = html`<select><option>1</option><option>2</option><option>3</option><option>4</option></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should append nodes (including optgroups)', (t) => {
t.plan(1);
const a = html`<select></select>`;
const b = html`<select><optgroup><option>1</option><option>2</option></optgroup><option>3</option><option>4</option></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should remove nodes', (t) => {
t.plan(1);
const a = html`<select><option>1</option><option>2</option><option>3</option><option>4</option></select>`;
const b = html`<select></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should remove nodes (including optgroups)', (t) => {
t.plan(1);
const a = html`<select><optgroup><option>1</option><option>2</option></optgroup><option>3</option><option>4</option></select>`;
const b = html`<select></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should add selected', (t) => {
t.plan(1);
const a = html`<select><option>1</option><option>2</option></select>`;
const b = html`<select><option>1</option><option selected>2</option></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should add selected (xhtml)', (t) => {
t.plan(1);
const a = html`<select><option>1</option><option>2</option></select>`;
const b = html`<select><option>1</option><option selected="selected">2</option></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should switch selected', (t) => {
t.plan(1);
const a = html`<select><option selected="selected">1</option><option>2</option></select>`;
const b = html`<select><option>1</option><option selected="selected">2</option></select>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
});
t.test('should replace nodes', (t) => {
t.plan(1);
const a = html`<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>`;
const b = html`<ul><div>1</div><li>2</li><p>3</p><li>4</li><li>5</li></ul>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
});
t.test('should replace nodes after multiple iterations', (t) => {
t.plan(2);
const a = html`<ul></ul>`;
const b = html`<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>`;
const expected = b.outerHTML;
const res = morph(a, b);
t.equal(res.outerHTML, expected, 'result was expected');
const x = html`<ul><div>1</div><li>2</li><p>3</p><li>4</li><li>5</li></ul>`;
const expected2 = x.outerHTML;
const zzz = morph(a, x);
t.equal(zzz.outerHTML, expected2, 'result was expected');
});
});
};