|
|
|
@ -104,8 +104,18 @@ describe('Database', async function() {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('Basic functions', async function() {
|
|
|
|
describe('Basic functions', async function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// test both local_db and remote_db
|
|
|
|
|
|
|
|
const local_db_modes = [false, true];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const local_db_mode of local_db_modes) {
|
|
|
|
|
|
|
|
let use_local_db = local_db_mode;
|
|
|
|
|
|
|
|
describe(`Use local DB - ${use_local_db}`, async function() {
|
|
|
|
beforeEach(async function() {
|
|
|
|
beforeEach(async function() {
|
|
|
|
await db_api.connectToDB();
|
|
|
|
if (!use_local_db) {
|
|
|
|
|
|
|
|
this.timeout(120000);
|
|
|
|
|
|
|
|
await db_api.connectToDB(0);
|
|
|
|
|
|
|
|
}
|
|
|
|
await db_api.removeAllRecords('test');
|
|
|
|
await db_api.removeAllRecords('test');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('Add and read record', async function() {
|
|
|
|
it('Add and read record', async function() {
|
|
|
|
@ -115,7 +125,23 @@ describe('Database', async function() {
|
|
|
|
assert(added_record['test_add'] === 'test');
|
|
|
|
assert(added_record['test_add'] === 'test');
|
|
|
|
await db_api.removeRecord('test', {test_add: 'test'});
|
|
|
|
await db_api.removeRecord('test', {test_add: 'test'});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Add and read record - Nested property', async function() {
|
|
|
|
|
|
|
|
this.timeout(120000);
|
|
|
|
|
|
|
|
await db_api.insertRecordIntoTable('test', {test_add: 'test', test_nested: {test_key1: 'test1', test_key2: 'test2'}});
|
|
|
|
|
|
|
|
const added_record = await db_api.getRecord('test', {test_add: 'test', 'test_nested.test_key1': 'test1', 'test_nested.test_key2': 'test2'});
|
|
|
|
|
|
|
|
const not_added_record = await db_api.getRecord('test', {test_add: 'test', 'test_nested.test_key1': 'test1', 'test_nested.test_key2': 'test3'});
|
|
|
|
|
|
|
|
assert(added_record['test_add'] === 'test');
|
|
|
|
|
|
|
|
assert(!not_added_record);
|
|
|
|
|
|
|
|
await db_api.removeRecord('test', {test_add: 'test'});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Replace filter', async function() {
|
|
|
|
|
|
|
|
this.timeout(120000);
|
|
|
|
|
|
|
|
await db_api.insertRecordIntoTable('test', {test_replace_filter: 'test', test_nested: {test_key1: 'test1', test_key2: 'test2'}}, {test_nested: {test_key1: 'test1', test_key2: 'test2'}});
|
|
|
|
|
|
|
|
await db_api.insertRecordIntoTable('test', {test_replace_filter: 'test', test_nested: {test_key1: 'test1', test_key2: 'test2'}}, {test_nested: {test_key1: 'test1', test_key2: 'test2'}});
|
|
|
|
|
|
|
|
const count = await db_api.getRecords('test', {test_replace_filter: 'test'}, true);
|
|
|
|
|
|
|
|
assert(count === 1);
|
|
|
|
|
|
|
|
await db_api.removeRecord('test', {test_replace_filter: 'test'});
|
|
|
|
|
|
|
|
});
|
|
|
|
it('Find duplicates by key', async function() {
|
|
|
|
it('Find duplicates by key', async function() {
|
|
|
|
const test_duplicates = [
|
|
|
|
const test_duplicates = [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
@ -250,6 +276,8 @@ describe('Database', async function() {
|
|
|
|
assert(success);
|
|
|
|
assert(success);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('Local DB Filters', async function() {
|
|
|
|
describe('Local DB Filters', async function() {
|
|
|
|
it('Basic', async function() {
|
|
|
|
it('Basic', async function() {
|
|
|
|
|