mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 00:48:56 +00:00
105 lines
3.3 KiB
JavaScript
105 lines
3.3 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests that the default nsILoginManagerStorage module attached to the Login
|
|
* Manager service is able to save and reload nsILoginInfo properties correctly,
|
|
* even when they include special characters.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// Globals
|
|
|
|
function reloadAndCheckLogins(aExpectedLogins)
|
|
{
|
|
yield LoginTest.reloadData();
|
|
LoginTest.checkLogins(aExpectedLogins);
|
|
LoginTest.clearData();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// Tests
|
|
|
|
/**
|
|
* Tests addLogin with valid non-ASCII characters.
|
|
*/
|
|
add_task(function test_storage_addLogin_nonascii()
|
|
{
|
|
let hostname = "http://" + String.fromCharCode(355) + ".example.com";
|
|
|
|
// Store the strings "user" and "pass" using similarly looking glyphs.
|
|
let loginInfo = TestData.formLogin({
|
|
hostname: hostname,
|
|
formSubmitURL: hostname,
|
|
username: String.fromCharCode(533, 537, 7570, 345),
|
|
password: String.fromCharCode(421, 259, 349, 537),
|
|
usernameField: "field_" + String.fromCharCode(533, 537, 7570, 345),
|
|
passwordField: "field_" + String.fromCharCode(421, 259, 349, 537),
|
|
});
|
|
Services.logins.addLogin(loginInfo);
|
|
yield reloadAndCheckLogins([loginInfo]);
|
|
|
|
// Store the string "test" using similarly looking glyphs.
|
|
loginInfo = TestData.authLogin({
|
|
httpRealm: String.fromCharCode(355, 277, 349, 357),
|
|
});
|
|
Services.logins.addLogin(loginInfo);
|
|
yield reloadAndCheckLogins([loginInfo]);
|
|
});
|
|
|
|
/**
|
|
* Tests addLogin with newline characters in the username and password.
|
|
*/
|
|
add_task(function test_storage_addLogin_newlines()
|
|
{
|
|
let loginInfo = TestData.formLogin({
|
|
username: "user\r\nname",
|
|
password: "password\r\n",
|
|
});
|
|
Services.logins.addLogin(loginInfo);
|
|
yield reloadAndCheckLogins([loginInfo]);
|
|
});
|
|
|
|
/**
|
|
* Tests addLogin with a single dot in fields where it is allowed.
|
|
*
|
|
* These tests exist to verify the legacy "signons.txt" storage format.
|
|
*/
|
|
add_task(function test_storage_addLogin_dot()
|
|
{
|
|
let loginInfo = TestData.formLogin({ hostname: ".", passwordField: "." });
|
|
Services.logins.addLogin(loginInfo);
|
|
yield reloadAndCheckLogins([loginInfo]);
|
|
|
|
loginInfo = TestData.authLogin({ httpRealm: "." });
|
|
Services.logins.addLogin(loginInfo);
|
|
yield reloadAndCheckLogins([loginInfo]);
|
|
});
|
|
|
|
/**
|
|
* Tests addLogin with parentheses in hostnames.
|
|
*
|
|
* These tests exist to verify the legacy "signons.txt" storage format.
|
|
*/
|
|
add_task(function test_storage_addLogin_parentheses()
|
|
{
|
|
let loginList = [
|
|
TestData.authLogin({ httpRealm: "(realm" }),
|
|
TestData.authLogin({ httpRealm: "realm)" }),
|
|
TestData.authLogin({ httpRealm: "(realm)" }),
|
|
TestData.authLogin({ httpRealm: ")realm(" }),
|
|
TestData.authLogin({ hostname: "http://parens(.example.com" }),
|
|
TestData.authLogin({ hostname: "http://parens).example.com" }),
|
|
TestData.authLogin({ hostname: "http://parens(example).example.com" }),
|
|
TestData.authLogin({ hostname: "http://parens)example(.example.com" }),
|
|
];
|
|
for (let loginInfo of loginList) {
|
|
Services.logins.addLogin(loginInfo);
|
|
}
|
|
yield reloadAndCheckLogins(loginList);
|
|
});
|