summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/test_formless_submit_navigation.html
blob: b07d0886c948df2fb152d9a85d25be791365bf7c (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test capturing of fields outside of a form due to navigation</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/SpawnTask.js"></script>
  <script src="pwmgr_common.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script type="application/javascript;version=1.8">
const LMCBackstagePass = SpecialPowers.Cu.import("resource://gre/modules/LoginManagerContent.jsm");
const { LoginManagerContent, LoginFormFactory } = LMCBackstagePass;

let chromeScript = runInParent(SimpleTest.getTestFileURL("pwmgr_common.js"));

let loadPromise = new Promise(resolve => {
  document.addEventListener("DOMContentLoaded", () => {
    document.getElementById("loginFrame").addEventListener("load", (evt) => {
      resolve();
    });
  });
});

add_task(function* setup() {
  yield SpecialPowers.pushPrefEnv({
    set: [
      ["signon.formlessCapture.enabled", true],
    ],
  });

  info("Waiting for page and frame loads");
  yield loadPromise;

  yield loadRecipes({
    siteRecipes: [{
      hosts: ["test1.mochi.test:8888"],
      usernameSelector: "input[name='recipeuname']",
      passwordSelector: "input[name='recipepword']",
    }],
  });
});

const DEFAULT_ORIGIN = "http://test1.mochi.test:8888";
const SCRIPTS = {
  PUSHSTATE: `history.pushState({}, "Pushed state", "?pushed");`,
  WINDOW_LOCATION: `window.location = "data:text/html;charset=utf-8,window.location";`,
};
const TESTCASES = [
  {
    // Inputs
    document: `<input type=password value="pass1">`,

    // Expected outputs similar to RemoteLogins:onFormSubmit
    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: null,
    newPasswordFieldValue: "pass1",
    oldPasswordFieldValue: null,
  },
  {
    document: `<input value="user1">
      <input type=password value="pass1">`,

    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: "user1",
    newPasswordFieldValue: "pass1",
    oldPasswordFieldValue: null,
  },
  {
    document: `<input value="user1">
      <input type=password value="pass1">
      <input type=password value="pass2">`,

    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: "user1",
    newPasswordFieldValue: "pass2",
    oldPasswordFieldValue: "pass1",
  },
  {
    document: `<input value="user1">
      <input type=password value="pass1">
      <input type=password value="pass2">
      <input type=password value="pass2">`,

    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: "user1",
    newPasswordFieldValue: "pass2",
    oldPasswordFieldValue: "pass1",
  },
  {
    document: `<input value="user1">
      <input type=password value="user2" form="form1">
      <input type=password value="pass1">
      <form id="form1">
        <input value="user3">
        <input type=password value="pass2">
      </form>`,

    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: "user1",
    newPasswordFieldValue: "pass1",
    oldPasswordFieldValue: null,
  },
  {
    document: `<!-- recipe field override -->
      <input name="recipeuname" value="username from recipe">
      <input value="default field username">
      <input type=password value="pass1">
      <input name="recipepword" type=password value="pass2">`,

    hostname: DEFAULT_ORIGIN,
    formSubmitURL: DEFAULT_ORIGIN,
    usernameFieldValue: "username from recipe",
    newPasswordFieldValue: "pass2",
    oldPasswordFieldValue: null,
  },
];

function getSubmitMessage() {
  info("getSubmitMessage");
  return new Promise((resolve, reject) => {
    chromeScript.addMessageListener("formSubmissionProcessed", function processed(...args) {
      info("got formSubmissionProcessed");
      chromeScript.removeMessageListener("formSubmissionProcessed", processed);
      resolve(...args);
    });
  });
}

add_task(function* test() {
  let loginFrame = document.getElementById("loginFrame");

  for (let tc of TESTCASES) {
    for (let scriptName of Object.keys(SCRIPTS)) {
      info("Starting testcase with script " + scriptName + ": " + JSON.stringify(tc));
      let loadedPromise = new Promise((resolve) => {
        loginFrame.addEventListener("load", function frameLoaded() {
          loginFrame.removeEventListener("load", frameLoaded);
          resolve();
        });
      });
      loginFrame.src = DEFAULT_ORIGIN + "/tests/toolkit/components/passwordmgr/test/mochitest/blank.html";
      yield loadedPromise;

      let frameDoc = SpecialPowers.wrap(loginFrame.contentWindow).document;
      frameDoc.documentElement.innerHTML = tc.document;
      // Wait for the form to be processed before trying to submit.
      yield promiseFormsProcessed();
      let processedPromise = getSubmitMessage();
      info("Running " + scriptName + " script to cause a submission");
      frameDoc.defaultView.eval(SCRIPTS[scriptName]);

      let submittedResult = yield processedPromise;

      // Check data sent via RemoteLogins:onFormSubmit
      is(submittedResult.hostname, tc.hostname, "Check hostname");
      is(submittedResult.formSubmitURL, tc.formSubmitURL, "Check formSubmitURL");

      if (tc.usernameFieldValue === null) {
        is(submittedResult.usernameField, tc.usernameFieldValue, "Check usernameField");
      } else {
        is(submittedResult.usernameField.value, tc.usernameFieldValue, "Check usernameField");
      }

      is(submittedResult.newPasswordField.value, tc.newPasswordFieldValue, "Check newPasswordFieldValue");

      if (tc.oldPasswordFieldValue === null) {
        is(submittedResult.oldPasswordField, tc.oldPasswordFieldValue, "Check oldPasswordFieldValue");
      } else {
        is(submittedResult.oldPasswordField.value, tc.oldPasswordFieldValue, "Check oldPasswordFieldValue");
      }
    }
  }
});

</script>

<p id="display"></p>

<div id="content">
  <iframe id="loginFrame" src="http://test1.mochi.test:8888/tests/toolkit/components/passwordmgr/test/mochitest/blank.html"></iframe>
</div>
<pre id="test"></pre>
</body>
</html>