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

details_header_spec.js « details_page « components « explorer « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec8838860268a8544bdaba2ce95ce3f623bcab13 (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
import { shallowMount } from '@vue/test-utils';
import { GlSprintf } from '@gitlab/ui';
import TitleArea from '~/vue_shared/components/registry/title_area.vue';
import component from '~/registry/explorer/components/details_page/details_header.vue';
import { DETAILS_PAGE_TITLE } from '~/registry/explorer/constants';

describe('Details Header', () => {
  let wrapper;

  const defaultImage = {
    name: 'foo',
    updatedAt: '2020-11-03T13:29:21Z',
    project: {
      visibility: 'public',
    },
  };

  const findLastUpdatedAndVisibility = () => wrapper.find('[data-testid="updated-and-visibility"]');

  const waitForMetadataItems = async () => {
    // Metadata items are printed by a loop in the title-area and it takes two ticks for them to be available
    await wrapper.vm.$nextTick();
    await wrapper.vm.$nextTick();
  };

  const mountComponent = (image = defaultImage) => {
    wrapper = shallowMount(component, {
      propsData: {
        image,
      },
      stubs: {
        GlSprintf,
        TitleArea,
      },
    });
  };

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

  it('has the correct title ', () => {
    mountComponent({ ...defaultImage, name: '' });
    expect(wrapper.text()).toMatchInterpolatedText(DETAILS_PAGE_TITLE);
  });

  it('shows imageName in the title', () => {
    mountComponent();
    expect(wrapper.text()).toContain('foo');
  });

  it('has a metadata item with last updated text', async () => {
    mountComponent();
    await waitForMetadataItems();

    expect(findLastUpdatedAndVisibility().props('text')).toBe('Last updated 1 month ago');
  });

  describe('visibility icon', () => {
    it('shows an eye when the project is public', async () => {
      mountComponent();
      await waitForMetadataItems();

      expect(findLastUpdatedAndVisibility().props('icon')).toBe('eye');
    });
    it('shows an eye slashed when the project is not public', async () => {
      mountComponent({ ...defaultImage, project: { visibility: 'private' } });
      await waitForMetadataItems();

      expect(findLastUpdatedAndVisibility().props('icon')).toBe('eye-slash');
    });
  });
});