localForage/test/test.webworkers.js
2017-12-18 08:42:12 +02:00

68 lines
1.9 KiB
JavaScript

/* global before:true, beforeEach:true, describe:true, expect:true, it:true, Modernizr:true */
var DRIVERS = [
localforage.INDEXEDDB,
localforage.LOCALSTORAGE,
localforage.WEBSQL
];
DRIVERS.forEach(function(driverName) {
if (
(!localforage.supports(localforage.INDEXEDDB) &&
driverName === localforage.INDEXEDDB) ||
(!localforage.supports(localforage.LOCALSTORAGE) &&
driverName === localforage.LOCALSTORAGE) ||
(!localforage.supports(localforage.WEBSQL) &&
driverName === localforage.WEBSQL)
) {
// Browser doesn't support this storage library, so we exit the API
// tests.
return;
}
describe('Web Worker support in ' + driverName, function() {
'use strict';
before(function(done) {
localforage.setDriver(driverName).then(done);
});
beforeEach(function(done) {
localforage.clear(done);
});
if (!Modernizr.webworkers) {
it.skip("doesn't have web worker support");
return;
}
if (
driverName === localforage.LOCALSTORAGE ||
driverName === localforage.WEBSQL
) {
it.skip(driverName + ' is not supported in web workers');
return;
}
it('saves data', function(done) {
var webWorker = new Worker('/test/webworker-client.js');
webWorker.addEventListener('message', function(e) {
var body = e.data.body;
window.console.log(body);
expect(body).to.be('I have been set');
done();
});
webWorker.addEventListener('error', function(e) {
window.console.log(e);
});
webWorker.postMessage({
driver: driverName,
value: 'I have been set'
});
});
});
});