1
0
Fork 0
firefox/netwerk/test/unit/test_gre_resources.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

30 lines
785 B
JavaScript

// test that things that are expected to be in gre-resources are still there
"use strict";
function wrapInputStream(input) {
var nsIScriptableInputStream = Ci.nsIScriptableInputStream;
var factory = Cc["@mozilla.org/scriptableinputstream;1"];
var wrapper = factory.createInstance(nsIScriptableInputStream);
wrapper.init(input);
return wrapper;
}
function check_file(file) {
var channel = NetUtil.newChannel({
uri: "resource://gre-resources/" + file,
loadUsingSystemPrincipal: true,
});
try {
let instr = wrapInputStream(channel.open());
Assert.ok(!!instr.read(1024).length);
} catch (e) {
do_throw("Failed to read " + file + " from gre-resources:" + e);
}
}
function run_test() {
for (let file of ["ua.css"]) {
check_file(file);
}
}