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

continuous_vulnerability_scan_spec.js « components « security_configuration « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84a468e4dd832cf1a554a4b1ece310f1205e9c88 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { shallowMount } from '@vue/test-utils';
import { GlBadge, GlToggle } from '@gitlab/ui';
import VueApollo from 'vue-apollo';
import Vue from 'vue';
import ProjectSetContinuousVulnerabilityScanning from '~/security_configuration/graphql/project_set_continuous_vulnerability_scanning.graphql';
import ContinuousVulnerabilityScan from '~/security_configuration/components/continuous_vulnerability_scan.vue';
import createMockApollo from 'helpers/mock_apollo_helper';

Vue.use(VueApollo);

const setCVSMockResponse = {
  data: {
    projectSetContinuousVulnerabilityScanning: {
      continuousVulnerabilityScanningEnabled: true,
      errors: [],
    },
  },
};

const defaultProvide = {
  continuousVulnerabilityScansEnabled: true,
  projectFullPath: 'project/full/path',
};

describe('ContinuousVulnerabilityScan', () => {
  let wrapper;
  let apolloProvider;
  let requestHandlers;

  const createComponent = (options) => {
    requestHandlers = {
      setCVSMutationHandler: jest.fn().mockResolvedValue(setCVSMockResponse),
    };

    apolloProvider = createMockApollo([
      [ProjectSetContinuousVulnerabilityScanning, requestHandlers.setCVSMutationHandler],
    ]);

    wrapper = shallowMount(ContinuousVulnerabilityScan, {
      propsData: {
        feature: {
          available: true,
          configured: true,
        },
      },
      provide: {
        glFeatures: {
          dependencyScanningOnAdvisoryIngestion: true,
        },
        ...defaultProvide,
      },
      apolloProvider,
      ...options,
    });
  };

  beforeEach(() => {
    createComponent();
  });

  afterEach(() => {
    apolloProvider = null;
  });

  const findBadge = () => wrapper.findComponent(GlBadge);
  const findToggle = () => wrapper.findComponent(GlToggle);

  it('renders the component', () => {
    expect(wrapper.exists()).toBe(true);
  });

  it('renders the correct title', () => {
    expect(wrapper.text()).toContain('Continuous Vulnerability Scan');
  });

  it('renders the badge and toggle component with correct values', () => {
    expect(findBadge().exists()).toBe(true);
    expect(findBadge().text()).toBe('Experiment');

    expect(findToggle().exists()).toBe(true);
    expect(findToggle().props('value')).toBe(defaultProvide.continuousVulnerabilityScansEnabled);
  });

  it('should disable toggle when feature is not configured', () => {
    createComponent({
      propsData: {
        feature: {
          available: true,
          configured: false,
        },
      },
    });
    expect(findToggle().props('disabled')).toBe(true);
  });

  it('calls mutation on toggle change with correct payload', () => {
    findToggle().vm.$emit('change', true);

    expect(requestHandlers.setCVSMutationHandler).toHaveBeenCalledWith({
      input: {
        projectPath: 'project/full/path',
        enable: true,
      },
    });
  });

  describe('when feature flag is disabled', () => {
    beforeEach(() => {
      createComponent({
        provide: {
          glFeatures: {
            dependencyScanningOnAdvisoryIngestion: false,
          },
          ...defaultProvide,
        },
      });
    });

    it('should not render toggle and badge', () => {
      expect(findToggle().exists()).toBe(false);
      expect(findBadge().exists()).toBe(false);
    });
  });
});