3 * Copyright (C) 2009-2023 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 import { shallow } from 'enzyme';
21 import * as React from 'react';
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';
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'
43 alm: AlmKeys.BitbucketCloud,
44 almBinding: mockAlmSettingsInstance({ url: 'https://bitbucket.org/workspaceId/' }),
45 projectBinding: mockProjectBitbucketCloudBindingResponse(),
48 ).toMatchSnapshot('content for bitbucket cloud');
52 alm: AlmKeys.BitbucketCloud,
53 projectBinding: undefined,
56 ).toMatchSnapshot('content for bitbucket cloud, no binding');
61 almBinding: mockAlmSettingsInstance({ url: 'https://api.github.com/' }),
62 projectBinding: mockProjectGithubBindingResponse(),
65 ).toMatchSnapshot('content for github');
72 ).toMatchSnapshot('content for github, no binding');
75 shallowRender({ alm: AlmKeys.GitLab, projectBinding: mockProjectGitLabBindingResponse() })
77 ).toMatchSnapshot('content for gitlab');
80 function shallowRender(props: Partial<MultiBranchPipelineStepProps> = {}) {
81 return shallow<MultiBranchPipelineStepProps>(
82 <MultiBranchPipelineStep
83 alm={AlmKeys.BitbucketServer}
88 projectBinding={mockProjectBitbucketBindingResponse()}