The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/datasource/loki/lineParser.test.ts

59 lines
1.8 KiB

import { isLogLineJSON, isLogLineLogfmt, isLogLinePacked } from './lineParser';
describe('isLogLineJSON', () => {
test('should return false on empty line', () => {
expect(isLogLineJSON('')).toBe(false);
});
test('should return false on unknown line pattern', () => {
expect(isLogLineJSON('To Be or not to be')).toBe(false);
});
test('should return false on key value patterns', () => {
expect(isLogLineJSON('foo=bar baz="41 + 1')).toBe(false);
});
test('should return true on JSON log lines', () => {
expect(isLogLineJSON('{"foo": "bar", "baz": "41 + 1"}')).toBe(true);
});
});
describe('isLogLineLogfmt', () => {
test('should return false on empty line', () => {
expect(isLogLineLogfmt('')).toBe(false);
});
test('should return false on unknown line pattern', () => {
expect(isLogLineLogfmt('To Be or not to be')).toBe(false);
});
test('should return true on key value patterns', () => {
expect(isLogLineLogfmt('foo=bar baz="41 + 1')).toBe(true);
});
test('should return false on JSON log lines', () => {
expect(isLogLineLogfmt('{"foo": "bar", "baz": "41 + 1"}')).toBe(false);
});
});
describe('isLogLinePacked', () => {
test('should return false on empty line', () => {
expect(isLogLinePacked('')).toBe(false);
});
test('should return false on unknown line pattern', () => {
expect(isLogLinePacked('To Be or not to be')).toBe(false);
});
test('should return false on key value patterns', () => {
expect(isLogLinePacked('foo=bar baz="41 + 1')).toBe(false);
});
test('should return false on JSON log lines', () => {
expect(isLogLinePacked('{"foo": "bar", "baz": "41 + 1"}')).toBe(false);
});
test('should return true on packed log lines', () => {
expect(isLogLinePacked('{"foo": "bar", "_entry": "41 + 1"}')).toBe(true);
});
});