summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/test_basic_form_html5.html
blob: 40e322afd7735ff09dada71e684a5e668eee2f6c (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for html5 input types (email, tel, url, etc.)</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="pwmgr_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
Login Manager test: html5 input types (email, tel, url, etc.)
<script>
runChecksAfterCommonInit(() => startTest());

runInParent(function setup() {
  const { classes: Cc, interfaces: Ci, results: Cr, utils: Cu } = Components;
  let pwmgr = Cc["@mozilla.org/login-manager;1"].
              getService(Ci.nsILoginManager);

  login1 = Cc["@mozilla.org/login-manager/loginInfo;1"].
           createInstance(Ci.nsILoginInfo);
  login2 = Cc["@mozilla.org/login-manager/loginInfo;1"].
           createInstance(Ci.nsILoginInfo);
  login3 = Cc["@mozilla.org/login-manager/loginInfo;1"].
           createInstance(Ci.nsILoginInfo);
  login4 = Cc["@mozilla.org/login-manager/loginInfo;1"].
           createInstance(Ci.nsILoginInfo);

  login1.init("http://mochi.test:8888", "http://bug600551-1", null,
              "testuser@example.com", "testpass1", "", "");
  login2.init("http://mochi.test:8888", "http://bug600551-2", null,
              "555-555-5555", "testpass2", "", "");
  login3.init("http://mochi.test:8888", "http://bug600551-3", null,
              "http://mozilla.org", "testpass3", "", "");
  login4.init("http://mochi.test:8888", "http://bug600551-4", null,
              "123456789", "testpass4", "", "");

  pwmgr.addLogin(login1);
  pwmgr.addLogin(login2);
  pwmgr.addLogin(login3);
  pwmgr.addLogin(login4);
});
</script>

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

  <form id="form1" action="http://bug600551-1">
    <input  type="email"    name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form2" action="http://bug600551-2">
    <input  type="tel"      name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form3" action="http://bug600551-3">
    <input  type="url"      name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form4" action="http://bug600551-4">
    <input  type="number"   name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <!-- The following forms should not be filled with usernames -->
  <form id="form5" action="formtest.js">
    <input  type="search"   name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form6" action="formtest.js">
    <input  type="datetime" name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form7" action="formtest.js">
    <input  type="date"     name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form8" action="formtest.js">
    <input  type="month" name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form9" action="formtest.js">
    <input  type="week"     name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form10" action="formtest.js">
    <input  type="time"     name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form11" action="formtest.js">
    <input  type="datetime-local" name="uname">
    <input  type="password"       name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form12" action="formtest.js">
    <input  type="range"    name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>

  <form id="form13" action="formtest.js">
    <input  type="color"    name="uname">
    <input  type="password" name="pword">
    <button type="submit">Submit</button>
  </form>


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

/* Test for Login Manager: 600551
  (Password manager not working with input type=email)
 */
function startTest() {
  checkForm(1, "testuser@example.com", "testpass1");
  checkForm(2, "555-555-5555", "testpass2");
  checkForm(3, "http://mozilla.org", "testpass3");
  checkForm(4, "123456789", "testpass4");

  is($_(5, "uname").value, "", "type=search should not be considered a username");

  is($_(6, "uname").value, "", "type=datetime should not be considered a username");

  is($_(7, "uname").value, "", "type=date should not be considered a username");

  is($_(8, "uname").value, "", "type=month should not be considered a username");

  is($_(9, "uname").value, "", "type=week should not be considered a username");

  is($_(10, "uname").value, "", "type=time should not be considered a username");

  is($_(11, "uname").value, "", "type=datetime-local should not be considered a username");

  is($_(12, "uname").value, "50", "type=range should not be considered a username");

  is($_(13, "uname").value, "#000000", "type=color should not be considered a username");

  SimpleTest.finish();
}
</script>
</pre>
</body>
</html>