modules/libjar/test/unit/test_not_found.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 // Should report file not found on non-existent files
michael@0 2
michael@0 3 const Cc = Components.classes;
michael@0 4 const Ci = Components.interfaces;
michael@0 5 const path = "data/test_bug333423.zip";
michael@0 6
michael@0 7 function run_test() {
michael@0 8 var ios = Cc["@mozilla.org/network/io-service;1"].
michael@0 9 getService(Ci.nsIIOService);
michael@0 10 var spec = "jar:" + ios.newFileURI(do_get_file(path)).spec + "!/";
michael@0 11 var channel = ios.newChannel(spec + "file_that_isnt_in.archive", null, null);
michael@0 12 try {
michael@0 13 instr = channel.open();
michael@0 14 do_throw("Failed to report that file doesn't exist")
michael@0 15 } catch (e) {
michael@0 16 do_check_true(e.name == "NS_ERROR_FILE_NOT_FOUND")
michael@0 17 }
michael@0 18 }

mercurial