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

deprecation_filters_spec.js « deprecations « frontend « spec - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d51497922e284277343e09c34108b6b0507e47ba (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
/**
 * @jest-environment jsdom
 */

import { mount } from '@vue/test-utils';
import DeprecationFilters from '../../../content/frontend/deprecations/components/deprecation_filters.vue';

const propsData = { showAllText: 'Show all', milestonesList: [{ value: '160', text: '16.0' }] };
const removalsFilterSelector = '[data-testid="removal-milestone-filter"]';

describe('component: Deprecations Filter', () => {
  it('Filter is visible', () => {
    const wrapper = mount(DeprecationFilters, { propsData });
    expect(wrapper.find(removalsFilterSelector).isVisible()).toBe(true);
  });

  it('Validates a URL parameter', () => {
    const location = {
      ...window.location,
      search: '?removal_milestone=16.0',
      toString: () => {
        return 'http://localhost/ee/update/deprecations.html';
      },
    };
    Object.defineProperty(window, 'location', {
      writable: true,
      value: location,
    });

    const searchParams = new URLSearchParams(window.location.search);
    const versionValue = searchParams.get('removal_milestone').replace(/\./g, '');

    const wrapper = mount(DeprecationFilters, { propsData });
    expect(wrapper.vm.isValidVersion(versionValue)).toBe(true);
  });
});