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

ci_resource_details_spec.js « details « components « catalog « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f7dcf9d4e5bf2d516dd661f92aaa319d4afd932 (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
76
77
78
79
80
81
82
83
import { GlTabs, GlTab } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import CiResourceComponents from '~/ci/catalog/components/details/ci_resource_components.vue';
import CiResourceDetails from '~/ci/catalog/components/details/ci_resource_details.vue';
import CiResourceReadme from '~/ci/catalog/components/details/ci_resource_readme.vue';

describe('CiResourceDetails', () => {
  let wrapper;

  const defaultProps = {
    resourceId: 'gid://gitlab/Ci::Catalog::Resource/1',
  };
  const defaultProvide = {
    glFeatures: { ciCatalogComponentsTab: true },
  };

  const createComponent = ({ provide = {}, props = {} } = {}) => {
    wrapper = shallowMount(CiResourceDetails, {
      propsData: {
        ...defaultProps,
        ...props,
      },
      provide: {
        ...defaultProvide,
        ...provide,
      },
      stubs: {
        GlTabs,
      },
    });
  };
  const findAllTabs = () => wrapper.findAllComponents(GlTab);
  const findCiResourceReadme = () => wrapper.findComponent(CiResourceReadme);
  const findCiResourceComponents = () => wrapper.findComponent(CiResourceComponents);

  describe('tabs', () => {
    describe('when feature flag `ci_catalog_components_tab` is enabled', () => {
      beforeEach(() => {
        createComponent();
      });

      it('renders the readme and components tab', () => {
        expect(findAllTabs()).toHaveLength(2);
        expect(findCiResourceComponents().exists()).toBe(true);
        expect(findCiResourceReadme().exists()).toBe(true);
      });
    });

    describe('when feature flag `ci_catalog_components_tab` is disabled', () => {
      beforeEach(() => {
        createComponent({
          provide: { glFeatures: { ciCatalogComponentsTab: false } },
        });
      });

      it('renders only readme tab as default', () => {
        expect(findCiResourceReadme().exists()).toBe(true);
        expect(findCiResourceComponents().exists()).toBe(false);
        expect(findAllTabs()).toHaveLength(1);
      });
    });

    describe('UI', () => {
      beforeEach(() => {
        createComponent();
      });

      it('passes lazy attribute to all tabs', () => {
        findAllTabs().wrappers.forEach((tab) => {
          expect(tab.attributes().lazy).not.toBeUndefined();
        });
      });

      it('passes the right props to the readme component', () => {
        expect(findCiResourceReadme().props().resourceId).toBe(defaultProps.resourceId);
      });

      it('passes the right props to the components tab', () => {
        expect(findCiResourceComponents().props().resourceId).toBe(defaultProps.resourceId);
      });
    });
  });
});