Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | */ |
michael@0 | 5 | |
michael@0 | 6 | const DATA = ""; |
michael@0 | 7 | const FILENAME = "test.txt"; |
michael@0 | 8 | const CRC = 0x00000000; |
michael@0 | 9 | // XXX Must use a constant time here away from DST changes. See bug 402434. |
michael@0 | 10 | const time = 1199145600000; // Jan 1st 2008 |
michael@0 | 11 | |
michael@0 | 12 | function testpass(source) |
michael@0 | 13 | { |
michael@0 | 14 | // Should exist. |
michael@0 | 15 | do_check_true(source.hasEntry(FILENAME)); |
michael@0 | 16 | |
michael@0 | 17 | var entry = source.getEntry(FILENAME); |
michael@0 | 18 | do_check_neq(entry, null); |
michael@0 | 19 | |
michael@0 | 20 | do_check_false(entry.isDirectory); |
michael@0 | 21 | |
michael@0 | 22 | // Should be stored |
michael@0 | 23 | do_check_eq(entry.compression, ZIP_METHOD_DEFLATE); |
michael@0 | 24 | |
michael@0 | 25 | do_check_eq(entry.lastModifiedTime / PR_USEC_PER_MSEC, time); |
michael@0 | 26 | |
michael@0 | 27 | // File size should match our data size. |
michael@0 | 28 | do_check_eq(entry.realSize, DATA.length); |
michael@0 | 29 | |
michael@0 | 30 | // Check that the CRC is accurate |
michael@0 | 31 | do_check_eq(entry.CRC32, CRC); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | function run_test() |
michael@0 | 35 | { |
michael@0 | 36 | zipW.open(tmpFile, PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE); |
michael@0 | 37 | |
michael@0 | 38 | // Shouldn't be there to start with. |
michael@0 | 39 | do_check_false(zipW.hasEntry(FILENAME)); |
michael@0 | 40 | |
michael@0 | 41 | do_check_false(zipW.inQueue); |
michael@0 | 42 | |
michael@0 | 43 | var stream = Cc["@mozilla.org/io/string-input-stream;1"] |
michael@0 | 44 | .createInstance(Ci.nsIStringInputStream); |
michael@0 | 45 | stream.setData(DATA, DATA.length); |
michael@0 | 46 | zipW.addEntryStream(FILENAME, time * PR_USEC_PER_MSEC, |
michael@0 | 47 | Ci.nsIZipWriter.COMPRESSION_BEST, stream, false); |
michael@0 | 48 | |
michael@0 | 49 | // Check that zip state is right at this stage. |
michael@0 | 50 | testpass(zipW); |
michael@0 | 51 | zipW.close(); |
michael@0 | 52 | |
michael@0 | 53 | // Check to see if we get the same results loading afresh. |
michael@0 | 54 | zipW.open(tmpFile, PR_RDWR); |
michael@0 | 55 | testpass(zipW); |
michael@0 | 56 | zipW.close(); |
michael@0 | 57 | |
michael@0 | 58 | // Test the stored data with the zipreader |
michael@0 | 59 | var zipR = new ZipReader(tmpFile); |
michael@0 | 60 | testpass(zipR); |
michael@0 | 61 | zipR.test(FILENAME); |
michael@0 | 62 | var stream = Cc["@mozilla.org/scriptableinputstream;1"] |
michael@0 | 63 | .createInstance(Ci.nsIScriptableInputStream); |
michael@0 | 64 | stream.init(zipR.getInputStream(FILENAME)); |
michael@0 | 65 | var result = stream.read(DATA.length); |
michael@0 | 66 | stream.close(); |
michael@0 | 67 | zipR.close(); |
michael@0 | 68 | |
michael@0 | 69 | do_check_eq(result, DATA); |
michael@0 | 70 | } |