summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_456342.js
blob: e7f1c96e34d6a6e2c6b862a1bf59ec0b5b447d7c (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

addCoopTask(
  "browser_456342_sample.xhtml",
  test_restore_nonstandard_input_values,
  HTTPSROOT
);
addNonCoopTask(
  "browser_456342_sample.xhtml",
  test_restore_nonstandard_input_values,
  ROOT
);
addNonCoopTask(
  "browser_456342_sample.xhtml",
  test_restore_nonstandard_input_values,
  HTTPROOT
);
addNonCoopTask(
  "browser_456342_sample.xhtml",
  test_restore_nonstandard_input_values,
  HTTPSROOT
);

const EXPECTED_IDS = new Set(["searchTerm"]);

const EXPECTED_XPATHS = new Set([
  "/xhtml:html/xhtml:body/xhtml:form/xhtml:p[2]/xhtml:input",
  "/xhtml:html/xhtml:body/xhtml:form/xhtml:p[3]/xhtml:input[@name='fill-in']",
  "/xhtml:html/xhtml:body/xhtml:form/xhtml:p[4]/xhtml:input[@name='mistyped']",
  "/xhtml:html/xhtml:body/xhtml:form/xhtml:p[5]/xhtml:textarea[@name='textarea_pass']",
]);

/**
 * Bug 456342 - Restore values from non-standard input field types.
 */
async function test_restore_nonstandard_input_values(aURL) {
  // Add tab with various non-standard input field types.
  let tab = BrowserTestUtils.addTab(gBrowser, aURL);
  let browser = tab.linkedBrowser;
  await promiseBrowserLoaded(browser);

  // Fill in form values.
  let expectedValue = Math.random();

  await SpecialPowers.spawn(browser, [expectedValue], valueChild => {
    for (let elem of content.document.forms[0].elements) {
      elem.value = valueChild;
      let event = elem.ownerDocument.createEvent("UIEvents");
      event.initUIEvent("input", true, true, elem.ownerGlobal, 0);
      elem.dispatchEvent(event);
    }
  });

  // Remove tab and check collected form data.
  await promiseRemoveTabAndSessionState(tab);
  let undoItems = ss.getClosedTabDataForWindow(window);
  let savedFormData = undoItems[0].state.formdata;

  let foundIds = 0;
  for (let id of Object.keys(savedFormData.id)) {
    ok(EXPECTED_IDS.has(id), `Check saved ID "${id}" was expected`);
    is(
      savedFormData.id[id],
      "" + expectedValue,
      `Check saved value for #${id}`
    );
    foundIds++;
  }

  let foundXpaths = 0;
  for (let exp of Object.keys(savedFormData.xpath)) {
    ok(EXPECTED_XPATHS.has(exp), `Check saved xpath "${exp}" was expected`);
    is(
      savedFormData.xpath[exp],
      "" + expectedValue,
      `Check saved value for ${exp}`
    );
    foundXpaths++;
  }

  is(foundIds, EXPECTED_IDS.size, "Check number of fields saved by ID");
  is(
    foundXpaths,
    EXPECTED_XPATHS.size,
    "Check number of fields saved by xpath"
  );
}