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

init_ambiguous_ref_modal_spec.js « ref « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 322978f598f73c17c9c8b5ef91829742c1abae28 (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
import Vue from 'vue';
import initAmbiguousRefModal from '~/ref/init_ambiguous_ref_modal';
import AmbiguousRefModal from '~/ref/components/ambiguous_ref_modal.vue';
import { setHTMLFixture } from 'helpers/fixtures';
import setWindowLocation from 'helpers/set_window_location_helper';

const generateFixture = (isAmbiguous) => {
  return `<div id="js-ambiguous-ref-modal" data-ambiguous="${isAmbiguous}" data-ref="main"></div>`;
};

const init = ({ isAmbiguous, htmlFixture = generateFixture(isAmbiguous) }) => {
  setHTMLFixture(htmlFixture);
  initAmbiguousRefModal();
};

beforeEach(() => jest.spyOn(Vue, 'extend'));

describe('initAmbiguousRefModal', () => {
  it('inits a new AmbiguousRefModal Vue component', () => {
    init({ isAmbiguous: true });
    expect(Vue.extend).toHaveBeenCalledWith(AmbiguousRefModal);
  });

  it.each(['<div></div>', '', null])(
    'does not render a new AmbiguousRefModal Vue component when root element is %s',
    (htmlFixture) => {
      init({ isAmbiguous: true, htmlFixture });

      expect(Vue.extend).not.toHaveBeenCalledWith(AmbiguousRefModal);
    },
  );

  it('does not render a new AmbiguousRefModal Vue component "ambiguous" data attribute is "false"', () => {
    init({ isAmbiguous: false });

    expect(Vue.extend).not.toHaveBeenCalledWith(AmbiguousRefModal);
  });

  it.each(['tags', 'heads'])(
    'does not render a new AmbiguousRefModal Vue component when "ref_type" param is set to %s',
    (refType) => {
      setWindowLocation(`?ref_type=${refType}`);
      init({ isAmbiguous: true });

      expect(Vue.extend).not.toHaveBeenCalledWith(AmbiguousRefModal);
    },
  );
});