2016-04-13 11:15:04 +02:00
|
|
|
"use strict";
|
|
|
|
|
2017-07-13 01:48:31 +02:00
|
|
|
import Promise from 'bluebird';
|
2016-04-13 11:15:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform common actions before each test case, e.g. printing the test case
|
|
|
|
* name to stdout.
|
|
|
|
* @param {Mocha.Context} context The test context
|
|
|
|
*/
|
2017-06-14 18:08:49 +02:00
|
|
|
export function beforeEach(context) {
|
2016-04-13 11:15:04 +02:00
|
|
|
var desc = context.currentTest.fullTitle();
|
|
|
|
console.log();
|
|
|
|
console.log(desc);
|
|
|
|
console.log(new Array(1 + desc.length).join("="));
|
2016-08-11 12:40:40 +02:00
|
|
|
|
|
|
|
// some tests store things in localstorage. Improve independence of tests
|
|
|
|
// by making sure that they don't inherit any old state.
|
|
|
|
window.localStorage.clear();
|
2017-06-14 18:08:49 +02:00
|
|
|
}
|
2016-04-13 11:15:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns true if the current environment supports webrtc
|
|
|
|
*/
|
2017-06-14 18:08:49 +02:00
|
|
|
export function browserSupportsWebRTC() {
|
2016-04-13 11:15:04 +02:00
|
|
|
var n = global.window.navigator;
|
|
|
|
return n.getUserMedia || n.webkitGetUserMedia ||
|
|
|
|
n.mozGetUserMedia;
|
2017-06-14 18:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function deleteIndexedDB(dbName) {
|
2017-07-13 01:37:04 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-14 18:08:49 +02:00
|
|
|
if (!window.indexedDB) {
|
|
|
|
resolve();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-20 12:01:27 +02:00
|
|
|
const startTime = Date.now();
|
|
|
|
console.log(`${startTime}: Removing indexeddb instance: ${dbName}`);
|
2017-06-14 18:08:49 +02:00
|
|
|
const req = window.indexedDB.deleteDatabase(dbName);
|
|
|
|
|
|
|
|
req.onblocked = () => {
|
2017-06-20 18:41:21 +02:00
|
|
|
console.log(`${Date.now()}: can't yet delete indexeddb ${dbName} because it is open elsewhere`);
|
2017-06-14 18:08:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
req.onerror = (ev) => {
|
|
|
|
reject(new Error(
|
2017-06-20 18:41:21 +02:00
|
|
|
`${Date.now()}: unable to delete indexeddb ${dbName}: ${ev.target.error}`,
|
2017-06-14 18:08:49 +02:00
|
|
|
));
|
|
|
|
};
|
|
|
|
|
|
|
|
req.onsuccess = () => {
|
2017-07-20 12:01:27 +02:00
|
|
|
const now = Date.now();
|
|
|
|
console.log(`${now}: Removed indexeddb instance: ${dbName} in ${now-startTime} ms`);
|
2017-06-14 18:08:49 +02:00
|
|
|
resolve();
|
|
|
|
};
|
2017-06-20 16:35:01 +02:00
|
|
|
}).catch((e) => {
|
2017-06-20 18:41:21 +02:00
|
|
|
console.error(`${Date.now()}: Error removing indexeddb instance ${dbName}: ${e}`);
|
2017-06-20 16:35:01 +02:00
|
|
|
throw e;
|
2017-06-14 18:08:49 +02:00
|
|
|
});
|
|
|
|
}
|