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

commit_block_spec.js « components « jobs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a6d48cecb8a1eeda76f84e3be25c4adcefecfb2 (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
import { shallowMount } from '@vue/test-utils';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import CommitBlock from '~/jobs/components/commit_block.vue';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';

describe('Commit block', () => {
  let wrapper;

  const commit = {
    short_id: '1f0fb84f',
    id: '1f0fb84fb6770d74d97eee58118fd3909cd4f48c',
    commit_path: 'commit/1f0fb84fb6770d74d97eee58118fd3909cd4f48c',
    title: 'Update README.md',
  };

  const mergeRequest = {
    iid: '!21244',
    path: 'merge_requests/21244',
  };

  const findCommitSha = () => wrapper.findByTestId('commit-sha');
  const findLinkSha = () => wrapper.findByTestId('link-commit');

  const mountComponent = (props) => {
    wrapper = extendedWrapper(
      shallowMount(CommitBlock, {
        propsData: {
          commit,
          ...props,
        },
      }),
    );
  };

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

  describe('without merge request', () => {
    beforeEach(() => {
      mountComponent();
    });

    it('renders pipeline short sha link', () => {
      expect(findCommitSha().attributes('href')).toBe(commit.commit_path);
      expect(findCommitSha().text()).toBe(commit.short_id);
    });

    it('renders clipboard button', () => {
      expect(wrapper.findComponent(ClipboardButton).attributes('text')).toBe(commit.id);
    });

    it('renders git commit title', () => {
      expect(wrapper.text()).toContain(commit.title);
    });

    it('does not render merge request', () => {
      expect(findLinkSha().exists()).toBe(false);
    });
  });

  describe('with merge request', () => {
    it('renders merge request link and reference', () => {
      mountComponent({ mergeRequest });

      expect(findLinkSha().attributes('href')).toBe(mergeRequest.path);
      expect(findLinkSha().text()).toBe(`!${mergeRequest.iid}`);
    });
  });
});