123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import { render, screen } from '@testing-library/react';
- import { act, renderHook } from '@testing-library/react-hooks';
- import React from 'react';
- import { CascaderOption } from '@grafana/ui';
- import { ZipkinQueryField, useLoadOptions, useServices } from './QueryField';
- import { ZipkinDatasource } from './datasource';
- import { ZipkinQuery } from './types';
- describe('QueryField', () => {
- it('renders properly', async () => {
- const ds = {} as ZipkinDatasource;
- render(
- <ZipkinQueryField
- history={[]}
- datasource={ds}
- query={{ query: '1234' } as ZipkinQuery}
- onRunQuery={() => {}}
- onChange={() => {}}
- />
- );
- expect(await screen.findByText(/1234/i)).toBeInTheDocument();
- expect(await screen.findByText(/Traces/i)).toBeInTheDocument();
- });
- });
- describe('useServices', () => {
- it('returns services from datasource', async () => {
- const ds = {
- async metadataRequest(url: string, params?: Record<string, any>): Promise<any> {
- if (url === '/api/v2/services') {
- return Promise.resolve(['service1', 'service2']);
- }
- },
- } as ZipkinDatasource;
- const { result, waitForNextUpdate } = renderHook(() => useServices(ds));
- await waitForNextUpdate();
- expect(result.current.value).toEqual([
- { label: 'service1', value: 'service1', isLeaf: false },
- { label: 'service2', value: 'service2', isLeaf: false },
- ]);
- });
- });
- describe('useLoadOptions', () => {
- it('loads spans and traces', async () => {
- const ds = {
- async metadataRequest(url: string, params?: Record<string, any>): Promise<any> {
- if (url === '/api/v2/spans' && params?.serviceName === 'service1') {
- return Promise.resolve(['span1', 'span2']);
- }
- if (url === '/api/v2/traces' && params?.serviceName === 'service1' && params?.spanName === 'span1') {
- return Promise.resolve([[{ name: 'trace1', duration: 10_000, traceId: 'traceId1' }]]);
- }
- },
- } as ZipkinDatasource;
- const { result, waitForNextUpdate } = renderHook(() => useLoadOptions(ds));
- expect(result.current.allOptions).toEqual({});
- act(() => {
- result.current.onLoadOptions([{ value: 'service1' } as CascaderOption]);
- });
- await waitForNextUpdate();
- expect(result.current.allOptions).toEqual({ service1: { span1: undefined, span2: undefined } });
- act(() => {
- result.current.onLoadOptions([{ value: 'service1' } as CascaderOption, { value: 'span1' } as CascaderOption]);
- });
- await waitForNextUpdate();
- expect(result.current.allOptions).toEqual({
- service1: { span1: { 'trace1 [10 ms]': 'traceId1' }, span2: undefined },
- });
- });
- });
|