elasticsearch/test/test.ts

37 lines
952 B
TypeScript
Raw Normal View History

2018-08-12 14:42:09 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import { Qenv } from '@pushrocks/qenv';
2018-08-12 14:42:09 +00:00
import * as elasticlog from '../ts/index';
2018-01-24 23:38:07 +00:00
2018-08-12 14:42:09 +00:00
const testQenv = new Qenv('./', './.nogit/');
2018-01-24 23:38:07 +00:00
2018-08-12 14:42:09 +00:00
let testElasticLog: elasticlog.ElasticLog<any>;
2018-01-24 23:38:07 +00:00
tap.test('first test', async () => {
testElasticLog = new elasticlog.ElasticLog({
domain: process.env.ELK_DOMAIN,
port: parseInt(process.env.ELK_PORT, 10),
ssl: true,
user: process.env.ELK_USER,
2018-11-03 22:45:21 +00:00
pass: process.env.ELK_PASS
2018-08-12 14:42:09 +00:00
});
expect(testElasticLog).to.be.instanceOf(elasticlog.ElasticLog);
});
2018-01-24 23:38:07 +00:00
tap.test('should send a message to Elasticsearch', async () => {
2018-01-24 23:38:07 +00:00
testElasticLog.log({
2018-11-03 22:45:21 +00:00
type: 'increment',
level: 'info',
context: {
company: 'Lossless GmbH',
companyunit: 'lossless.cloud',
containerName: 'testcontainer',
environment: 'test',
runtime: 'node',
zone: 'ship.zone',
},
2018-01-24 23:38:07 +00:00
message: 'hi, this is a testMessage'
2018-08-12 14:42:09 +00:00
});
});
2018-01-24 23:38:07 +00:00
2018-08-12 14:42:09 +00:00
tap.start();