Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* 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/. */
function run_test() {
var formatter = Services.urlFormatter;
var locale = Services.locale.appLocaleAsBCP47;
var OSVersion =
Services.sysinfo.getProperty("name") +
" " +
Services.sysinfo.getProperty("version");
try {
OSVersion += " (" + Services.sysinfo.getProperty("secondaryLibrary") + ")";
} catch (e) {}
OSVersion = encodeURIComponent(OSVersion);
var abi = Services.appinfo.XPCOMABI;
let defaults = Services.prefs.getDefaultBranch(null);
let channel = defaults.getCharPref("app.update.channel", "default");
// Set distribution values.
defaults.setCharPref("distribution.id", "bacon");
defaults.setCharPref("distribution.version", "1.0");
var upperUrlRaw =
var lowerUrlRaw =
// XXX %APP%'s RegExp is not global, so it only replaces the first space
var ulUrlRef =
"http://" +
locale +
".Mozilla.foo/?name=Url Formatter Test&id=urlformattertest@test.mozilla.org&version=1&platversion=2.0&abid=" +
gAppInfo.appBuildID +
"&pbid=" +
gAppInfo.platformBuildID +
"&app=urlformatter test&os=XPCShell&abi=" +
abi;
var multiUrlRef =
"http://Mozilla.Mozilla.Url Formatter Test.Mozilla.Url Formatter Test";
var encodedUrl =
var encodedUrlRef =
"https://" +
locale +
".Mozilla.foo/?q=%E3%82%BF%E3%83%96&app=Url Formatter Test&ver=2.0";
var advancedUrl =
var advancedUrlRef =
"http://test.mozilla.com/Url Formatter Test/1/" +
gAppInfo.appBuildID +
"/XPCShell_" +
abi +
"/" +
locale +
"/" +
channel +
"/" +
OSVersion +
"/bacon/1.0/";
var pref = "xpcshell.urlformatter.test";
Services.prefs.setStringPref(pref, upperUrlRaw);
Assert.equal(formatter.formatURL(upperUrlRaw), ulUrlRef);
Assert.equal(formatter.formatURLPref(pref), ulUrlRef);
// Keys must be uppercase
Assert.notEqual(formatter.formatURL(lowerUrlRaw), ulUrlRef);
Assert.equal(formatter.formatURL(multiUrl), multiUrlRef);
// Encoded strings must be kept as is (Bug 427304)
Assert.equal(formatter.formatURL(encodedUrl), encodedUrlRef);
Assert.equal(formatter.formatURL(advancedUrl), advancedUrlRef);
for (let val of [
"MOZILLA_API_KEY",
"GOOGLE_LOCATION_SERVICE_API_KEY",
"GOOGLE_SAFEBROWSING_API_KEY",
"BING_API_CLIENTID",
"BING_API_KEY",
]) {
let url = "http://test.mozilla.com/?val=%" + val + "%";
Assert.notEqual(formatter.formatURL(url), url);
}
let url_sb =
Assert.equal(
formatter.trimSensitiveURLs(formatter.formatURL(url_sb)),
);
let url_gls =
Assert.equal(
formatter.trimSensitiveURLs(formatter.formatURL(url_gls)),
);
}