Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tracing_list_filtered_search_spec.js « components « tracing « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad15dd4a371ba686ed62ed619dca9068cebdecc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { GlFilteredSearch } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';

import TracingListFilteredSearch from '~/tracing/components/tracing_list_filtered_search.vue';

describe('TracingListFilteredSearch', () => {
  let wrapper;
  const initialFilters = [
    { type: 'period', value: '1h' },
    { type: 'service_name', value: 'example-service' },
  ];
  beforeEach(() => {
    wrapper = shallowMountExtended(TracingListFilteredSearch, {
      propsData: {
        initialFilters,
      },
    });
  });

  it('renders the component', () => {
    expect(wrapper.exists()).toBe(true);
  });

  it('sets initialFilters prop correctly', () => {
    expect(wrapper.findComponent(GlFilteredSearch).props('value')).toEqual(initialFilters);
  });

  it('emits submit event on filtered search submit', () => {
    wrapper
      .findComponent(GlFilteredSearch)
      .vm.$emit('submit', { filters: [{ type: 'period', value: '1h' }] });

    expect(wrapper.emitted('submit')).toHaveLength(1);
    expect(wrapper.emitted('submit')[0][0]).toEqual({
      filters: [{ type: 'period', value: '1h' }],
    });
  });
});