1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package it.qualityModel;
import com.sonar.orchestrator.Orchestrator;
import com.sonar.orchestrator.build.SonarScanner;
import com.sonar.orchestrator.locator.FileLocation;
import com.sonar.orchestrator.selenium.Selenese;
import it.Category2Suite;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.commons.lang.time.DateUtils;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import util.selenium.SeleneseTest;
import static util.ItUtils.projectDir;
public class TechnicalDebtWidgetTest {
@ClassRule
public static Orchestrator orchestrator = Category2Suite.ORCHESTRATOR;
@ClassRule
public static DebtConfigurationRule debtConfiguration = DebtConfigurationRule.create(orchestrator);
@BeforeClass
public static void init() {
orchestrator.resetData();
// Set rating grid values to not depend from default value
debtConfiguration.updateRatingGrid(0.1d, 0.2d, 0.5d, 1d);
orchestrator.getServer().restoreProfile(FileLocation.ofClasspath("/qualityModel/with-many-rules.xml"));
orchestrator.getServer().provisionProject("com.sonarsource.it.samples:multi-modules-sample", "com.sonarsource.it.samples:multi-modules-sample");
orchestrator.getServer().associateProjectToQualityProfile("com.sonarsource.it.samples:multi-modules-sample", "xoo", "with-many-rules");
// need to execute the build twice in order to have history widgets
// we made some exclusions to have variations in diff mode
scanProject(getPastDate(20), "**/a2/**");
scanProject(getPastDate(10), "");
}
private static void scanProject(String date, String excludes) {
SonarScanner scan = SonarScanner.create(projectDir("shared/xoo-multi-modules-sample"))
.setProperties("sonar.projectDate", date, "sonar.exclusions", excludes);
orchestrator.executeBuild(scan);
}
/**
* SONAR-4717
*/
@Test
public void technical_debt_in_issues_widget() {
new SeleneseTest(Selenese.builder()
.setHtmlTestsInClasspath("technical-debt-in-issues-widget",
"/qualityModel/TechnicalDebtWidgetTest/technical-debt/should-have-correct-values.html",
"/qualityModel/TechnicalDebtWidgetTest/technical-debt/should-open-remediation-cost-on-measures-service.html",
"/qualityModel/TechnicalDebtWidgetTest/technical-debt/display-differential-values.html",
// SONAR-4717
"/qualityModel/TechnicalDebtWidgetTest/technical-debt/is-in-issues-widget.html"
).build()).runOn(orchestrator);
}
/**
* SONAR-5450
*/
@Test
public void debt_overview_widget() {
new SeleneseTest(Selenese.builder()
.setHtmlTestsInClasspath("debt-overview-widget",
"/qualityModel/TechnicalDebtWidgetTest/debt-overview/should-have-correct-values.html",
"/qualityModel/TechnicalDebtWidgetTest/debt-overview/should-open-links-on-measures-service.html",
"/qualityModel/TechnicalDebtWidgetTest/debt-overview/display-differential-values.html"
).build()).runOn(orchestrator);
}
private static String getPastDate(int nbPastDays){
return new SimpleDateFormat("yyyy-MM-dd").format(DateUtils.addDays(new Date(), nbPastDays * -1));
}
}
|