]> source.dussan.org Git - sonarqube.git/blob
345d0b5befa5182b796e822d6ba1424bae6018e1
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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   mockAzureBindingDefinition,
24   mockBitbucketCloudBindingDefinition,
25   mockGithubBindingDefinition,
26 } from '../../../../../helpers/mocks/alm-settings';
27 import { AlmKeys } from '../../../../../types/alm-settings';
28 import AlmTabRenderer, { AlmTabRendererProps } from '../AlmTabRenderer';
29
30 it('should render correctly for multi-ALM binding', () => {
31   expect(shallowRenderAzure({ loadingAlmDefinitions: true })).toMatchSnapshot(
32     'loading ALM definitions'
33   );
34   expect(shallowRenderAzure({ loadingProjectCount: true })).toMatchSnapshot(
35     'loading project count'
36   );
37   expect(shallowRenderAzure({})).toMatchSnapshot('loaded');
38   expect(shallowRenderAzure({ editedDefinition: mockAzureBindingDefinition() })).toMatchSnapshot(
39     'editing a definition'
40   );
41 });
42
43 it('should render correctly for single-ALM binding', () => {
44   expect(
45     shallowRenderAzure({ loadingAlmDefinitions: true, multipleAlmEnabled: false })
46   ).toMatchSnapshot();
47   expect(shallowRenderAzure({ multipleAlmEnabled: false })).toMatchSnapshot();
48   expect(
49     shallowRenderAzure({ definitions: [mockAzureBindingDefinition()], multipleAlmEnabled: false })
50   ).toMatchSnapshot();
51 });
52
53 it('should render correctly with validation', () => {
54   const githubProps = {
55     alm: AlmKeys.GitHub,
56     definitions: [mockGithubBindingDefinition()],
57   };
58   expect(shallowRender(githubProps)).toMatchSnapshot('default');
59   expect(shallowRender({ ...githubProps, definitions: [] })).toMatchSnapshot('empty');
60
61   expect(
62     shallowRender({
63       ...githubProps,
64       editedDefinition: mockGithubBindingDefinition(),
65     })
66   ).toMatchSnapshot('create a second');
67
68   expect(
69     shallowRender({
70       ...githubProps,
71       definitions: [],
72       editedDefinition: mockGithubBindingDefinition(),
73     })
74   ).toMatchSnapshot('create a first');
75
76   expect(
77     shallowRender({
78       almTab: AlmKeys.BitbucketServer, // BitbucketServer will be passed for both Bitbucket variants.
79       definitions: [mockBitbucketCloudBindingDefinition()],
80     })
81   ).toMatchSnapshot('pass the correct key for bitbucket cloud');
82 });
83
84 function shallowRenderAzure(props: Partial<AlmTabRendererProps>) {
85   return shallowRender({
86     definitions: [mockAzureBindingDefinition()],
87     ...props,
88   });
89 }
90
91 function shallowRender(props: Partial<AlmTabRendererProps> = {}) {
92   return shallow(
93     <AlmTabRenderer
94       almTab={AlmKeys.Azure}
95       branchesEnabled={true}
96       definitions={[]}
97       definitionStatus={{}}
98       loadingAlmDefinitions={false}
99       loadingProjectCount={false}
100       multipleAlmEnabled={true}
101       onCancel={jest.fn()}
102       onCheck={jest.fn()}
103       onCreate={jest.fn()}
104       onDelete={jest.fn()}
105       onEdit={jest.fn()}
106       afterSubmit={jest.fn()}
107       {...props}
108     />
109   );
110 }