modules/libjar/zipwriter/test/unit/head_zipwriter.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 /* 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 Ci = Components.interfaces;
michael@0 7 const Cc = Components.classes;
michael@0 8 const NS_ERROR_IN_PROGRESS = 2152398863;
michael@0 9
michael@0 10 const PR_RDONLY = 0x01
michael@0 11 const PR_WRONLY = 0x02
michael@0 12 const PR_RDWR = 0x04
michael@0 13 const PR_CREATE_FILE = 0x08
michael@0 14 const PR_APPEND = 0x10
michael@0 15 const PR_TRUNCATE = 0x20
michael@0 16 const PR_SYNC = 0x40
michael@0 17 const PR_EXCL = 0x80
michael@0 18
michael@0 19 const ZIP_EOCDR_HEADER_SIZE = 22;
michael@0 20 const ZIP_FILE_HEADER_SIZE = 30;
michael@0 21 const ZIP_CDS_HEADER_SIZE = 46;
michael@0 22 const ZIP_METHOD_STORE = 0
michael@0 23 const ZIP_METHOD_DEFLATE = 8
michael@0 24 const ZIP_EXTENDED_TIMESTAMP_SIZE = 9;
michael@0 25
michael@0 26 const PR_USEC_PER_MSEC = 1000;
michael@0 27 const PR_USEC_PER_SEC = 1000000;
michael@0 28 const PR_MSEC_PER_SEC = 1000;
michael@0 29
michael@0 30 const DATA_DIR = "data/";
michael@0 31
michael@0 32 var ioSvc = Cc["@mozilla.org/network/io-service;1"]
michael@0 33 .getService(Ci.nsIIOService);
michael@0 34
michael@0 35 var ZipWriter = Components.Constructor("@mozilla.org/zipwriter;1",
michael@0 36 "nsIZipWriter");
michael@0 37 var ZipReader = Components.Constructor("@mozilla.org/libjar/zip-reader;1",
michael@0 38 "nsIZipReader", "open");
michael@0 39
michael@0 40 var tmpDir = do_get_profile();
michael@0 41 var tmpFile = tmpDir.clone();
michael@0 42 tmpFile.append("zipwriter-test.zip");
michael@0 43 if (tmpFile.exists())
michael@0 44 tmpFile.remove(true);
michael@0 45
michael@0 46 var zipW = new ZipWriter();

mercurial