
Getting up and running with IndexedDB was pretty easy, thanks to backbone. The tricky part was making reads and writes asynchronous. In that process I did some refactoring on Whisper.Threads, which has been renamed Conversations for consistency with the view names. This change also adds the unlimitedStorage permission.
86 lines
2.3 KiB
JavaScript
86 lines
2.3 KiB
JavaScript
/*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
mocha.setup("bdd");
|
|
window.assert = chai.assert;
|
|
|
|
(function() {
|
|
var OriginalReporter = mocha._reporter;
|
|
|
|
var SauceReporter = function(runner) {
|
|
var failedTests = [];
|
|
|
|
runner.on('end', function() {
|
|
window.mochaResults = runner.stats;
|
|
window.mochaResults.reports = failedTests;
|
|
});
|
|
|
|
runner.on('fail', function(test, err) {
|
|
var flattenTitles = function(test) {
|
|
var titles = [];
|
|
while (test.parent.title) {
|
|
titles.push(test.parent.title);
|
|
test = test.parent;
|
|
}
|
|
return titles.reverse();
|
|
};
|
|
failedTests.push({
|
|
name: test.title,
|
|
result: false,
|
|
message: err.message,
|
|
stack: err.stack,
|
|
titles: flattenTitles(test)
|
|
});
|
|
});
|
|
|
|
new OriginalReporter(runner);
|
|
};
|
|
|
|
SauceReporter.prototype = OriginalReporter.prototype;
|
|
|
|
mocha.reporter(SauceReporter);
|
|
}());
|
|
|
|
// Override the database id.
|
|
window.Whisper = window.Whisper || {};
|
|
window.Whisper.Database = window.Whisper.Database || {};
|
|
Whisper.Database.id = 'test';
|
|
|
|
/*
|
|
* global helpers for tests
|
|
*/
|
|
function assertEqualArrayBuffers(ab1, ab2) {
|
|
assert.deepEqual(new Uint8Array(ab1), new Uint8Array(ab2));
|
|
};
|
|
|
|
function arrayBufferToHex(buffer) {
|
|
var array = new Uint8Array(buffer);
|
|
var s = '';
|
|
for (var i in array) {
|
|
var h = array[i].toString(16);
|
|
if (h.length < 2) { s += '0'; }
|
|
s += h;
|
|
}
|
|
return s;
|
|
};
|
|
|
|
function hexToArrayBuffer(str) {
|
|
var ret = new ArrayBuffer(str.length / 2);
|
|
var array = new Uint8Array(ret);
|
|
for (var i = 0; i < str.length/2; i++)
|
|
array[i] = parseInt(str.substr(i*2, 2), 16);
|
|
return ret;
|
|
};
|