qenv/test/test.ts

36 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

import * as path from 'path';
2023-08-08 17:08:25 +00:00
import { tap, expect } from '@push.rocks/tapbundle';
2022-07-28 08:09:01 +00:00
import * as qenv from '../ts/index.js';
2023-08-08 17:08:25 +00:00
import * as smartpath from '@push.rocks/smartpath';
2022-07-28 08:09:01 +00:00
2022-07-28 08:10:39 +00:00
export { smartpath };
2022-07-28 08:09:01 +00:00
2022-08-02 12:50:18 +00:00
const testDir = smartpath.get.dirnameFromImportMetaUrl(import.meta.url);
2022-07-28 08:09:01 +00:00
process.env['key1'] = 'original';
2016-06-20 08:45:43 +00:00
let testQenv: qenv.Qenv;
2016-06-20 08:45:43 +00:00
2017-05-12 15:56:51 +00:00
tap.test('should create a new class', async () => {
2022-08-02 12:50:18 +00:00
testQenv = new qenv.Qenv(path.join(testDir, 'assets'), path.join(testDir, 'assets'), false);
2022-07-28 08:09:01 +00:00
expect(testQenv).toBeInstanceOf(qenv.Qenv);
});
2017-05-12 15:56:51 +00:00
tap.test('key1 should be not be overwritten since it is already present', async () => {
2023-08-09 11:24:49 +00:00
expect(await testQenv.getEnvVarOnDemand('key1')).toEqual('original');
expect(await testQenv.getEnvVarOnDemand('key1')).toEqual('original');
});
2016-06-20 08:45:43 +00:00
2017-05-12 15:56:51 +00:00
tap.test('key2 should be read from Yml', async () => {
2023-08-09 11:24:49 +00:00
expect(await testQenv.getEnvVarOnDemand('key2')).toEqual('fromJson');
expect(await testQenv.getEnvVarOnDemand('key2')).toEqual('fromJson');
});
2017-05-12 15:56:51 +00:00
tap.test('keyValueObjectArray should hold all retrieved values', async () => {
2023-08-09 11:24:49 +00:00
expect(await testQenv.keyValueObject.key1).toEqual('original');
expect(await testQenv.keyValueObject.key2).toEqual('fromJson');
});
2017-05-12 15:56:51 +00:00
tap.start();