mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-09 13:30:34 +00:00
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
// test that things that are expected to be in gre-resources are still there
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
var ios = Cc["@mozilla.org/network/io-service;1"]. getService(Ci.nsIIOService);
|
|
|
|
function wrapInputStream(input)
|
|
{
|
|
var nsIScriptableInputStream = Components.interfaces.nsIScriptableInputStream;
|
|
var factory = Components.classes["@mozilla.org/scriptableinputstream;1"];
|
|
var wrapper = factory.createInstance(nsIScriptableInputStream);
|
|
wrapper.init(input);
|
|
return wrapper;
|
|
}
|
|
|
|
function check_file(file) {
|
|
var channel = ios.newChannel2("resource://gre-resources/"+file,
|
|
null,
|
|
null,
|
|
null, // aLoadingNode
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
null, // aTriggeringPrincipal
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
Ci.nsIContentPolicy.TYPE_OTHER);
|
|
try {
|
|
let instr = wrapInputStream(channel.open());
|
|
do_check_true(instr.read(1024).length > 0)
|
|
} catch (e) {
|
|
do_throw("Failed to read " + file + " from gre-resources:"+e)
|
|
}
|
|
}
|
|
|
|
function run_test() {
|
|
for (let file of ["ua.css"])
|
|
check_file(file)
|
|
}
|