mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
de550182d6
--HG-- rename : dom/datastore/tests/file_app.template.webapp => dom/datastore/tests/file_app2.template.webapp rename : dom/datastore/tests/test_revision.html => dom/datastore/tests/file_revision.html
197 lines
6.8 KiB
HTML
197 lines
6.8 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for DataStore - basic operation on a readonly db</title>
|
|
</head>
|
|
<body>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript;version=1.7">
|
|
|
|
var gStore;
|
|
var gPreviousRevisionId = '';
|
|
|
|
function is(a, b, msg) {
|
|
alert((a === b ? 'OK' : 'KO') + ' ' + msg)
|
|
}
|
|
|
|
function isnot(a, b, msg) {
|
|
alert((a !== b ? 'OK' : 'KO') + ' ' + msg)
|
|
}
|
|
|
|
function ok(a, msg) {
|
|
alert((a ? 'OK' : 'KO')+ ' ' + msg)
|
|
}
|
|
|
|
function cbError() {
|
|
alert('KO error');
|
|
}
|
|
|
|
function finish() {
|
|
alert('DONE');
|
|
}
|
|
|
|
function testGetDataStores() {
|
|
navigator.getDataStores('foo').then(function(stores) {
|
|
is(stores.length, 1, "getDataStores('foo') returns 1 element");
|
|
is(stores[0].name, 'foo', 'The dataStore.name is foo');
|
|
is(stores[0].readOnly, false, 'The dataStore foo is not in readonly');
|
|
|
|
gStore = stores[0];
|
|
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreAdd(value, expectedId) {
|
|
return gStore.add(value).then(function(id) {
|
|
is(id, expectedId, "store.add() is called");
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreUpdate(id, value) {
|
|
return gStore.update(id, value).then(function(retId) {
|
|
is(id, retId, "store.update() is called with the right id");
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreRemove(id, expectedSuccess) {
|
|
return gStore.remove(id).then(function(success) {
|
|
is(success, expectedSuccess, "store.remove() returns the right value");
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreRevisionId() {
|
|
is(/[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}/.test(gStore.revisionId), true, "store.revisionId returns something");
|
|
runTest();
|
|
}
|
|
|
|
function testStoreWrongRevisions(id) {
|
|
return gStore.getChanges(id).then(
|
|
function(what) {
|
|
is(what, undefined, "Wrong revisionId == undefined object");
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreRevisions(id, changes) {
|
|
return gStore.getChanges(id).then(function(what) {
|
|
is(JSON.stringify(changes.addedIds),
|
|
JSON.stringify(what.addedIds), "store.revisions - addedIds: " +
|
|
JSON.stringify(what.addedIds) + " | " + JSON.stringify(changes.addedIds));
|
|
is(JSON.stringify(changes.updatedIds),
|
|
JSON.stringify(what.updatedIds), "store.revisions - updatedIds: " +
|
|
JSON.stringify(what.updatedIds) + " | " + JSON.stringify(changes.updatedIds));
|
|
is(JSON.stringify(changes.removedIds),
|
|
JSON.stringify(what.removedIds), "store.revisions - removedIds: " +
|
|
JSON.stringify(what.removedIds) + " | " + JSON.stringify(changes.removedIds));
|
|
runTest();
|
|
}, cbError);
|
|
}
|
|
|
|
function testStoreRevisionIdChanged() {
|
|
isnot(gStore.revisionId, gPreviousRevisionId, "Revision changed");
|
|
gPreviousRevisionId = gStore.revisionId;
|
|
runTest();
|
|
}
|
|
|
|
function testStoreRevisionIdNotChanged() {
|
|
is(gStore.revisionId, gPreviousRevisionId, "Revision changed");
|
|
runTest();
|
|
}
|
|
|
|
var revisions = [];
|
|
|
|
var tests = [
|
|
// Test for GetDataStore
|
|
testGetDataStores,
|
|
|
|
// The first revision is not empty
|
|
testStoreRevisionIdChanged,
|
|
|
|
// wrong revision ID
|
|
function() { testStoreWrongRevisions('foobar'); },
|
|
|
|
// Add
|
|
function() { testStoreAdd({ number: 42 }, 1); },
|
|
function() { revisions.push(gStore.revisionId); testStoreRevisionId(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
// Add
|
|
function() { testStoreAdd({ number: 42 }, 2); },
|
|
function() { revisions.push(gStore.revisionId); runTest(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [2], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[1], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
// Add
|
|
function() { testStoreAdd({ number: 42 }, 3); },
|
|
function() { revisions.push(gStore.revisionId); runTest(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [2,3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[1], { addedIds: [3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[2], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
// Update
|
|
function() { testStoreUpdate(3, { number: 43 }); },
|
|
function() { revisions.push(gStore.revisionId); runTest(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [2,3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[1], { addedIds: [3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[2], { addedIds: [], updatedIds: [3], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[3], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
// Update
|
|
function() { testStoreUpdate(3, { number: 42 }); },
|
|
function() { revisions.push(gStore.revisionId); runTest(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [2,3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[1], { addedIds: [3], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[2], { addedIds: [], updatedIds: [3], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[3], { addedIds: [], updatedIds: [3], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[4], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
// Remove
|
|
function() { testStoreRemove(3, true); },
|
|
function() { revisions.push(gStore.revisionId); runTest(); },
|
|
testStoreRevisionIdChanged,
|
|
function() { testStoreRevisions(revisions[0], { addedIds: [2], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[1], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
function() { testStoreRevisions(revisions[2], { addedIds: [], updatedIds: [], removedIds: [3] }); },
|
|
function() { testStoreRevisions(revisions[3], { addedIds: [], updatedIds: [], removedIds: [3] }); },
|
|
function() { testStoreRevisions(revisions[4], { addedIds: [], updatedIds: [], removedIds: [3] }); },
|
|
function() { testStoreRevisions(revisions[5], { addedIds: [], updatedIds: [], removedIds: [] }); },
|
|
|
|
function() { testStoreRemove(3, false); },
|
|
testStoreRevisionIdNotChanged,
|
|
|
|
// Remove
|
|
function() { testStoreRemove(42, false); },
|
|
testStoreRevisionIdNotChanged,
|
|
];
|
|
|
|
function runTest() {
|
|
if (!tests.length) {
|
|
finish();
|
|
return;
|
|
}
|
|
|
|
var test = tests.shift();
|
|
test();
|
|
}
|
|
|
|
runTest();
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|