summaryrefslogtreecommitdiffstats
path: root/remote/marionette/test/xpcshell/test_json.js
blob: f606681a8eee47244bef1c6de97f8229d260779c (plain)
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
const { json, getKnownElement, getKnownShadowRoot } =
  ChromeUtils.importESModule("chrome://remote/content/marionette/json.sys.mjs");
const { NodeCache } = ChromeUtils.importESModule(
  "chrome://remote/content/shared/webdriver/NodeCache.sys.mjs"
);
const { ShadowRoot, WebElement, WebReference } = ChromeUtils.importESModule(
  "chrome://remote/content/marionette/web-reference.sys.mjs"
);

const MemoryReporter = Cc["@mozilla.org/memory-reporter-manager;1"].getService(
  Ci.nsIMemoryReporterManager
);

function setupTest() {
  const browser = Services.appShell.createWindowlessBrowser(false);
  const nodeCache = new NodeCache();

  const videoEl = browser.document.createElement("video");
  browser.document.body.appendChild(videoEl);

  const svgEl = browser.document.createElementNS(
    "http://www.w3.org/2000/svg",
    "rect"
  );
  browser.document.body.appendChild(svgEl);

  const shadowRoot = videoEl.openOrClosedShadowRoot;

  const iframeEl = browser.document.createElement("iframe");
  browser.document.body.appendChild(iframeEl);
  const childEl = iframeEl.contentDocument.createElement("div");

  return {
    browser,
    browsingContext: browser.browsingContext,
    nodeCache,
    childEl,
    iframeEl,
    seenNodeIds: new Map(),
    shadowRoot,
    svgEl,
    videoEl,
  };
}

function assert_cloned_value(value, clonedValue, nodeCache, seenNodes = []) {
  const { seenNodeIds, serializedValue } = json.clone(value, nodeCache);

  deepEqual(serializedValue, clonedValue);
  deepEqual([...seenNodeIds.values()], seenNodes);
}

add_task(function test_clone_generalTypes() {
  const { nodeCache } = setupTest();

  // null
  assert_cloned_value(undefined, null, nodeCache);
  assert_cloned_value(null, null, nodeCache);

  // primitives
  assert_cloned_value(true, true, nodeCache);
  assert_cloned_value(42, 42, nodeCache);
  assert_cloned_value("foo", "foo", nodeCache);

  // toJSON
  assert_cloned_value(
    {
      toJSON() {
        return "foo";
      },
    },
    "foo",
    nodeCache
  );
});

add_task(function test_clone_ShadowRoot() {
  const { nodeCache, seenNodeIds, shadowRoot } = setupTest();

  const shadowRootRef = nodeCache.getOrCreateNodeReference(
    shadowRoot,
    seenNodeIds
  );
  assert_cloned_value(
    shadowRoot,
    WebReference.from(shadowRoot, shadowRootRef).toJSON(),
    nodeCache,
    seenNodeIds
  );
});

add_task(function test_clone_WebElement() {
  const { videoEl, nodeCache, seenNodeIds, svgEl } = setupTest();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  assert_cloned_value(
    videoEl,
    WebReference.from(videoEl, videoElRef).toJSON(),
    nodeCache,
    seenNodeIds
  );

  // Check an element with a different namespace
  const svgElRef = nodeCache.getOrCreateNodeReference(svgEl, seenNodeIds);
  assert_cloned_value(
    svgEl,
    WebReference.from(svgEl, svgElRef).toJSON(),
    nodeCache,
    seenNodeIds
  );
});

add_task(function test_clone_Sequences() {
  const { videoEl, nodeCache, seenNodeIds } = setupTest();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);

  const input = [
    null,
    true,
    [42],
    videoEl,
    {
      toJSON() {
        return "foo";
      },
    },
    { bar: "baz" },
  ];

  assert_cloned_value(
    input,
    [
      null,
      true,
      [42],
      { [WebElement.Identifier]: videoElRef },
      "foo",
      { bar: "baz" },
    ],
    nodeCache,
    seenNodeIds
  );
});

add_task(function test_clone_objects() {
  const { videoEl, nodeCache, seenNodeIds } = setupTest();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);

  const input = {
    null: null,
    boolean: true,
    array: [42],
    element: videoEl,
    toJSON: {
      toJSON() {
        return "foo";
      },
    },
    object: { bar: "baz" },
  };

  assert_cloned_value(
    input,
    {
      null: null,
      boolean: true,
      array: [42],
      element: { [WebElement.Identifier]: videoElRef },
      toJSON: "foo",
      object: { bar: "baz" },
    },
    nodeCache,
    seenNodeIds
  );
});

add_task(function test_clone_сyclicReference() {
  const { nodeCache } = setupTest();

  // object
  Assert.throws(() => {
    const obj = {};
    obj.reference = obj;
    json.clone(obj, nodeCache);
  }, /JavaScriptError/);

  // array
  Assert.throws(() => {
    const array = [];
    array.push(array);
    json.clone(array, nodeCache);
  }, /JavaScriptError/);

  // array in object
  Assert.throws(() => {
    const array = [];
    array.push(array);
    json.clone({ array }, nodeCache);
  }, /JavaScriptError/);

  // object in array
  Assert.throws(() => {
    const obj = {};
    obj.reference = obj;
    json.clone([obj], nodeCache);
  }, /JavaScriptError/);
});

add_task(function test_deserialize_generalTypes() {
  const { browsingContext, nodeCache } = setupTest();

  // null
  equal(json.deserialize(undefined, nodeCache, browsingContext), undefined);
  equal(json.deserialize(null, nodeCache, browsingContext), null);

  // primitives
  equal(json.deserialize(true, nodeCache, browsingContext), true);
  equal(json.deserialize(42, nodeCache, browsingContext), 42);
  equal(json.deserialize("foo", nodeCache, browsingContext), "foo");
});

add_task(function test_deserialize_ShadowRoot() {
  const { browsingContext, nodeCache, seenNodeIds, shadowRoot } = setupTest();
  const seenNodes = new Set();

  // Fails to resolve for unknown elements
  const unknownShadowRootId = { [ShadowRoot.Identifier]: "foo" };
  Assert.throws(() => {
    json.deserialize(
      unknownShadowRootId,
      nodeCache,
      browsingContext,
      seenNodes
    );
  }, /NoSuchShadowRootError/);

  const shadowRootRef = nodeCache.getOrCreateNodeReference(
    shadowRoot,
    seenNodeIds
  );
  const shadowRootEl = { [ShadowRoot.Identifier]: shadowRootRef };

  // Fails to resolve for missing window reference
  Assert.throws(() => json.deserialize(shadowRootEl, nodeCache), /TypeError/);

  // Previously seen element is associated with original web element reference
  seenNodes.add(shadowRootRef);
  const root = json.deserialize(
    shadowRootEl,
    nodeCache,
    browsingContext,
    seenNodes
  );
  deepEqual(root, shadowRoot);
  deepEqual(root, nodeCache.getNode(browsingContext, shadowRootRef));
});

add_task(function test_deserialize_WebElement() {
  const { browser, browsingContext, videoEl, nodeCache, seenNodeIds } =
    setupTest();
  const seenNodes = new Set();

  // Fails to resolve for unknown elements
  const unknownWebElId = { [WebElement.Identifier]: "foo" };
  Assert.throws(() => {
    json.deserialize(unknownWebElId, nodeCache, browsingContext, seenNodes);
  }, /NoSuchElementError/);

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  const htmlWebEl = { [WebElement.Identifier]: videoElRef };

  // Fails to resolve for missing window reference
  Assert.throws(() => json.deserialize(htmlWebEl, nodeCache), /TypeError/);

  // Previously seen element is associated with original web element reference
  seenNodes.add(videoElRef);
  const el = json.deserialize(htmlWebEl, nodeCache, browsingContext, seenNodes);
  deepEqual(el, videoEl);
  deepEqual(el, nodeCache.getNode(browser.browsingContext, videoElRef));
});

add_task(function test_deserialize_Sequences() {
  const { browsingContext, videoEl, nodeCache, seenNodeIds } = setupTest();
  const seenNodes = new Set();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  seenNodes.add(videoElRef);

  const input = [
    null,
    true,
    [42],
    { [WebElement.Identifier]: videoElRef },
    { bar: "baz" },
  ];

  const actual = json.deserialize(input, nodeCache, browsingContext, seenNodes);

  equal(actual[0], null);
  equal(actual[1], true);
  deepEqual(actual[2], [42]);
  deepEqual(actual[3], videoEl);
  deepEqual(actual[4], { bar: "baz" });
});

add_task(function test_deserialize_objects() {
  const { browsingContext, videoEl, nodeCache, seenNodeIds } = setupTest();
  const seenNodes = new Set();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  seenNodes.add(videoElRef);

  const input = {
    null: null,
    boolean: true,
    array: [42],
    element: { [WebElement.Identifier]: videoElRef },
    object: { bar: "baz" },
  };

  const actual = json.deserialize(input, nodeCache, browsingContext, seenNodes);

  equal(actual.null, null);
  equal(actual.boolean, true);
  deepEqual(actual.array, [42]);
  deepEqual(actual.element, videoEl);
  deepEqual(actual.object, { bar: "baz" });

  nodeCache.clear({ all: true });
});

add_task(async function test_getKnownElement() {
  const { browser, nodeCache, seenNodeIds, shadowRoot, videoEl } = setupTest();
  const seenNodes = new Set();

  // Unknown element reference
  Assert.throws(() => {
    getKnownElement(browser.browsingContext, "foo", nodeCache, seenNodes);
  }, /NoSuchElementError/);

  // With a ShadowRoot reference
  const shadowRootRef = nodeCache.getOrCreateNodeReference(
    shadowRoot,
    seenNodeIds
  );
  seenNodes.add(shadowRootRef);

  Assert.throws(() => {
    getKnownElement(
      browser.browsingContext,
      shadowRootRef,
      nodeCache,
      seenNodes
    );
  }, /NoSuchElementError/);

  let detachedEl = browser.document.createElement("div");
  const detachedElRef = nodeCache.getOrCreateNodeReference(
    detachedEl,
    seenNodeIds
  );
  seenNodes.add(detachedElRef);

  // Element not connected to the DOM
  Assert.throws(() => {
    getKnownElement(
      browser.browsingContext,
      detachedElRef,
      nodeCache,
      seenNodes
    );
  }, /StaleElementReferenceError/);

  // Element garbage collected
  detachedEl = null;

  await new Promise(resolve => MemoryReporter.minimizeMemoryUsage(resolve));
  Assert.throws(() => {
    getKnownElement(
      browser.browsingContext,
      detachedElRef,
      nodeCache,
      seenNodes
    );
  }, /StaleElementReferenceError/);

  // Known element reference
  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  seenNodes.add(videoElRef);

  equal(
    getKnownElement(browser.browsingContext, videoElRef, nodeCache, seenNodes),
    videoEl
  );
});

add_task(async function test_getKnownShadowRoot() {
  const { browser, nodeCache, seenNodeIds, shadowRoot, videoEl } = setupTest();
  const seenNodes = new Set();

  const videoElRef = nodeCache.getOrCreateNodeReference(videoEl, seenNodeIds);
  seenNodes.add(videoElRef);

  // Unknown ShadowRoot reference
  Assert.throws(() => {
    getKnownShadowRoot(browser.browsingContext, "foo", nodeCache, seenNodes);
  }, /NoSuchShadowRootError/);

  // With a videoElement reference
  Assert.throws(() => {
    getKnownShadowRoot(
      browser.browsingContext,
      videoElRef,
      nodeCache,
      seenNodes
    );
  }, /NoSuchShadowRootError/);

  // Known ShadowRoot reference
  const shadowRootRef = nodeCache.getOrCreateNodeReference(
    shadowRoot,
    seenNodeIds
  );
  seenNodes.add(shadowRootRef);

  equal(
    getKnownShadowRoot(
      browser.browsingContext,
      shadowRootRef,
      nodeCache,
      seenNodes
    ),
    shadowRoot
  );

  // Detached ShadowRoot host
  let el = browser.document.createElement("div");
  let detachedShadowRoot = el.attachShadow({ mode: "open" });
  detachedShadowRoot.innerHTML = "<input></input>";

  const detachedShadowRootRef = nodeCache.getOrCreateNodeReference(
    detachedShadowRoot,
    seenNodeIds
  );
  seenNodes.add(detachedShadowRootRef);

  // ... not connected to the DOM
  Assert.throws(() => {
    getKnownShadowRoot(
      browser.browsingContext,
      detachedShadowRootRef,
      nodeCache,
      seenNodes
    );
  }, /DetachedShadowRootError/);

  // ... host and shadow root garbage collected
  el = null;
  detachedShadowRoot = null;

  await new Promise(resolve => MemoryReporter.minimizeMemoryUsage(resolve));
  Assert.throws(() => {
    getKnownShadowRoot(
      browser.browsingContext,
      detachedShadowRootRef,
      nodeCache,
      seenNodes
    );
  }, /DetachedShadowRootError/);
});