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

app_spec.js « components « google_cloud « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb86eb5c22e07643398ce2e715eef89b3fca7b49 (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
import { shallowMount } from '@vue/test-utils';
import { GlTab, GlTabs } from '@gitlab/ui';
import App from '~/google_cloud/components/app.vue';
import IncubationBanner from '~/google_cloud/components/incubation_banner.vue';
import ServiceAccounts from '~/google_cloud/components/service_accounts.vue';

describe('google_cloud App component', () => {
  let wrapper;

  const findIncubationBanner = () => wrapper.findComponent(IncubationBanner);
  const findTabs = () => wrapper.findComponent(GlTabs);
  const findTabItems = () => findTabs().findAllComponents(GlTab);
  const findConfigurationTab = () => findTabItems().at(0);
  const findDeploymentTab = () => findTabItems().at(1);
  const findServicesTab = () => findTabItems().at(2);
  const findServiceAccounts = () => findConfigurationTab().findComponent(ServiceAccounts);

  beforeEach(() => {
    const propsData = {
      serviceAccounts: [{}, {}],
      createServiceAccountUrl: '#url-create-service-account',
      emptyIllustrationUrl: '#url-empty-illustration',
    };
    wrapper = shallowMount(App, { propsData });
  });

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

  it('should contain incubation banner', () => {
    expect(findIncubationBanner().exists()).toBe(true);
  });

  describe('google_cloud App tabs', () => {
    it('should contain tabs', () => {
      expect(findTabs().exists()).toBe(true);
    });

    it('should contain three tab items', () => {
      expect(findTabItems().length).toBe(3);
    });

    describe('configuration tab', () => {
      it('should exist', () => {
        expect(findConfigurationTab().exists()).toBe(true);
      });

      it('should contain service accounts component', () => {
        expect(findServiceAccounts().exists()).toBe(true);
      });
    });

    describe('deployments tab', () => {
      it('should exist', () => {
        expect(findDeploymentTab().exists()).toBe(true);
      });
    });

    describe('services tab', () => {
      it('should exist', () => {
        expect(findServicesTab().exists()).toBe(true);
      });
    });
  });
});