summaryrefslogtreecommitdiff
path: root/spec/frontend/search/sidebar/components/app_spec.js
blob: e87217950cd5a7994bc7154b07846159e03c9119 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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';

Vue.use(Vuex);

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

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

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

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

  afterEach(() => {
    wrapper.destroy();
  });

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

  describe('renders properly', () => {
    describe('scope=projects', () => {
      beforeEach(() => {
        createComponent({ urlQuery: { ...MOCK_QUERY, scope: 'projects' } });
      });

      it('shows section', () => {
        expect(findSidebarSection().exists()).toBe(true);
      });

      it("doesn't shows filters", () => {
        expect(findFilters().exists()).toBe(false);
      });
    });

    describe('scope=merge_requests', () => {
      beforeEach(() => {
        createComponent({ urlQuery: { ...MOCK_QUERY, scope: 'merge_requests' } });
      });

      it('shows section', () => {
        expect(findSidebarSection().exists()).toBe(true);
      });

      it('shows filters', () => {
        expect(findFilters().exists()).toBe(true);
      });
    });

    describe('scope=issues', () => {
      beforeEach(() => {
        createComponent({ urlQuery: MOCK_QUERY });
      });
      it('shows section', () => {
        expect(findSidebarSection().exists()).toBe(true);
      });

      it('shows filters', () => {
        expect(findFilters().exists()).toBe(true);
      });
    });
  });

  describe('when search_page_vertical_nav is enabled', () => {
    beforeEach(() => {
      createComponent({}, { searchPageVerticalNav: true });
    });
    it('shows the vertical navigation', () => {
      expect(findSidebarNavigation().exists()).toBe(true);
    });
  });

  describe('when search_page_vertical_nav is disabled', () => {
    beforeEach(() => {
      createComponent({}, { searchPageVerticalNav: false });
    });
    it('hides the vertical navigation', () => {
      expect(findSidebarNavigation().exists()).toBe(false);
    });
  });
});