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

artifacts_list_spec.js « details « components « harbor_registry « packages_and_registries « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9d6dc2679e1b4beaf7b6604c34faea8ae18975f (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
75
import { shallowMount } from '@vue/test-utils';
import { GlEmptyState } from '@gitlab/ui';
import TagsLoader from '~/packages_and_registries/shared/components/tags_loader.vue';
import RegistryList from '~/packages_and_registries/shared/components/registry_list.vue';
import ArtifactsList from '~/packages_and_registries/harbor_registry/components/details/artifacts_list.vue';
import ArtifactsListRow from '~/packages_and_registries/harbor_registry/components/details/artifacts_list_row.vue';
import { defaultConfig, harborArtifactsList } from '../../mock_data';

describe('Harbor artifacts list', () => {
  let wrapper;

  const findTagsLoader = () => wrapper.findComponent(TagsLoader);
  const findGlEmptyState = () => wrapper.findComponent(GlEmptyState);
  const findRegistryList = () => wrapper.findComponent(RegistryList);
  const findArtifactsListRow = () => wrapper.findAllComponents(ArtifactsListRow);

  const mountComponent = ({ propsData, config = defaultConfig }) => {
    wrapper = shallowMount(ArtifactsList, {
      propsData,
      stubs: { RegistryList },
      provide() {
        return {
          ...config,
        };
      },
    });
  };

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

  describe('when isLoading is true', () => {
    beforeEach(() => {
      mountComponent({
        propsData: {
          isLoading: true,
          pageInfo: {},
          filter: '',
          artifacts: [],
        },
      });
    });

    it('show the loader', () => {
      expect(findTagsLoader().exists()).toBe(true);
    });

    it('does not show the list', () => {
      expect(findGlEmptyState().exists()).toBe(false);
      expect(findRegistryList().exists()).toBe(false);
    });
  });

  describe('registry list', () => {
    beforeEach(() => {
      mountComponent({
        propsData: {
          isLoading: false,
          pageInfo: {},
          filter: '',
          artifacts: harborArtifactsList,
        },
      });
    });

    it('exists', () => {
      expect(findRegistryList().exists()).toBe(true);
    });

    it('one artifact row exist', () => {
      expect(findArtifactsListRow()).toHaveLength(harborArtifactsList.length);
    });
  });
});