]> source.dussan.org Git - sonarqube.git/blob
3bd020a31d1e19cd4ddee0b6fa6b821713758811
[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   mockAlmSettingsInstance,
24   mockProjectBitbucketBindingResponse,
25   mockProjectBitbucketCloudBindingResponse,
26   mockProjectGithubBindingResponse,
27   mockProjectGitLabBindingResponse,
28 } from '../../../../helpers/mocks/alm-settings';
29 import { AlmKeys } from '../../../../types/alm-settings';
30 import { renderStepContent } from '../../test-utils';
31 import MultiBranchPipelineStep, { MultiBranchPipelineStepProps } from '../MultiBranchPipelineStep';
32
33 it('should render correctly', () => {
34   const wrapper = shallowRender();
35   expect(wrapper).toMatchSnapshot('Step wrapper');
36   expect(renderStepContent(wrapper)).toMatchSnapshot('content for bitbucket');
37   expect(renderStepContent(shallowRender({ projectBinding: undefined }))).toMatchSnapshot(
38     'content for bitbucket, no binding'
39   );
40   expect(
41     renderStepContent(
42       shallowRender({
43         alm: AlmKeys.BitbucketCloud,
44         almBinding: mockAlmSettingsInstance({ url: 'https://bitbucket.org/workspaceId/' }),
45         projectBinding: mockProjectBitbucketCloudBindingResponse(),
46       })
47     )
48   ).toMatchSnapshot('content for bitbucket cloud');
49   expect(
50     renderStepContent(
51       shallowRender({
52         alm: AlmKeys.BitbucketCloud,
53         projectBinding: undefined,
54       })
55     )
56   ).toMatchSnapshot('content for bitbucket cloud, no binding');
57   expect(
58     renderStepContent(
59       shallowRender({
60         alm: AlmKeys.GitHub,
61         almBinding: mockAlmSettingsInstance({ url: 'https://api.github.com/' }),
62         projectBinding: mockProjectGithubBindingResponse(),
63       })
64     )
65   ).toMatchSnapshot('content for github');
66   expect(
67     renderStepContent(
68       shallowRender({
69         alm: AlmKeys.GitHub,
70       })
71     )
72   ).toMatchSnapshot('content for github, no binding');
73   expect(
74     renderStepContent(
75       shallowRender({ alm: AlmKeys.GitLab, projectBinding: mockProjectGitLabBindingResponse() })
76     )
77   ).toMatchSnapshot('content for gitlab');
78 });
79
80 function shallowRender(props: Partial<MultiBranchPipelineStepProps> = {}) {
81   return shallow<MultiBranchPipelineStepProps>(
82     <MultiBranchPipelineStep
83       alm={AlmKeys.BitbucketServer}
84       finished={false}
85       onDone={jest.fn()}
86       onOpen={jest.fn()}
87       open={true}
88       projectBinding={mockProjectBitbucketBindingResponse()}
89       {...props}
90     />
91   );
92 }