]> source.dussan.org Git - sonarqube.git/blob
ad5f0bad13994ad4c03f40943e417b57a0b56c21
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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 * as React from 'react';
21 import { shallow } from 'enzyme';
22 import AnalysisCommandTravis, {
23   getSonarcloudAddonYml,
24   getSonarcloudAddonYmlRender,
25   RenderCommandForClangOrGCC,
26   RenderCommandForGradle,
27   RenderCommandForMaven,
28   RenderCommandForOther,
29   RequirementJavaBuild,
30   RequirementOtherBuild
31 } from '../AnalysisCommandTravis';
32
33 const component = {
34   key: 'foo',
35   analysisDate: '2016-01-01',
36   breadcrumbs: [],
37   name: 'Foo',
38   organization: 'org',
39   qualifier: 'TRK',
40   version: '0.0.1'
41 };
42
43 const organization = 'org';
44 const token = '123';
45
46 it('should render for Clang or GCC', () => {
47   expect(
48     shallowRender('make')
49       .find(RenderCommandForClangOrGCC)
50       .exists()
51   ).toBeTruthy();
52 });
53
54 it('should render for Gradle', () => {
55   expect(
56     shallowRender('gradle')
57       .find(RenderCommandForGradle)
58       .exists()
59   ).toBeTruthy();
60 });
61
62 it('should render for Maven', () => {
63   expect(
64     shallowRender('maven')
65       .find(RenderCommandForMaven)
66       .exists()
67   ).toBeTruthy();
68 });
69
70 it('should render for other', () => {
71   expect(
72     shallowRender('other')
73       .find(RenderCommandForOther)
74       .exists()
75   ).toBeTruthy();
76 });
77
78 it('should render nothing for unsupported build', () => {
79   expect(
80     shallowRender()
81       .find(RenderCommandForOther)
82       .exists()
83   ).toBeFalsy();
84
85   expect(
86     shallowRender('anotherBuild')
87       .find(RenderCommandForOther)
88       .exists()
89   ).toBeFalsy();
90 });
91
92 it('should render nothing when there is no project key', () => {
93   expect(shallow(<RenderCommandForClangOrGCC />).html()).toBe(null);
94   expect(shallow(<RenderCommandForGradle />).html()).toBe(null);
95   expect(shallow(<RenderCommandForMaven />).html()).toBe(null);
96   expect(shallow(<RenderCommandForOther />).html()).toBe(null);
97 });
98
99 it('should render the sonarcloud yaml for travis', () => {
100   expect(getSonarcloudAddonYml()).toMatchSnapshot();
101   expect(getSonarcloudAddonYml('SonarSource')).toMatchSnapshot();
102 });
103
104 it('should render the sonarcloud yaml for travis', () => {
105   expect(getSonarcloudAddonYmlRender()).toMatchSnapshot();
106   expect(getSonarcloudAddonYmlRender('SonarSource')).toMatchSnapshot();
107 });
108
109 it('should render the requirements for builds', () => {
110   expect(shallow(<RequirementJavaBuild />)).toMatchSnapshot();
111   expect(shallow(<RequirementOtherBuild />)).toMatchSnapshot();
112 });
113
114 function shallowRender(buildType?: string) {
115   return shallow(
116     <AnalysisCommandTravis
117       buildType={buildType}
118       component={component}
119       organization={organization}
120       token={token}
121     />
122   );
123 }