smartdata/test/test.easystore.ts

56 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-07-21 18:08:18 +00:00
import { tap, expect } from '@push.rocks/tapbundle';
import { Qenv } from '@push.rocks/qenv';
import * as smartmongo from '@push.rocks/smartmongo';
2022-05-16 22:33:44 +00:00
import { smartunique } from '../ts/smartdata.plugins.js';
2021-10-16 17:54:05 +00:00
const testQenv = new Qenv(process.cwd(), process.cwd() + '/.nogit/');
console.log(process.memoryUsage());
// the tested module
2022-05-16 22:33:44 +00:00
import * as smartdata from '../ts/index.js';
2021-10-16 17:54:05 +00:00
// =======================================
// Connecting to the database server
// =======================================
2022-05-16 22:33:44 +00:00
let smartmongoInstance: smartmongo.SmartMongo;
2021-10-16 17:54:05 +00:00
let testDb: smartdata.SmartdataDb;
2021-11-12 18:03:06 +00:00
tap.test('should create a testinstance as database', async () => {
2022-05-16 22:33:44 +00:00
smartmongoInstance = await smartmongo.SmartMongo.createAndStart();
testDb = new smartdata.SmartdataDb(await smartmongoInstance.getMongoDescriptor());
2021-10-16 17:54:05 +00:00
await testDb.init();
});
2021-11-12 18:03:06 +00:00
tap.skip.test('should connect to atlas', async (tools) => {
2021-11-12 16:32:43 +00:00
const databaseName = `test-smartdata-${smartunique.shortId()}`;
testDb = new smartdata.SmartdataDb({
2023-08-14 23:01:16 +00:00
mongoDbUrl: await testQenv.getEnvVarOnDemand('MONGO_URL'),
2021-11-12 16:32:43 +00:00
mongoDbName: databaseName,
});
2021-11-12 17:04:08 +00:00
await testDb.init();
2021-11-12 16:32:43 +00:00
});
2021-10-16 17:54:05 +00:00
let easyStore: smartdata.EasyStore<{
key1: string;
key2: string;
}>;
tap.test('should create an easystore', async () => {
easyStore = await testDb.createEasyStore('hellothere');
await easyStore.writeKey('key1', 'hello');
const retrievedKey = await easyStore.readKey('key1');
2022-05-16 22:33:44 +00:00
expect(retrievedKey).toEqual('hello');
2021-10-16 19:17:02 +00:00
});
2021-10-16 17:54:05 +00:00
tap.test('close', async () => {
2022-05-17 19:26:17 +00:00
await testDb.mongoDb.dropDatabase();
await testDb.close();
2022-05-16 22:33:44 +00:00
if (smartmongoInstance) {
await smartmongoInstance.stop();
2021-11-12 17:12:59 +00:00
}
2021-10-16 19:17:02 +00:00
});
2021-10-16 17:54:05 +00:00
2021-10-16 19:17:02 +00:00
tap.start();