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/streaming.test.ts

45 lines
1.2 KiB

import { convertToWebSocketUrl } from './streaming';
jest.mock('@grafana/runtime', () => ({
...jest.requireActual('@grafana/runtime'),
config: {
appSubUrl: '/grafana',
},
}));
describe('convertToWebSocketUrl', () => {
const { location } = window;
beforeEach(() => {
// @ts-ignore
delete window.location;
window.location = {} as Location;
});
afterEach(() => {
window.location = location;
});
it('should convert HTTP URL to WebSocket URL', () => {
window.location.protocol = 'http:';
window.location.host = 'example.com';
const httpUrl = '/api/ds/proxy/1/api/v1/tail/loki?query=a';
const expectedWebSocketUrl = 'ws://example.com/grafana/api/ds/proxy/1/api/v1/tail/loki?query=a';
const result = convertToWebSocketUrl(httpUrl);
expect(result).toBe(expectedWebSocketUrl);
});
it('should convert HTTPS URL to WebSocket URL', () => {
window.location.protocol = 'https:';
window.location.host = 'example.com';
const httpsUrl = '/api/ds/proxy/1/api/v1/tail/loki?query=a';
const expectedWebSocketUrl = 'wss://example.com/grafana/api/ds/proxy/1/api/v1/tail/loki?query=a';
const result = convertToWebSocketUrl(httpsUrl);
expect(result).toBe(expectedWebSocketUrl);
});
});