]> source.dussan.org Git - sonarqube.git/blob
8eb973c85d20d0b47f967331a82eba2bf293455e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 import { shallow } from 'enzyme';
21 import * as React from 'react';
22 import {
23   mockAlmSettingsBindingStatus,
24   mockAzureBindingDefinition,
25   mockGithubBindingDefinition
26 } from '../../../../../helpers/mocks/alm-settings';
27 import { AlmKeys, AlmSettingsBindingStatusType } from '../../../../../types/alm-settings';
28 import AlmBindingDefinitionBox, { AlmBindingDefinitionBoxProps } from '../AlmBindingDefinitionBox';
29
30 it('should render correctly', () => {
31   expect(shallowRender()).toMatchSnapshot('default');
32   expect(shallowRender({ multipleDefinitions: true })).toMatchSnapshot('multiple definitions');
33   expect(
34     shallowRender({
35       status: mockAlmSettingsBindingStatus({
36         type: AlmSettingsBindingStatusType.Success
37       })
38     })
39   ).toMatchSnapshot('success');
40   expect(
41     shallowRender({
42       status: mockAlmSettingsBindingStatus({
43         failureMessage: 'Oops, something went wrong',
44         type: AlmSettingsBindingStatusType.Failure
45       })
46     })
47   ).toMatchSnapshot('error');
48
49   expect(
50     shallowRender({
51       status: mockAlmSettingsBindingStatus({
52         alertSuccess: true,
53         type: AlmSettingsBindingStatusType.Success
54       })
55     })
56   ).toMatchSnapshot('success with alert');
57
58   expect(
59     shallowRender({
60       status: mockAlmSettingsBindingStatus({
61         type: AlmSettingsBindingStatusType.Warning
62       })
63     })
64   ).toMatchSnapshot('warning');
65
66   expect(
67     shallowRender({ alm: AlmKeys.Azure, definition: mockAzureBindingDefinition() })
68   ).toMatchSnapshot('Azure DevOps');
69 });
70
71 function shallowRender(props: Partial<AlmBindingDefinitionBoxProps> = {}) {
72   return shallow(
73     <AlmBindingDefinitionBox
74       alm={AlmKeys.GitHub}
75       definition={mockGithubBindingDefinition()}
76       multipleDefinitions={false}
77       onCheck={jest.fn()}
78       onDelete={jest.fn()}
79       onEdit={jest.fn()}
80       {...props}
81     />
82   );
83 }