]> source.dussan.org Git - sonarqube.git/blob
bb41f38cbc11434f1f6898732c54e455c2ec145e
[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 { Button } from 'sonar-ui-common/components/controls/buttons';
23 import { click } from 'sonar-ui-common/helpers/testUtils';
24 import {
25   mockProjectAzureBindingResponse,
26   mockProjectGithubBindingResponse
27 } from '../../../../helpers/mocks/alm-settings';
28 import { mockComponent, mockLoggedInUser } from '../../../../helpers/testMocks';
29 import Step from '../../components/Step';
30 import AzurePipelinesTutorial, { AzurePipelinesTutorialProps } from '../AzurePipelinesTutorial';
31
32 it('should render correctly', () => {
33   const wrapper = shallowRender();
34   expect(wrapper).toMatchSnapshot();
35   expect(
36     wrapper
37       .find(Step)
38       .first()
39       .dive()
40   ).toMatchSnapshot('first-step-wrapper');
41   expect(
42     wrapper
43       .find(Step)
44       .last()
45       .dive()
46   ).toMatchSnapshot('last-step-wrapper');
47   expect(shallowRender({ projectBinding: mockProjectGithubBindingResponse() })).toMatchSnapshot(
48     'wrong alm'
49   );
50 });
51
52 it('should display the next step when one is finished', () => {
53   const wrapper = shallowRender();
54   expect(
55     wrapper
56       .find(Step)
57       .filterWhere(elt => elt.props().open === true)
58       .props().stepNumber
59   ).toBe(1);
60
61   click(
62     wrapper
63       .find(Step)
64       .first()
65       .dive()
66       .find(Button)
67   );
68
69   expect(
70     wrapper
71       .find(Step)
72       .filterWhere(elt => elt.props().open === true)
73       .props().stepNumber
74   ).toBe(2);
75 });
76
77 it('should open a step when user click on it', () => {
78   const wrapper = shallowRender();
79   expect(
80     wrapper
81       .find(Step)
82       .filterWhere(elt => elt.props().open === true)
83       .props().stepNumber
84   ).toBe(1);
85
86   (
87     wrapper
88       .find(Step)
89       .filterWhere(elt => elt.props().stepNumber === 3)
90       .props().onOpen ?? (() => {})
91   )();
92
93   expect(
94     wrapper
95       .find(Step)
96       .filterWhere(elt => elt.props().open === true)
97       .props().stepNumber
98   ).toBe(3);
99 });
100
101 function shallowRender(props: Partial<AzurePipelinesTutorialProps> = {}) {
102   return shallow<AzurePipelinesTutorialProps>(
103     <AzurePipelinesTutorial
104       component={mockComponent()}
105       currentUser={mockLoggedInUser()}
106       projectBinding={mockProjectAzureBindingResponse()}
107       {...props}
108     />
109   );
110 }