summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/test_prompt_noWindow.html
blob: 5b7584e4faf9744b9bb88a61f5899065b7114b1a (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test HTTP auth prompts by loading authenticate.sjs with no window</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="pwmgr_common.js"></script>
  <script type="text/javascript" src="../../../prompts/test/prompt_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>

<div id="content" style="display: none">
</div>

<pre id="test">
<script class="testbody" type="text/javascript">

// Let prompt_common know what kind of modal type is enabled for auth prompts.
modalType = authPromptModalType;

add_setup(async () => {
  await addLoginsInParent(
    ["http://mochi.test:8888", null, "mochitest", "mochiuser1", "mochipass1", "", ""]
  );
});

add_task(async function test_sandbox_xhr() {
  const state = {
    msg: "This site is asking you to sign in.",
    title: "Authentication Required",
    textValue: "mochiuser1",
    passValue: "mochipass1",
    iconClass: "authentication-icon question-icon",
    titleHidden: true,
    textHidden: false,
    passHidden: false,
    checkHidden: true,
    checkMsg: "",
    checked: false,
    focused: "textField",
    defButton: "button0",
  };
  const action = {
    buttonClick: "ok",
  };
  const promptDone = handlePrompt(state, action);

  const url = new URL("authenticate.sjs?user=mochiuser1&pass=mochipass1", window.location.href);
  const sandboxConstructor = SpecialPowers.Cu.Sandbox;
  const sandbox = new sandboxConstructor(this, {wantXrays: true});
  function sandboxedRequest(sandboxedUrl) {
    const req = new XMLHttpRequest();
    req.open("GET", sandboxedUrl, true);
    req.send(null);
  }

  const loginModifiedPromise = promiseStorageChanged(["modifyLogin"]);
  sandbox.sandboxedRequest = sandboxedRequest(url);
  info("send the XHR request in the sandbox");
  SpecialPowers.Cu.evalInSandbox("sandboxedRequest;", sandbox);

  await promptDone;
  info("prompt shown, waiting for metadata updates");
  // Ensure the timeLastUsed and timesUsed metadata are updated.
  await loginModifiedPromise;
});
</script>
</pre>
</body>
</html>