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

app_spec.js « components « sidebar « search « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 963b73aeae5d84850826d021970833f03204b01f (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { shallowMount } from '@vue/test-utils';
import Vue from 'vue';
import Vuex from 'vuex';
import { MOCK_QUERY } from 'jest/search/mock_data';
import GlobalSearchSidebar from '~/search/sidebar/components/app.vue';
import ResultsFilters from '~/search/sidebar/components/results_filters.vue';
import ScopeNavigation from '~/search/sidebar/components/scope_navigation.vue';
import LanguageFilter from '~/search/sidebar/components/language_filter/index.vue';

Vue.use(Vuex);

describe('GlobalSearchSidebar', () => {
  let wrapper;

  const actionSpies = {
    applyQuery: jest.fn(),
    resetQuery: jest.fn(),
  };

  const getterSpies = {
    currentScope: jest.fn(() => 'issues'),
  };

  const createComponent = (initialState, featureFlags) => {
    const store = new Vuex.Store({
      state: {
        urlQuery: MOCK_QUERY,
        ...initialState,
      },
      actions: actionSpies,
      getters: getterSpies,
    });

    wrapper = shallowMount(GlobalSearchSidebar, {
      store,
      provide: {
        glFeatures: {
          ...featureFlags,
        },
      },
    });
  };

  const findSidebarSection = () => wrapper.find('section');
  const findFilters = () => wrapper.findComponent(ResultsFilters);
  const findSidebarNavigation = () => wrapper.findComponent(ScopeNavigation);
  const findLanguageAggregation = () => wrapper.findComponent(LanguageFilter);

  describe('renders properly', () => {
    describe('always', () => {
      beforeEach(() => {
        createComponent({});
      });
      it(`shows section`, () => {
        expect(findSidebarSection().exists()).toBe(true);
      });
    });

    describe.each`
      scope               | showFilters | showsLanguage
      ${'issues'}         | ${true}     | ${false}
      ${'merge_requests'} | ${true}     | ${false}
      ${'projects'}       | ${false}    | ${false}
      ${'blobs'}          | ${false}    | ${true}
    `('sidebar scope: $scope', ({ scope, showFilters, showsLanguage }) => {
      beforeEach(() => {
        getterSpies.currentScope = jest.fn(() => scope);
        createComponent({ urlQuery: { scope } });
      });

      it(`${!showFilters ? "doesn't" : ''} shows filters`, () => {
        expect(findFilters().exists()).toBe(showFilters);
      });

      it(`${!showsLanguage ? "doesn't" : ''} shows language filters`, () => {
        expect(findLanguageAggregation().exists()).toBe(showsLanguage);
      });
    });

    describe('renders navigation', () => {
      beforeEach(() => {
        createComponent({});
      });
      it('shows the vertical navigation', () => {
        expect(findSidebarNavigation().exists()).toBe(true);
      });
    });
  });
});