summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/news/test/unit/test_cancelPasswordDialog.js
blob: 5212614b3a6640412787692b4cc24c77b1f0f329 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var { PromiseTestUtils } = ChromeUtils.import(
  "resource://testing-common/mailnews/PromiseTestUtils.jsm"
);

/* import-globals-from ../../../test/resources/alertTestUtils.js */
load("../../../resources/alertTestUtils.js");

let daemon = setupNNTPDaemon();
let server = makeServer(NNTP_RFC4643_extension, daemon);
server.start();
registerCleanupFunction(() => {
  server.stop();
});

/**
 * Test connection should be closed after canceling the password dialog.
 */
add_task(async function cancelPasswordDialog() {
  // Mock the password prompt.
  registerAlertTestUtils();

  // Enforce server auth and trigger a list group request.
  let incomingServer = setupLocalServer(server.port);
  incomingServer.pushAuth = true;
  let listener = new PromiseTestUtils.PromiseStreamListener();
  incomingServer.loadNewsUrl(
    Services.io.newURI(`news://localhost:${server.port}/*`),
    null,
    listener
  );

  // The request should be aborted.
  try {
    await listener.promise;
  } catch (e) {
    equal(e, Cr.NS_ERROR_ABORT);
  }

  // Should send nothing after canceling the password dialog.
  let transaction = server.playTransaction();
  do_check_transaction(transaction, ["MODE READER"]);
});

function promptUsernameAndPasswordPS(
  aParent,
  aDialogTitle,
  aText,
  aUsername,
  aPassword,
  aCheckMsg,
  aCheckState
) {
  // Cancel the password dialog.
  return false;
}