summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/compose/test/unit/test_smtpURL.js
blob: 833ca91817037b4fa854257065b36758333483ed (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * Test suite for checking SMTP URLs are working as expected.
 * XXX this test needs extending as we fix up nsSmtpUrl.
 */

var smtpURLs = [
  {
    url: "smtp://user@localhost/",
    spec: "smtp://user@localhost/",
    username: "user",
  },
  {
    url: "smtps://user@localhost/",
    spec: "smtps://user@localhost/",
    username: "user",
  },
];

function run_test() {
  var url;
  for (var part = 0; part < smtpURLs.length; ++part) {
    print("url: " + smtpURLs[part].url);

    url = Services.io.newURI(smtpURLs[part].url);

    Assert.equal(url.spec, smtpURLs[part].spec);
    Assert.equal(url.username, smtpURLs[part].username);
  }
}