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

ambiguous_ref_modal_spec.js « components « ref « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb3fd0fa1f087f1d22e630641ba379db912b8309 (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
import { GlModal, GlSprintf } from '@gitlab/ui';
import AmbiguousRefModal from '~/ref/components/ambiguous_ref_modal.vue';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { stubComponent, RENDER_ALL_SLOTS_TEMPLATE } from 'helpers/stub_component';
import { visitUrl } from '~/lib/utils/url_utility';
import { TEST_HOST } from 'spec/test_constants';

jest.mock('~/lib/utils/url_utility');

describe('AmbiguousRefModal component', () => {
  let wrapper;
  const showModalSpy = jest.fn();

  const createComponent = () => {
    wrapper = shallowMountExtended(AmbiguousRefModal, {
      propsData: { refName: 'main' },
      stubs: {
        GlModal: stubComponent(GlModal, {
          methods: {
            show: showModalSpy,
          },
          template: RENDER_ALL_SLOTS_TEMPLATE,
        }),
        GlSprintf,
      },
    });
  };

  beforeEach(() => createComponent());

  const findModal = () => wrapper.findComponent(GlModal);
  const findByText = (text) => wrapper.findByText(text);
  const findViewTagButton = () => findByText('View tag');
  const findViewBranchButton = () => findByText('View branch');

  it('renders a GlModal component with the correct props', () => {
    expect(showModalSpy).toHaveBeenCalled();
    expect(findModal().props('title')).toBe('Which reference do you want to view?');
  });

  it('renders a description', () => {
    expect(wrapper.text()).toContain('There is a branch and a tag with the same name of main.');
    expect(wrapper.text()).toContain('Which reference would you like to view?');
  });

  it('renders action buttons', () => {
    expect(findViewTagButton().exists()).toBe(true);
    expect(findViewBranchButton().exists()).toBe(true);
  });

  describe('when clicking the action buttons', () => {
    it('redirects to the tag ref when tag button is clicked', () => {
      findViewTagButton().vm.$emit('click');

      expect(visitUrl).toHaveBeenCalledWith(`${TEST_HOST}/?ref_type=tags`);
    });

    it('redirects to the branch ref when branch button is clicked', () => {
      findViewBranchButton().vm.$emit('click');

      expect(visitUrl).toHaveBeenCalledWith(`${TEST_HOST}/?ref_type=heads`);
    });
  });
});