mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10e97429b9
--HG-- rename : services/sync/modules/async.js => services/common/async.js rename : services/sync/modules/log4moz.js => services/common/log4moz.js rename : services/sync/modules/ext/Observers.js => services/common/observers.js rename : services/sync/modules/ext/Preferences.js => services/common/preferences.js rename : services/sync/modules/ext/StringBundle.js => services/common/stringbundle.js rename : services/sync/tests/unit/test_async_chain.js => services/common/tests/unit/test_async_chain.js rename : services/sync/tests/unit/test_async_querySpinningly.js => services/common/tests/unit/test_async_querySpinningly.js rename : services/sync/tests/unit/test_log4moz.js => services/common/tests/unit/test_log4moz.js rename : services/sync/tests/unit/test_Observers.js => services/common/tests/unit/test_observers.js rename : services/sync/tests/unit/test_Preferences.js => services/common/tests/unit/test_preferences.js rename : services/sync/tests/unit/test_restrequest.js => services/common/tests/unit/test_restrequest.js rename : services/sync/tests/unit/test_utils_makeURI.js => services/common/tests/unit/test_utils_makeURI.js rename : services/sync/tests/unit/test_utils_namedTimer.js => services/common/tests/unit/test_utils_namedTimer.js rename : services/sync/tests/unit/test_utils_stackTrace.js => services/common/tests/unit/test_utils_stackTrace.js
191 lines
5.8 KiB
JavaScript
191 lines
5.8 KiB
JavaScript
Cu.import("resource://services-common/async.js");
|
|
Cu.import("resource://services-sync/util.js");
|
|
Cu.import("resource://services-sync/engines.js");
|
|
Cu.import("resource://services-sync/engines/history.js");
|
|
Cu.import("resource://services-sync/engines/bookmarks.js");
|
|
|
|
const kDBName = "places.sqlite";
|
|
const storageSvc = Cc["@mozilla.org/storage/service;1"]
|
|
.getService(Ci.mozIStorageService);
|
|
|
|
const fxuri = Utils.makeURI("http://getfirefox.com/");
|
|
const tburi = Utils.makeURI("http://getthunderbird.com/");
|
|
|
|
function setPlacesDatabase(aFileName) {
|
|
removePlacesDatabase();
|
|
_("Copying over places.sqlite.");
|
|
let file = do_get_file(aFileName);
|
|
file.copyTo(gSyncProfile, kDBName);
|
|
}
|
|
|
|
function removePlacesDatabase() {
|
|
_("Removing places.sqlite.");
|
|
let file = gSyncProfile.clone();
|
|
file.append(kDBName);
|
|
try {
|
|
file.remove(false);
|
|
} catch (ex) {
|
|
// Windows is awesome. NOT.
|
|
}
|
|
}
|
|
|
|
Svc.Obs.add("places-shutdown", function () {
|
|
do_timeout(0, removePlacesDatabase);
|
|
});
|
|
|
|
|
|
// Verify initial database state. Function borrowed from places tests.
|
|
function test_initial_state() {
|
|
// Mostly sanity checks our starting DB to make sure it's setup as we expect
|
|
// it to be.
|
|
let dbFile = gSyncProfile.clone();
|
|
dbFile.append(kDBName);
|
|
let db = storageSvc.openUnsharedDatabase(dbFile);
|
|
|
|
let stmt = db.createStatement("PRAGMA journal_mode");
|
|
do_check_true(stmt.executeStep());
|
|
// WAL journal mode should have been unset this database when it was migrated
|
|
// down to v10.
|
|
do_check_neq(stmt.getString(0).toLowerCase(), "wal");
|
|
stmt.finalize();
|
|
|
|
do_check_true(db.indexExists("moz_bookmarks_guid_uniqueindex"));
|
|
do_check_true(db.indexExists("moz_places_guid_uniqueindex"));
|
|
|
|
// There should be a non-zero amount of bookmarks without a guid.
|
|
stmt = db.createStatement(
|
|
"SELECT COUNT(1) "
|
|
+ "FROM moz_bookmarks "
|
|
+ "WHERE guid IS NULL "
|
|
);
|
|
do_check_true(stmt.executeStep());
|
|
do_check_neq(stmt.getInt32(0), 0);
|
|
stmt.finalize();
|
|
|
|
// There should be a non-zero amount of places without a guid.
|
|
stmt = db.createStatement(
|
|
"SELECT COUNT(1) "
|
|
+ "FROM moz_places "
|
|
+ "WHERE guid IS NULL "
|
|
);
|
|
do_check_true(stmt.executeStep());
|
|
do_check_neq(stmt.getInt32(0), 0);
|
|
stmt.finalize();
|
|
|
|
// Check our schema version to make sure it is actually at 10.
|
|
do_check_eq(db.schemaVersion, 10);
|
|
|
|
db.close();
|
|
}
|
|
|
|
function test_history_guids() {
|
|
let engine = new HistoryEngine();
|
|
let store = engine._store;
|
|
|
|
PlacesUtils.history.addPageWithDetails(fxuri, "Get Firefox!",
|
|
Date.now() * 1000);
|
|
PlacesUtils.history.addPageWithDetails(tburi, "Get Thunderbird!",
|
|
Date.now() * 1000);
|
|
|
|
// Hack: flush the places db by adding a random bookmark.
|
|
let uri = Utils.makeURI("http://mozilla.com/");
|
|
let fxid = PlacesUtils.bookmarks.insertBookmark(
|
|
PlacesUtils.bookmarks.toolbarFolder,
|
|
uri,
|
|
PlacesUtils.bookmarks.DEFAULT_INDEX,
|
|
"Mozilla");
|
|
|
|
let fxguid = store.GUIDForUri(fxuri, true);
|
|
let tbguid = store.GUIDForUri(tburi, true);
|
|
dump("fxguid: " + fxguid + "\n");
|
|
dump("tbguid: " + tbguid + "\n");
|
|
|
|
_("History: Verify GUIDs are added to the guid column.");
|
|
let connection = PlacesUtils.history
|
|
.QueryInterface(Ci.nsPIPlacesDatabase)
|
|
.DBConnection;
|
|
let stmt = connection.createAsyncStatement(
|
|
"SELECT id FROM moz_places WHERE guid = :guid");
|
|
|
|
stmt.params.guid = fxguid;
|
|
let result = Async.querySpinningly(stmt, ["id"]);
|
|
do_check_eq(result.length, 1);
|
|
|
|
stmt.params.guid = tbguid;
|
|
result = Async.querySpinningly(stmt, ["id"]);
|
|
do_check_eq(result.length, 1);
|
|
stmt.finalize();
|
|
|
|
_("History: Verify GUIDs weren't added to annotations.");
|
|
stmt = connection.createAsyncStatement(
|
|
"SELECT a.content AS guid FROM moz_annos a WHERE guid = :guid");
|
|
|
|
stmt.params.guid = fxguid;
|
|
result = Async.querySpinningly(stmt, ["guid"]);
|
|
do_check_eq(result.length, 0);
|
|
|
|
stmt.params.guid = tbguid;
|
|
result = Async.querySpinningly(stmt, ["guid"]);
|
|
do_check_eq(result.length, 0);
|
|
stmt.finalize();
|
|
}
|
|
|
|
function test_bookmark_guids() {
|
|
let engine = new BookmarksEngine();
|
|
let store = engine._store;
|
|
|
|
let fxid = PlacesUtils.bookmarks.insertBookmark(
|
|
PlacesUtils.bookmarks.toolbarFolder,
|
|
fxuri,
|
|
PlacesUtils.bookmarks.DEFAULT_INDEX,
|
|
"Get Firefox!");
|
|
let tbid = PlacesUtils.bookmarks.insertBookmark(
|
|
PlacesUtils.bookmarks.toolbarFolder,
|
|
tburi,
|
|
PlacesUtils.bookmarks.DEFAULT_INDEX,
|
|
"Get Thunderbird!");
|
|
|
|
let fxguid = store.GUIDForId(fxid);
|
|
let tbguid = store.GUIDForId(tbid);
|
|
|
|
_("Bookmarks: Verify GUIDs are added to the guid column.");
|
|
let connection = PlacesUtils.history
|
|
.QueryInterface(Ci.nsPIPlacesDatabase)
|
|
.DBConnection;
|
|
let stmt = connection.createAsyncStatement(
|
|
"SELECT id FROM moz_bookmarks WHERE guid = :guid");
|
|
|
|
stmt.params.guid = fxguid;
|
|
let result = Async.querySpinningly(stmt, ["id"]);
|
|
do_check_eq(result.length, 1);
|
|
do_check_eq(result[0].id, fxid);
|
|
|
|
stmt.params.guid = tbguid;
|
|
result = Async.querySpinningly(stmt, ["id"]);
|
|
do_check_eq(result.length, 1);
|
|
do_check_eq(result[0].id, tbid);
|
|
stmt.finalize();
|
|
|
|
_("Bookmarks: Verify GUIDs weren't added to annotations.");
|
|
stmt = connection.createAsyncStatement(
|
|
"SELECT a.content AS guid FROM moz_items_annos a WHERE guid = :guid");
|
|
|
|
stmt.params.guid = fxguid;
|
|
result = Async.querySpinningly(stmt, ["guid"]);
|
|
do_check_eq(result.length, 0);
|
|
|
|
stmt.params.guid = tbguid;
|
|
result = Async.querySpinningly(stmt, ["guid"]);
|
|
do_check_eq(result.length, 0);
|
|
stmt.finalize();
|
|
}
|
|
|
|
function run_test() {
|
|
setPlacesDatabase("places_v10_from_v11.sqlite");
|
|
|
|
_("Verify initial setup: v11 database is available");
|
|
test_initial_state();
|
|
test_history_guids();
|
|
test_bookmark_guids();
|
|
}
|