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 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta charset="utf-8"> |
michael@0 | 5 | <title>Test for DataStore - basic operation on a readonly db</title> |
michael@0 | 6 | </head> |
michael@0 | 7 | <body> |
michael@0 | 8 | <div id="container"></div> |
michael@0 | 9 | <script type="application/javascript;version=1.7"> |
michael@0 | 10 | |
michael@0 | 11 | function is(a, b, msg) { |
michael@0 | 12 | dump((a === b ? 'OK' : 'KO') + ' ' + msg + "\n") |
michael@0 | 13 | alert((a === b ? 'OK' : 'KO') + ' ' + msg) |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | function ok(a, msg) { |
michael@0 | 17 | alert((a ? 'OK' : 'KO')+ ' ' + msg) |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function cbError() { |
michael@0 | 21 | alert('KO error'); |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | function finish() { |
michael@0 | 25 | alert('DONE'); |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | function runTest() { |
michael@0 | 29 | navigator.getDataStores('bar').then(function(stores) { |
michael@0 | 30 | is(stores.length, 1, "getDataStores('bar') returns 1 element"); |
michael@0 | 31 | is(stores[0].name, 'bar', 'The dataStore.name is bar'); |
michael@0 | 32 | is(stores[0].readOnly, true, 'The dataStore bar is eadonly'); |
michael@0 | 33 | |
michael@0 | 34 | var store = stores[0]; |
michael@0 | 35 | ok("get" in store, "store.get exists"); |
michael@0 | 36 | ok("put" in store, "store.put exists"); |
michael@0 | 37 | ok("add" in store, "store.add exists"); |
michael@0 | 38 | ok("remove" in store, "store.remove exists"); |
michael@0 | 39 | ok("clear" in store, "store.clear exists"); |
michael@0 | 40 | |
michael@0 | 41 | var f = store.clear(); |
michael@0 | 42 | f = f.then(cbError, function() { |
michael@0 | 43 | ok(true, "store.clear() fails because the db is readonly"); |
michael@0 | 44 | return store.remove(123); |
michael@0 | 45 | }); |
michael@0 | 46 | |
michael@0 | 47 | f = f.then(cbError, function() { |
michael@0 | 48 | ok(true, "store.remove() fails because the db is readonly"); |
michael@0 | 49 | return store.add(123, true); |
michael@0 | 50 | }); |
michael@0 | 51 | |
michael@0 | 52 | f = f.then(cbError, function() { |
michael@0 | 53 | ok(true, "store.add() fails because the db is readonly"); |
michael@0 | 54 | return store.put({}, 123); |
michael@0 | 55 | }) |
michael@0 | 56 | |
michael@0 | 57 | f = f.then(cbError, function() { |
michael@0 | 58 | ok(true, "store.put() fails because the db is readonly"); |
michael@0 | 59 | }) |
michael@0 | 60 | |
michael@0 | 61 | f.then(function() { |
michael@0 | 62 | // All done. |
michael@0 | 63 | ok(true, "All done"); |
michael@0 | 64 | finish(); |
michael@0 | 65 | }); |
michael@0 | 66 | }, cbError); |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | runTest(); |
michael@0 | 70 | </script> |
michael@0 | 71 | </body> |
michael@0 | 72 | </html> |