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 | function run_test() |
michael@0 | 7 | { |
michael@0 | 8 | var test; |
michael@0 | 9 | // zipW is an uninitialised zipwriter at this point. |
michael@0 | 10 | try { |
michael@0 | 11 | test = zipW.file; |
michael@0 | 12 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 13 | } |
michael@0 | 14 | catch (e) { |
michael@0 | 15 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | try { |
michael@0 | 19 | test = zipW.comment; |
michael@0 | 20 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 21 | } |
michael@0 | 22 | catch (e) { |
michael@0 | 23 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | try { |
michael@0 | 27 | zipW.comment = "test"; |
michael@0 | 28 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 29 | } |
michael@0 | 30 | catch (e) { |
michael@0 | 31 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | try { |
michael@0 | 35 | zipW.addEntryDirectory("test", 0, false); |
michael@0 | 36 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 37 | } |
michael@0 | 38 | catch (e) { |
michael@0 | 39 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | try { |
michael@0 | 43 | zipW.addEntryFile("test", Ci.nsIZipWriter.COMPRESSION_DEFAULT, tmpDir, false); |
michael@0 | 44 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 45 | } |
michael@0 | 46 | catch (e) { |
michael@0 | 47 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 48 | } |
michael@0 | 49 | |
michael@0 | 50 | try { |
michael@0 | 51 | zipW.removeEntry("test", false); |
michael@0 | 52 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 53 | } |
michael@0 | 54 | catch (e) { |
michael@0 | 55 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | try { |
michael@0 | 59 | zipW.processQueue(null, null); |
michael@0 | 60 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 61 | } |
michael@0 | 62 | catch (e) { |
michael@0 | 63 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | try { |
michael@0 | 67 | zipW.close(); |
michael@0 | 68 | do_throw("Should have thrown uninitialized error."); |
michael@0 | 69 | } |
michael@0 | 70 | catch (e) { |
michael@0 | 71 | do_check_eq(e.result, Components.results.NS_ERROR_NOT_INITIALIZED); |
michael@0 | 72 | } |
michael@0 | 73 | } |