39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import { Qenv } from '@pushrocks/qenv';
|
|
import * as elasticsearch from '../ts/index.js';
|
|
|
|
const testQenv = new Qenv('./', './.nogit/');
|
|
|
|
let testElasticLog: elasticsearch.ElasticSearch<any>;
|
|
|
|
tap.test('first test', async () => {
|
|
testElasticLog = new elasticsearch.ElasticSearch({
|
|
indexPrefix: 'smartlog',
|
|
indexRetention: 7,
|
|
node: testQenv.getEnvVarOnDemand('ELK_NODE'),
|
|
user: '',
|
|
pass: '',
|
|
});
|
|
expect(testElasticLog).toBeInstanceOf(elasticsearch.ElasticSearch);
|
|
});
|
|
|
|
tap.skip.test('should send a message to Elasticsearch', async () => {
|
|
testElasticLog.log({
|
|
timestamp: Date.now(),
|
|
type: 'increment',
|
|
level: 'info',
|
|
context: {
|
|
company: 'Lossless GmbH',
|
|
companyunit: 'lossless.cloud',
|
|
containerName: 'testcontainer',
|
|
environment: 'test',
|
|
runtime: 'node',
|
|
zone: 'ship.zone',
|
|
},
|
|
message: 'GET https://myroute.to.a.cool.destination/sorare?hello=there',
|
|
correlation: null,
|
|
});
|
|
});
|
|
|
|
tap.start();
|