-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathdirective-context.spec.ts
398 lines (327 loc) · 12.8 KB
/
directive-context.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
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
/**
* External dependencies
*/
import type { Locator } from '@playwright/test';
/**
* Internal dependencies
*/
import { test, expect } from './fixtures';
const parseContent = async ( loc: Locator ) =>
JSON.parse( ( await loc.textContent() ) || '' );
test.describe( 'data-wp-context', () => {
test.beforeAll( async ( { interactivityUtils: utils } ) => {
await utils.activatePlugins();
await utils.addPostWithBlock( 'test/directive-context' );
} );
test.beforeEach( async ( { interactivityUtils: utils, page } ) => {
await page.goto( utils.getLink( 'test/directive-context' ) );
} );
test.afterAll( async ( { interactivityUtils: utils } ) => {
await utils.deactivatePlugins();
await utils.deleteAllPosts();
} );
test( 'is correctly initialized', async ( { page } ) => {
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext ).toMatchObject( {
prop1: 'parent',
prop2: 'parent',
obj: { prop4: 'parent', prop5: 'parent' },
array: [ 1, 2, 3 ],
} );
} );
test( 'is correctly extended (shallow)', async ( { page } ) => {
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext ).toMatchObject( {
prop1: 'parent',
prop2: 'child',
prop3: 'child',
obj: { prop5: 'child', prop6: 'child' },
array: [ 4, 5, 6 ],
} );
} );
test( "changes in inherited properties are reflected and don't leak down (child)", async ( {
page,
} ) => {
await page.getByTestId( 'child prop1' ).click();
await page.getByTestId( 'child obj.prop4' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.prop1 ).toBe( 'modifiedFromChild' );
expect( childContext.obj.prop4 ).toBe( 'modifiedFromChild' );
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.prop1 ).toBe( 'modifiedFromChild' );
expect( parentContext.obj.prop4 ).toBe( 'parent' );
} );
test( "changes in inherited properties are reflected and don't leak up (parent)", async ( {
page,
} ) => {
await page.getByTestId( 'parent prop1' ).click();
await page.getByTestId( 'parent obj.prop4' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.prop1 ).toBe( 'modifiedFromParent' );
expect( childContext.obj.prop4 ).toBeUndefined();
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.prop1 ).toBe( 'modifiedFromParent' );
expect( parentContext.obj.prop4 ).toBe( 'modifiedFromParent' );
} );
test( 'changes in shadowed properties do not leak (child)', async ( {
page,
} ) => {
await page.getByTestId( 'child prop2' ).click();
await page.getByTestId( 'child obj.prop5' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.prop2 ).toBe( 'modifiedFromChild' );
expect( childContext.obj.prop5 ).toBe( 'modifiedFromChild' );
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.prop2 ).toBe( 'parent' );
expect( parentContext.obj.prop5 ).toBe( 'parent' );
} );
test( 'changes in shadowed properties do not leak (parent)', async ( {
page,
} ) => {
await page.getByTestId( 'parent prop2' ).click();
await page.getByTestId( 'parent obj.prop5' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.prop2 ).toBe( 'child' );
expect( childContext.obj.prop5 ).toBe( 'child' );
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.prop2 ).toBe( 'modifiedFromParent' );
expect( parentContext.obj.prop5 ).toBe( 'modifiedFromParent' );
} );
test( 'new inherited properties update child contexts', async ( {
page,
} ) => {
const childContextBefore = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContextBefore.new ).toBeUndefined();
await page.getByTestId( 'parent new' ).click();
const childContextAfter = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContextAfter.new ).toBe( 'modifiedFromParent' );
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.new ).toBe( 'modifiedFromParent' );
} );
test( 'Array properties are shadowed', async ( { page } ) => {
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( parentContext.array ).toMatchObject( [ 1, 2, 3 ] );
expect( childContext.array ).toMatchObject( [ 4, 5, 6 ] );
} );
test( "overwritten objects don't inherit values (shallow)", async ( {
page,
} ) => {
await page.getByTestId( 'parent replace' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.obj.prop4 ).toBeUndefined();
expect( childContext.obj.prop5 ).toBe( 'child' );
expect( childContext.obj.prop6 ).toBe( 'child' );
expect( childContext.obj.overwritten ).toBeUndefined();
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.obj.prop4 ).toBeUndefined();
expect( parentContext.obj.prop5 ).toBeUndefined();
expect( parentContext.obj.prop6 ).toBeUndefined();
expect( parentContext.obj.overwritten ).toBe( true );
} );
test( 'overwritten objects do not inherit values', async ( { page } ) => {
await page.getByTestId( 'child replace' ).click();
const childContext = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContext.obj.prop4 ).toBeUndefined();
expect( childContext.obj.prop5 ).toBeUndefined();
expect( childContext.obj.prop6 ).toBeUndefined();
expect( childContext.obj.overwritten ).toBe( true );
const parentContext = await parseContent(
page.getByTestId( 'parent context' )
);
expect( parentContext.obj.prop4 ).toBe( 'parent' );
expect( parentContext.obj.prop5 ).toBe( 'parent' );
expect( parentContext.obj.prop6 ).toBeUndefined();
expect( parentContext.obj.overwritten ).toBeUndefined();
} );
test( 'can be accessed in other directives on the same element', async ( {
page,
} ) => {
const element = page.getByTestId( 'context & other directives' );
await expect( element ).toHaveText( 'Text 1' );
await expect( element ).toHaveAttribute( 'value', 'Text 1' );
await element.click();
await expect( element ).toHaveText( 'Text 2' );
await expect( element ).toHaveAttribute( 'value', 'Text 2' );
await element.click();
await expect( element ).toHaveText( 'Text 1' );
await expect( element ).toHaveAttribute( 'value', 'Text 1' );
} );
test( 'should preserve values on navigation', async ( { page } ) => {
const element = page.getByTestId( 'navigation text' );
await expect( element ).toHaveText( 'first page' );
await page.getByTestId( 'toggle text' ).click();
await expect( element ).toHaveText( 'changed dynamically' );
await page.getByTestId( 'navigate' ).click();
await expect( element ).toHaveText( 'changed dynamically' );
} );
test( 'should preserve the previous context values', async ( { page } ) => {
const element = page.getByTestId( 'navigation new text' );
await expect( element ).toHaveText( '' );
await page.getByTestId( 'add new text' ).click();
await expect( element ).toHaveText( 'some new text' );
await page.getByTestId( 'navigate' ).click();
await expect( element ).toHaveText( 'some new text' );
} );
test( 'should preserve values when navigating back or forward', async ( {
page,
} ) => {
const element = page.getByTestId( 'navigation text' );
await page.getByTestId( 'navigate' ).click();
await expect( element ).toHaveText( 'first page' );
await page.goBack();
await expect( element ).toHaveText( 'first page' );
await page.goForward();
await expect( element ).toHaveText( 'first page' );
} );
test( 'should inherit values on navigation', async ( { page } ) => {
const text = page.getByTestId( 'navigation inherited text' );
const text2 = page.getByTestId( 'navigation inherited text2' );
await expect( text ).toHaveText( 'first page' );
await expect( text2 ).toBeEmpty();
await page.getByTestId( 'toggle text' ).click();
await expect( text ).toHaveText( 'changed dynamically' );
await page.getByTestId( 'add text2' ).click();
await expect( text2 ).toHaveText( 'some new text' );
await page.getByTestId( 'navigate' ).click();
await expect( text ).toHaveText( 'changed dynamically' );
await expect( text2 ).toHaveText( 'some new text' );
await page.goBack();
await expect( text ).toHaveText( 'changed dynamically' );
await expect( text2 ).toHaveText( 'some new text' );
await page.goForward();
await expect( text ).toHaveText( 'changed dynamically' );
await expect( text2 ).toHaveText( 'some new text' );
} );
test( 'should maintain the same context reference on async actions', async ( {
page,
} ) => {
const element = page.getByTestId( 'navigation new text' );
await expect( element ).toHaveText( '' );
await page.getByTestId( 'async navigate' ).click();
await expect( element ).toHaveText( 'changed from async action' );
} );
test( 'should bail out if the context is not a default directive', async ( {
page,
} ) => {
/*
* This test is to ensure that the context directive is only applied to the
* default directive and not to any other directive.
*/
const defaultElement = page.getByTestId( 'default suffix context' );
await expect( defaultElement ).toHaveText( 'default' );
const element = page.getByTestId( 'non-default suffix context' );
await expect( element ).toHaveText( '' );
} );
test( 'references to objects are kept', async ( { page } ) => {
const selected = page.getByTestId( 'selected' );
const select1 = page.getByTestId( 'select 1' );
const select2 = page.getByTestId( 'select 2' );
await expect( selected ).toBeEmpty();
await select1.click();
await expect( selected ).toHaveText( 'Text 1' );
await select2.click();
await expect( selected ).toHaveText( 'Text 2' );
} );
test( 'should not subscribe to parent context props if those also exist in child', async ( {
page,
} ) => {
const counterParent = page.getByTestId( 'counter parent' );
const counterChild = page.getByTestId( 'counter child' );
const changes = page.getByTestId( 'counter changes' );
await expect( counterParent ).toHaveText( '0' );
await expect( counterChild ).toHaveText( '0' );
// The first render counts, so the changes counter starts at 1.
await expect( changes ).toHaveText( '1' );
await counterParent.click();
await expect( counterParent ).toHaveText( '1' );
await expect( counterChild ).toHaveText( '0' );
await expect( changes ).toHaveText( '1' );
await counterChild.click();
await expect( counterParent ).toHaveText( '1' );
await expect( counterChild ).toHaveText( '1' );
await expect( changes ).toHaveText( '2' );
} );
test( 'references to the same context object should be preserved', async ( {
page,
} ) => {
const isProxyPreserved = page.getByTestId( 'is proxy preserved' );
await expect( isProxyPreserved ).toHaveText( 'true' );
} );
test( 'references to copied context objects should be preserved', async ( {
page,
} ) => {
await page.getByTestId( 'child copy obj' ).click();
const isProxyPreservedOnCopy = page.getByTestId(
'is proxy preserved on copy'
);
await expect( isProxyPreservedOnCopy ).toHaveText( 'true' );
} );
test( 'objects referenced from the context inherit properties where they are originally defined ', async ( {
page,
} ) => {
await page.getByTestId( 'child copy obj' ).click();
const childContextBefore = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContextBefore.obj2.prop4 ).toBeUndefined();
expect( childContextBefore.obj2.prop5 ).toBe( 'child' );
expect( childContextBefore.obj2.prop6 ).toBe( 'child' );
await page.getByTestId( 'parent replace' ).click();
const childContextAfter = await parseContent(
page.getByTestId( 'child context' )
);
expect( childContextAfter.obj2.prop4 ).toBeUndefined();
expect( childContextAfter.obj2.prop5 ).toBe( 'child' );
expect( childContextAfter.obj2.prop6 ).toBe( 'child' );
expect( childContextAfter.obj2.overwritten ).toBeUndefined();
} );
test( 'properties from other namespaces defined in a parent context are inherited', async ( {
page,
} ) => {
const childProp = page
.getByTestId( 'inheritance from other namespaces' )
.getByTestId( 'child' );
const parentProp = page
.getByTestId( 'inheritance from other namespaces' )
.getByTestId( 'parent' );
await expect( childProp ).toHaveText( 'fromChildNs' );
await expect( parentProp ).toHaveText( 'fromParentNs' );
} );
} );