]> source.dussan.org Git - sonarqube.git/blob
72a7bdc6180cf29ce3a5491b3cbf085247567b07
[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 { mockComponent } from '../../../helpers/mocks/component';
23 import { mockQualityProfile } from '../../../helpers/testMocks';
24 import ProjectQualityProfilesAppRenderer, {
25   ProjectQualityProfilesAppRendererProps,
26 } from '../ProjectQualityProfilesAppRenderer';
27
28 it('should render correctly', () => {
29   expect(shallowRender()).toMatchSnapshot('default');
30   expect(shallowRender({ loading: true })).toMatchSnapshot('loading');
31   expect(
32     shallowRender({
33       showProjectProfileInModal: {
34         profile: mockQualityProfile({ key: 'foo', language: 'js' }),
35         selected: false,
36       },
37     })
38   ).toMatchSnapshot('open profile');
39   expect(shallowRender({ showAddLanguageModal: true })).toMatchSnapshot('add language');
40 });
41
42 function shallowRender(props: Partial<ProjectQualityProfilesAppRendererProps> = {}) {
43   return shallow<ProjectQualityProfilesAppRendererProps>(
44     <ProjectQualityProfilesAppRenderer
45       allProfiles={[
46         mockQualityProfile({ key: 'foo', language: 'js' }),
47         mockQualityProfile({ key: 'bar', language: 'css' }),
48         mockQualityProfile({ key: 'baz', language: 'html' }),
49       ]}
50       component={mockComponent()}
51       loading={false}
52       onAddLanguage={jest.fn()}
53       onCloseModal={jest.fn()}
54       onOpenAddLanguageModal={jest.fn()}
55       onOpenSetProfileModal={jest.fn()}
56       onSetProfile={jest.fn()}
57       projectProfiles={[
58         {
59           profile: mockQualityProfile({
60             key: 'foo',
61             name: 'Foo',
62             isDefault: true,
63             language: 'js',
64             languageName: 'JS',
65           }),
66           selected: false,
67         },
68         {
69           profile: mockQualityProfile({
70             key: 'bar',
71             name: 'Bar',
72             isDefault: true,
73             language: 'css',
74             languageName: 'CSS',
75           }),
76           selected: false,
77         },
78         {
79           profile: mockQualityProfile({
80             key: 'baz',
81             name: 'Baz',
82             language: 'html',
83             languageName: 'HTML',
84           }),
85           selected: true,
86         },
87       ]}
88       {...props}
89     />
90   );
91 }