Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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 | function setup() |
michael@0 | 6 | { |
michael@0 | 7 | getOpenedDatabase().createTable("t1", "x TEXT"); |
michael@0 | 8 | |
michael@0 | 9 | var stmt = createStatement("INSERT INTO t1 (x) VALUES ('/mozilla.org/20070129_1/Europe/Berlin')"); |
michael@0 | 10 | stmt.execute(); |
michael@0 | 11 | stmt.finalize(); |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | function test_bug429521() |
michael@0 | 15 | { |
michael@0 | 16 | var stmt = createStatement( |
michael@0 | 17 | "SELECT DISTINCT(zone) FROM ("+ |
michael@0 | 18 | "SELECT x AS zone FROM t1 WHERE x LIKE '/mozilla.org%'" + |
michael@0 | 19 | ");"); |
michael@0 | 20 | |
michael@0 | 21 | print("*** test_bug429521: started"); |
michael@0 | 22 | |
michael@0 | 23 | try { |
michael@0 | 24 | while (stmt.executeStep()) { |
michael@0 | 25 | print("*** test_bug429521: step() Read wrapper.row.zone"); |
michael@0 | 26 | |
michael@0 | 27 | // BUG: the print commands after the following statement |
michael@0 | 28 | // are never executed. Script stops immediately. |
michael@0 | 29 | var tzId = stmt.row.zone; |
michael@0 | 30 | |
michael@0 | 31 | print("*** test_bug429521: step() Read wrapper.row.zone finished"); |
michael@0 | 32 | } |
michael@0 | 33 | } catch (e) { |
michael@0 | 34 | print("*** test_bug429521: " + e); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | print("*** test_bug429521: finished"); |
michael@0 | 38 | |
michael@0 | 39 | stmt.finalize(); |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | function run_test() |
michael@0 | 43 | { |
michael@0 | 44 | setup(); |
michael@0 | 45 | |
michael@0 | 46 | test_bug429521(); |
michael@0 | 47 | |
michael@0 | 48 | cleanup(); |
michael@0 | 49 | } |