summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_gre_resources.js
blob: 4ea8d04b95b5b4cf1b9c8ff8a73e14c83c74c981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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);
  }
}