2011-01-28 13:21:21 -08:00
|
|
|
Cu.import("resource://services-sync/util.js");
|
2011-04-19 12:35:04 -07:00
|
|
|
Cu.import("resource://services-sync/record.js");
|
2011-06-14 09:31:31 -07:00
|
|
|
Cu.import("resource://services-sync/engines.js");
|
2010-11-29 16:41:17 -08:00
|
|
|
var btoa;
|
|
|
|
|
2008-04-30 13:01:17 -07:00
|
|
|
let provider = {
|
|
|
|
getFile: function(prop, persistent) {
|
|
|
|
persistent.value = true;
|
2010-08-09 09:38:18 -07:00
|
|
|
switch (prop) {
|
|
|
|
case "ExtPrefDL":
|
2011-05-20 18:45:51 -07:00
|
|
|
return [Services.dirsvc.get("CurProcD", Ci.nsIFile)];
|
2010-08-09 09:38:18 -07:00
|
|
|
default:
|
|
|
|
throw Cr.NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-04-30 13:01:17 -07:00
|
|
|
},
|
2011-05-20 18:45:51 -07:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIDirectoryServiceProvider])
|
2008-06-16 16:42:32 -07:00
|
|
|
};
|
2011-05-20 18:45:51 -07:00
|
|
|
Services.dirsvc.QueryInterface(Ci.nsIDirectoryService).registerProvider(provider);
|
2008-06-16 16:42:32 -07:00
|
|
|
|
2011-10-27 22:25:01 -07:00
|
|
|
let timer;
|
|
|
|
function waitForZeroTimer(callback) {
|
|
|
|
// First wait >100ms (nsITimers can take up to that much time to fire, so
|
|
|
|
// we can account for the timer in delayedAutoconnect) and then two event
|
|
|
|
// loop ticks (to account for the Utils.nextTick() in autoConnect).
|
|
|
|
let ticks = 2;
|
|
|
|
function wait() {
|
|
|
|
if (ticks) {
|
|
|
|
ticks -= 1;
|
|
|
|
Utils.nextTick(wait);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
timer = Utils.namedTimer(wait, 150, {}, "timer");
|
|
|
|
}
|
|
|
|
|
2010-11-29 16:41:17 -08:00
|
|
|
btoa = Cu.import("resource://services-sync/log4moz.js").btoa;
|
2008-06-19 17:04:04 -07:00
|
|
|
function getTestLogger(component) {
|
2008-11-03 14:41:39 -08:00
|
|
|
return Log4Moz.repository.getLogger("Testing");
|
2008-06-19 17:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function initTestLogging(level) {
|
2008-06-16 16:22:00 -07:00
|
|
|
function LogStats() {
|
|
|
|
this.errorsLogged = 0;
|
|
|
|
}
|
|
|
|
LogStats.prototype = {
|
2008-06-09 20:51:23 -07:00
|
|
|
format: function BF_format(message) {
|
|
|
|
if (message.level == Log4Moz.Level.Error)
|
2008-06-16 16:22:00 -07:00
|
|
|
this.errorsLogged += 1;
|
2008-06-09 20:51:23 -07:00
|
|
|
return message.loggerName + "\t" + message.levelDesc + "\t" +
|
|
|
|
message.message + "\n";
|
|
|
|
}
|
|
|
|
};
|
2008-06-16 16:22:00 -07:00
|
|
|
LogStats.prototype.__proto__ = new Log4Moz.Formatter();
|
2008-06-09 20:51:23 -07:00
|
|
|
|
2008-11-03 14:41:39 -08:00
|
|
|
var log = Log4Moz.repository.rootLogger;
|
2008-06-16 16:22:00 -07:00
|
|
|
var logStats = new LogStats();
|
|
|
|
var appender = new Log4Moz.DumpAppender(logStats);
|
2008-06-19 17:04:04 -07:00
|
|
|
|
|
|
|
if (typeof(level) == "undefined")
|
|
|
|
level = "Debug";
|
|
|
|
getTestLogger().level = Log4Moz.Level[level];
|
|
|
|
|
|
|
|
log.level = Log4Moz.Level.Trace;
|
|
|
|
appender.level = Log4Moz.Level.Trace;
|
2010-06-01 15:07:50 -07:00
|
|
|
// Overwrite any other appenders (e.g. from previous incarnations)
|
2011-02-25 14:42:59 -08:00
|
|
|
log.ownAppenders = [appender];
|
|
|
|
log.updateAppenders();
|
2008-06-09 20:51:23 -07:00
|
|
|
|
2008-06-16 16:22:00 -07:00
|
|
|
return logStats;
|
|
|
|
}
|
|
|
|
|
2008-06-20 17:47:32 -07:00
|
|
|
function FakeFilesystemService(contents) {
|
|
|
|
this.fakeContents = contents;
|
|
|
|
let self = this;
|
|
|
|
|
2011-01-26 21:43:33 -08:00
|
|
|
Utils.jsonSave = function jsonSave(filePath, that, obj, callback) {
|
|
|
|
let json = typeof obj == "function" ? obj.call(that) : obj;
|
|
|
|
self.fakeContents["weave/" + filePath + ".json"] = JSON.stringify(json);
|
|
|
|
callback.call(that);
|
2008-06-20 17:47:32 -07:00
|
|
|
};
|
|
|
|
|
2011-01-26 21:43:33 -08:00
|
|
|
Utils.jsonLoad = function jsonLoad(filePath, that, callback) {
|
|
|
|
let obj;
|
|
|
|
let json = self.fakeContents["weave/" + filePath + ".json"];
|
|
|
|
if (json) {
|
|
|
|
obj = JSON.parse(json);
|
2008-06-20 17:47:32 -07:00
|
|
|
}
|
2011-01-26 21:43:33 -08:00
|
|
|
callback.call(that, obj);
|
2008-06-20 17:47:32 -07:00
|
|
|
};
|
|
|
|
};
|
2008-06-23 14:13:46 -07:00
|
|
|
|
|
|
|
function FakeGUIDService() {
|
|
|
|
let latestGUID = 0;
|
|
|
|
|
|
|
|
Utils.makeGUID = function fake_makeGUID() {
|
|
|
|
return "fake-guid-" + latestGUID++;
|
|
|
|
};
|
|
|
|
}
|
2008-06-23 20:57:10 -07:00
|
|
|
|
2010-06-01 15:07:50 -07:00
|
|
|
|
2011-08-26 10:27:29 -07:00
|
|
|
function fakeSHA256HMAC(message) {
|
|
|
|
message = message.substr(0, 64);
|
|
|
|
while (message.length < 64) {
|
|
|
|
message += " ";
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2010-06-01 15:07:50 -07:00
|
|
|
/*
|
2011-04-20 14:27:19 -07:00
|
|
|
* Mock implementation of WeaveCrypto. It does not encrypt or
|
|
|
|
* decrypt, merely returning the input verbatim.
|
2010-06-01 15:07:50 -07:00
|
|
|
*/
|
|
|
|
function FakeCryptoService() {
|
|
|
|
this.counter = 0;
|
|
|
|
|
|
|
|
delete Svc.Crypto; // get rid of the getter first
|
|
|
|
Svc.Crypto = this;
|
2011-03-01 14:29:41 -08:00
|
|
|
|
2011-08-26 10:27:29 -07:00
|
|
|
CryptoWrapper.prototype.ciphertextHMAC = function ciphertextHMAC(keyBundle) {
|
|
|
|
return fakeSHA256HMAC(this.ciphertext);
|
|
|
|
};
|
2010-06-01 15:07:50 -07:00
|
|
|
}
|
|
|
|
FakeCryptoService.prototype = {
|
|
|
|
|
|
|
|
encrypt: function(aClearText, aSymmetricKey, aIV) {
|
|
|
|
return aClearText;
|
|
|
|
},
|
|
|
|
|
|
|
|
decrypt: function(aCipherText, aSymmetricKey, aIV) {
|
|
|
|
return aCipherText;
|
|
|
|
},
|
|
|
|
|
|
|
|
generateRandomKey: function() {
|
2010-11-29 16:41:17 -08:00
|
|
|
return btoa("fake-symmetric-key-" + this.counter++);
|
2010-06-01 15:07:50 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
generateRandomIV: function() {
|
2010-06-23 03:36:48 -07:00
|
|
|
// A base64-encoded IV is 24 characters long
|
2010-11-29 16:41:17 -08:00
|
|
|
return btoa("fake-fake-fake-random-iv");
|
2010-06-01 15:07:50 -07:00
|
|
|
},
|
|
|
|
|
2010-11-29 16:41:17 -08:00
|
|
|
expandData : function expandData(data, len) {
|
|
|
|
return data;
|
2010-06-01 15:07:50 -07:00
|
|
|
},
|
|
|
|
|
2010-11-29 16:41:17 -08:00
|
|
|
deriveKeyFromPassphrase : function (passphrase, salt, keyLength) {
|
|
|
|
return "some derived key string composed of bytes";
|
2010-06-01 15:07:50 -07:00
|
|
|
},
|
|
|
|
|
2010-11-29 16:41:17 -08:00
|
|
|
generateRandomBytes: function(aByteCount) {
|
|
|
|
return "not-so-random-now-are-we-HA-HA-HA! >:)".slice(aByteCount);
|
2011-05-20 18:45:51 -07:00
|
|
|
}
|
2010-06-01 15:07:50 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-05-20 18:45:51 -07:00
|
|
|
function SyncTestingInfrastructure() {
|
2010-06-16 14:30:08 -07:00
|
|
|
Cu.import("resource://services-sync/identity.js");
|
2008-06-23 20:57:10 -07:00
|
|
|
|
|
|
|
ID.set('WeaveID',
|
|
|
|
new Identity('Mozilla Services Encryption Passphrase', 'foo'));
|
2008-06-30 11:54:10 -07:00
|
|
|
ID.set('WeaveCryptoID',
|
|
|
|
new Identity('Mozilla Services Encryption Passphrase', 'foo'));
|
2008-06-23 20:57:10 -07:00
|
|
|
|
|
|
|
this.logStats = initTestLogging();
|
|
|
|
this.fakeFilesystem = new FakeFilesystemService({});
|
|
|
|
this.fakeGUIDService = new FakeGUIDService();
|
2010-06-01 15:07:50 -07:00
|
|
|
this.fakeCryptoService = new FakeCryptoService();
|
2008-06-23 20:57:10 -07:00
|
|
|
}
|
2009-08-19 18:01:06 -07:00
|
|
|
|
2011-01-26 21:43:24 -08:00
|
|
|
/*
|
|
|
|
* Ensure exceptions from inside callbacks leads to test failures.
|
|
|
|
*/
|
|
|
|
function ensureThrows(func) {
|
|
|
|
return function() {
|
|
|
|
try {
|
|
|
|
func.apply(this, arguments);
|
|
|
|
} catch (ex) {
|
|
|
|
do_throw(ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-19 18:01:06 -07:00
|
|
|
/**
|
|
|
|
* Print some debug message to the console. All arguments will be printed,
|
|
|
|
* separated by spaces.
|
|
|
|
*
|
|
|
|
* @param [arg0, arg1, arg2, ...]
|
|
|
|
* Any number of arguments to print out
|
|
|
|
* @usage _("Hello World") -> prints "Hello World"
|
|
|
|
* @usage _(1, 2, 3) -> prints "1 2 3"
|
|
|
|
*/
|
|
|
|
let _ = function(some, debug, text, to) print(Array.slice(arguments).join(" "));
|
2010-03-25 19:23:44 -07:00
|
|
|
|
|
|
|
_("Setting the identity for passphrase");
|
2010-06-16 14:30:08 -07:00
|
|
|
Cu.import("resource://services-sync/identity.js");
|
2010-03-25 19:23:44 -07:00
|
|
|
|
2010-12-06 17:25:35 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test setup helpers.
|
|
|
|
*/
|
|
|
|
|
2011-08-26 10:27:29 -07:00
|
|
|
// Turn WBO cleartext into fake "encrypted" payload as it goes over the wire.
|
2010-12-06 17:25:35 -08:00
|
|
|
function encryptPayload(cleartext) {
|
|
|
|
if (typeof cleartext == "object") {
|
|
|
|
cleartext = JSON.stringify(cleartext);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {ciphertext: cleartext, // ciphertext == cleartext with fake crypto
|
|
|
|
IV: "irrelevant",
|
2011-08-26 10:27:29 -07:00
|
|
|
hmac: fakeSHA256HMAC(cleartext, Utils.makeHMACKey(""))};
|
2010-12-06 17:25:35 -08:00
|
|
|
}
|
|
|
|
|
2011-04-19 12:35:04 -07:00
|
|
|
function generateNewKeys(collections) {
|
|
|
|
let wbo = CollectionKeys.generateNewKeysWBO(collections);
|
|
|
|
let modified = new_timestamp();
|
|
|
|
CollectionKeys.setContents(wbo.cleartext, modified);
|
|
|
|
}
|
|
|
|
|
2011-08-19 17:17:58 -07:00
|
|
|
function do_check_empty(obj) {
|
|
|
|
do_check_attribute_count(obj, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function do_check_attribute_count(obj, c) {
|
|
|
|
do_check_eq(c, Object.keys(obj).length);
|
|
|
|
}
|
|
|
|
|
2011-04-26 05:25:27 -07:00
|
|
|
function do_check_throws(aFunc, aResult, aStack)
|
|
|
|
{
|
|
|
|
if (!aStack) {
|
|
|
|
try {
|
|
|
|
// We might not have a 'Components' object.
|
|
|
|
aStack = Components.stack.caller;
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
aFunc();
|
|
|
|
} catch (e) {
|
|
|
|
do_check_eq(e.result, aResult, aStack);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do_throw("Expected result " + aResult + ", none thrown.", aStack);
|
|
|
|
}
|
2011-06-14 09:31:31 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A fake engine implementation.
|
|
|
|
* This is used all over the place.
|
|
|
|
*
|
|
|
|
* Complete with record, store, and tracker implementations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function RotaryRecord(collection, id) {
|
|
|
|
CryptoWrapper.call(this, collection, id);
|
|
|
|
}
|
|
|
|
RotaryRecord.prototype = {
|
|
|
|
__proto__: CryptoWrapper.prototype
|
|
|
|
};
|
|
|
|
Utils.deferGetSet(RotaryRecord, "cleartext", ["denomination"]);
|
|
|
|
|
|
|
|
function RotaryStore() {
|
|
|
|
Store.call(this, "Rotary");
|
|
|
|
this.items = {};
|
|
|
|
}
|
|
|
|
RotaryStore.prototype = {
|
|
|
|
__proto__: Store.prototype,
|
|
|
|
|
|
|
|
create: function Store_create(record) {
|
|
|
|
this.items[record.id] = record.denomination;
|
|
|
|
},
|
|
|
|
|
|
|
|
remove: function Store_remove(record) {
|
|
|
|
delete this.items[record.id];
|
|
|
|
},
|
|
|
|
|
|
|
|
update: function Store_update(record) {
|
|
|
|
this.items[record.id] = record.denomination;
|
|
|
|
},
|
|
|
|
|
|
|
|
itemExists: function Store_itemExists(id) {
|
|
|
|
return (id in this.items);
|
|
|
|
},
|
|
|
|
|
|
|
|
createRecord: function(id, collection) {
|
|
|
|
let record = new RotaryRecord(collection, id);
|
|
|
|
record.denomination = this.items[id] || "Data for new record: " + id;
|
|
|
|
return record;
|
|
|
|
},
|
|
|
|
|
|
|
|
changeItemID: function(oldID, newID) {
|
|
|
|
this.items[newID] = this.items[oldID];
|
|
|
|
delete this.items[oldID];
|
|
|
|
},
|
|
|
|
|
|
|
|
getAllIDs: function() {
|
|
|
|
let ids = {};
|
|
|
|
for (let id in this.items) {
|
|
|
|
ids[id] = true;
|
|
|
|
}
|
|
|
|
return ids;
|
|
|
|
},
|
|
|
|
|
|
|
|
wipe: function() {
|
|
|
|
this.items = {};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function RotaryTracker() {
|
|
|
|
Tracker.call(this, "Rotary");
|
|
|
|
}
|
|
|
|
RotaryTracker.prototype = {
|
|
|
|
__proto__: Tracker.prototype
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function RotaryEngine() {
|
|
|
|
SyncEngine.call(this, "Rotary");
|
2011-06-27 08:00:27 -07:00
|
|
|
// Ensure that the engine starts with a clean slate.
|
|
|
|
this.toFetch = [];
|
|
|
|
this.previousFailed = [];
|
2011-06-14 09:31:31 -07:00
|
|
|
}
|
|
|
|
RotaryEngine.prototype = {
|
|
|
|
__proto__: SyncEngine.prototype,
|
|
|
|
_storeObj: RotaryStore,
|
|
|
|
_trackerObj: RotaryTracker,
|
|
|
|
_recordObj: RotaryRecord,
|
|
|
|
|
|
|
|
_findDupe: function(item) {
|
|
|
|
for (let [id, value] in Iterator(this._store.items)) {
|
|
|
|
if (item.denomination == value) {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|