2008-12-07 23:38:48 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Test for Login Manager</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2008-12-07 23:38:48 -08:00
|
|
|
<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: 444968
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
<!-- first 3 forms have matching user+pass and pass-only logins -->
|
|
|
|
|
|
|
|
<!-- user+pass form. -->
|
|
|
|
<form id="form1" action="http://bug444968-1">
|
|
|
|
<input type="text" name="uname">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- password-only form. -->
|
|
|
|
<form id="form2" action="http://bug444968-1">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- user+pass form, username prefilled -->
|
|
|
|
<form id="form3" action="http://bug444968-1">
|
|
|
|
<input type="text" name="uname" value="testuser1A">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- next 4 forms have matching user+pass (2x) and pass-only (1x) logins -->
|
|
|
|
|
|
|
|
<!-- user+pass form. -->
|
|
|
|
<form id="form4" action="http://bug444968-2">
|
|
|
|
<input type="text" name="uname">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- password-only form. -->
|
|
|
|
<form id="form5" action="http://bug444968-2">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- user+pass form, username prefilled -->
|
|
|
|
<form id="form6" action="http://bug444968-2">
|
|
|
|
<input type="text" name="uname" value="testuser2A">
|
|
|
|
<input type="password" name="pword">
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- user+pass form, username prefilled -->
|
|
|
|
<form id="form7" action="http://bug444968-2">
|
|
|
|
<input type="text" name="uname" value="testuser2C">
|
|
|
|
<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: 444968 (password-only forms should prefer a
|
|
|
|
* password-only login when present )
|
|
|
|
*/
|
2009-09-13 13:26:30 -07:00
|
|
|
commonInit();
|
2008-12-07 23:38:48 -08:00
|
|
|
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
|
|
|
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cc = Components.classes;
|
|
|
|
pwmgr = Cc["@mozilla.org/login-manager;1"].
|
|
|
|
getService(Ci.nsILoginManager);
|
|
|
|
|
|
|
|
login1A = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
|
|
createInstance(Ci.nsILoginInfo);
|
|
|
|
login1B = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
|
|
createInstance(Ci.nsILoginInfo);
|
|
|
|
login2A = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
|
|
createInstance(Ci.nsILoginInfo);
|
|
|
|
login2B = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
|
|
createInstance(Ci.nsILoginInfo);
|
|
|
|
login2C = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
|
|
createInstance(Ci.nsILoginInfo);
|
|
|
|
|
2010-03-12 13:53:36 -08:00
|
|
|
login1A.init("http://mochi.test:8888", "http://bug444968-1", null,
|
2008-12-07 23:38:48 -08:00
|
|
|
"testuser1A", "testpass1A", "", "");
|
2010-03-12 13:53:36 -08:00
|
|
|
login1B.init("http://mochi.test:8888", "http://bug444968-1", null,
|
2008-12-07 23:38:48 -08:00
|
|
|
"", "testpass1B", "", "");
|
|
|
|
|
2010-03-12 13:53:36 -08:00
|
|
|
login2A.init("http://mochi.test:8888", "http://bug444968-2", null,
|
2008-12-07 23:38:48 -08:00
|
|
|
"testuser2A", "testpass2A", "", "");
|
2010-03-12 13:53:36 -08:00
|
|
|
login2B.init("http://mochi.test:8888", "http://bug444968-2", null,
|
2008-12-07 23:38:48 -08:00
|
|
|
"", "testpass2B", "", "");
|
2010-03-12 13:53:36 -08:00
|
|
|
login2C.init("http://mochi.test:8888", "http://bug444968-2", null,
|
2008-12-07 23:38:48 -08:00
|
|
|
"testuser2C", "testpass2C", "", "");
|
|
|
|
|
|
|
|
pwmgr.addLogin(login1A);
|
|
|
|
pwmgr.addLogin(login1B);
|
|
|
|
pwmgr.addLogin(login2A);
|
|
|
|
pwmgr.addLogin(login2B);
|
|
|
|
pwmgr.addLogin(login2C);
|
|
|
|
|
|
|
|
function startTest() {
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
|
|
|
|
|
|
|
checkForm(1, "testuser1A", "testpass1A");
|
|
|
|
checkForm(2, "testpass1B");
|
|
|
|
checkForm(3, "testuser1A", "testpass1A");
|
|
|
|
|
|
|
|
checkUnmodifiedForm(4); // 2 logins match
|
|
|
|
checkForm(5, "testpass2B");
|
|
|
|
checkForm(6, "testuser2A", "testpass2A");
|
|
|
|
checkForm(7, "testuser2C", "testpass2C");
|
|
|
|
|
|
|
|
pwmgr.removeLogin(login1A);
|
|
|
|
pwmgr.removeLogin(login1B);
|
|
|
|
pwmgr.removeLogin(login2A);
|
|
|
|
pwmgr.removeLogin(login2B);
|
|
|
|
pwmgr.removeLogin(login2C);
|
|
|
|
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
window.onload = startTest;
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|