gecko/testing/release/minotaur/sb.js

212 lines
7.4 KiB
JavaScript
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is The Original Code is Mozilla Automated Testing Code
*
* The Initial Developer of the Original Code is
* Mozilla Corporation.
* Portions created by the Initial Developer are Copyright (C) 2006
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): Dave Liebreich <davel@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
const Cc = Components.classes;
const Ci = Components.interfaces;
var searchService = Cc["@mozilla.org/browser/search-service;1"]
.getService(Ci.nsIBrowserSearchService);
var engines = searchService.getVisibleEngines({ });
var engineIndex = 0;
var pb = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch2);
var prefs=pb.getChildList('', {});
prefs.sort();
var ww = Cc["@mozilla.org/embedcomp/window-watcher;1"]
.getService(Ci.nsIWindowWatcher);
var w = ww.openWindow(null,"chrome://browser/content/browser.xul",null,null,null);
var gOutFile;
function createOutputFile() {
var dirServices = Cc["@mozilla.org/file/directory_service;1"]
.createInstance(Ci.nsIProperties);
var file = dirServices.get("ProfD", Components.interfaces.nsIFile);
file.append("test-output.xml");
if (file.exists()) {
file.remove(false);
}
gOutFile = Cc["@mozilla.org/network/file-output-stream;1"]
.createInstance(Ci.nsIFileOutputStream);
const MODE_WRONLY = 0x02;
const MODE_CREATE = 0x08;
const MODE_TRUNCATE = 0x20;
const MODE_APPEND = 0x10;
gOutFile.init(file, MODE_WRONLY | MODE_CREATE | MODE_APPEND | MODE_TRUNCATE,
0600, 0);
// Seed the file by writing the XML header
output("<?xml version=\"1.0\"?>\n<testrun>");
}
function output(s) {
s = escape(s);
gOutFile.write(s, s.length);
dump(s);
}
function escape(s) {
// Only escapes ampersands.
var str = s.replace(/&/g, "&amp;");
return str;
}
function closeOutputFile() {
output("\n</testrun>\n");
gOutFile.flush();
gOutFile.close();
}
function listEngines() {
output("\n<section id=\"searchengine\">\n");
for each (var engine in engines) {
engineIndex++;
var submission = engine.getSubmission("foo", null);
var url = submission.uri.spec;
output("<l>" + engineIndex + "|" + engine.name + "|" + url + "</l>\n");
}
output("</section>");
}
function listPrefs() {
output("\n<section id=\"preferences\">\n");
var grab = /(app\.distributor)|(app\.partner)|(app\.update\.channel)|(homepage)|(startup)|(browser\.contentHandlers)/;
for (var i=0; i < prefs.length; ++i) {
var pref = prefs[i], pval = [pref, null];
var ptype = pb.getPrefType(pref);
try {
switch (ptype) {
case pb.PREF_BOOL:
pval[1] = String(pb.getBoolPref(pref));
break;
case pb.PREF_INT:
if (pref in prefMirror) {
pval[1] = String(prefMirror[pref]);
}
else {
pval[1] = String(pb.getIntPref(pref));
}
break;
case pb.PREF_STRING:
pval[1] = pb.getComplexValue(pref, Ci.nsISupportsString).data;
if (pval[1].match(/.+\.properties$/)) {
var data = pb.getComplexValue(pref, Ci.nsIPrefLocalizedString).data;
pval[1] = data;
}
break;
}
}
catch (e) {
Components.utils.reportError("Preference " + pref + " triggered " + e);
}
if (String(pval[0]).match(grab)) {
output("<l>" + String(pval[0]) + "|" + String(pval[1]) + "</l>\n");
}
}
output("</section>");
}
function listBookmarks() {
// Exports bookmarks to a testbookmarks.html file
// If we're not less than or equal to a 1.8 build, then we're using places
var dirUtils = Cc["@mozilla.org/file/directory_service;1"]
.createInstance(Ci.nsIProperties);
var file = dirUtils.get("ProfD", Components.interfaces.nsIFile);
file.append("test-bookmarks.html");
if (file.exists()) {
file.remove(false);
}
// TODO: Checking the gecko engine level to determine whether or not
// to do places style calls.
// If version <= 1.8 we will use old bookmarks
// If version >= 1.9 we will use places calls
var appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
var appInfoAry = appInfo.platformVersion.split(".");
if ( (appInfoAry[0] == "1") && (parseInt(appInfoAry[1], 10) <= 8) ) {
var i = 0;
var bmsvc = Cc["@mozilla.org/browser/bookmarks-service;1"]
.getService(Ci.nsIBookmarksService);
var RDF = Cc["@mozilla.org/rdf/rdf-service;1"]
.getService(Ci.nsIRDFService);
var selection = RDF.GetResource("NC:BookmarksRoot");
var fname = file.path;
var args = [{property: "http://home.netscape.com/NC-rdf#URL", literal:fname}];
initServices();
initBMService();
if (BMSVC) {
// Declared in bookmarks.js
BMSVC.readBookmarks();
}
BookmarksCommand.doBookmarksCommand(selection,
"http://home.netscape.com/NC-rdf#command?cmd=export", args);
} else {
file.create(Ci.nsIFile.NORMAL_FILE_TYPE, 0644);
var placesExporter = Cc["@mozilla.org/browser/places/import-export-service;1"]
.getService(Ci.nsIPlacesImportExportService);
placesExporter.exportHTMLToFile(file);
}
}
function listExtensions() {
// Gets a list of extensions from the extension manager
output("\n<section id=\"extensions\">\n");
var extmgr = Cc["@mozilla.org/extensions/manager;1"]
.getService(Ci.nsIExtensionManager);
var exts = extmgr.getItemList(Ci.nsIUpdateItem.TYPE_ANY, { });
for (var i=0; i < exts.length; ++i) {
var item = exts[i];
output("<l>" + i + "|" + item.name + "|" + item.id + "|" + item.version + "|"
+ item.iconURL + "|" + item.xpiURL + "|" + item.type + "</l>\n");
}
output("</section>");
}
function listUpdates() {
var prompter = Cc["@mozilla.org/updates/update-prompt;1"]
.createInstance(Ci.nsIUpdatePrompt);
prompter.checkForUpdates();
}
createOutputFile();
listEngines();
listPrefs();
listExtensions();
listBookmarks();
listUpdates();
closeOutputFile();
setTimeout(goQuitApplication, 1500);