2010-02-21 17:53:13 +03:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
2012-06-13 01:23:32 +04:00
|
|
|
function continue_test(status, entry) {
|
|
|
|
do_check_eq(status, Components.results.NS_OK);
|
2013-09-20 13:11:25 +04:00
|
|
|
// TODO - mayhemer: remove this tests completely
|
|
|
|
// entry.deviceID;
|
2010-02-21 17:53:13 +03:00
|
|
|
// if the above line does not crash, the test was successful
|
2012-06-13 01:23:32 +04:00
|
|
|
do_test_finished();
|
|
|
|
}
|
|
|
|
|
|
|
|
function run_test() {
|
2013-09-20 13:11:25 +04:00
|
|
|
asyncOpenCacheEntry("http://some.key/",
|
|
|
|
"disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
2012-06-13 01:23:32 +04:00
|
|
|
continue_test);
|
|
|
|
do_test_pending();
|
2010-02-21 17:53:13 +03:00
|
|
|
}
|