diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-03-14 14:09:03 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-03-14 14:09:03 +0100 |
commit | 63e3178d2c454d17a7c507a0efca93770be40d41 (patch) | |
tree | 30f8c7e06a50c6394d8c76fc3de160d51228ee80 | |
parent | 937e748c6b7ca0af7c028a08de17b8db7d2ac6f9 (diff) | |
download | sonarqube-5.5-M10.tar.gz sonarqube-5.5-M10.zip |
Remove performance test IssuesModeBigTest5.5-M10
-rw-r--r-- | tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/IssuesModeBigTest.java | 144 |
1 files changed, 0 insertions, 144 deletions
diff --git a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/IssuesModeBigTest.java b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/IssuesModeBigTest.java deleted file mode 100644 index 61439b62c03..00000000000 --- a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/IssuesModeBigTest.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * 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 org.sonarsource.sonarqube.perf.scanner; - -import com.sonar.orchestrator.Orchestrator; -import com.sonar.orchestrator.build.SonarScanner; -import com.sonar.orchestrator.locator.FileLocation; -import java.io.File; -import java.io.IOException; -import org.apache.commons.io.FileUtils; -import org.apache.commons.lang.StringUtils; -import org.junit.BeforeClass; -import org.junit.ClassRule; -import org.junit.Test; -import org.junit.rules.TemporaryFolder; -import org.sonarsource.sonarqube.perf.PerfTestCase; - -// Can't afford multiple executions of this long test, so it does not -// use PerfRule -public class IssuesModeBigTest extends PerfTestCase { - - @ClassRule - public static TemporaryFolder temp = new TemporaryFolder(); - - private static File baseProjectDir; - - @ClassRule - public static final Orchestrator ORCHESTRATOR = Orchestrator - .builderEnv() - .addPlugin(FileLocation.byWildcardMavenFilename(new File("../../plugins/sonar-xoo-plugin/target"), "sonar-xoo-plugin-*.jar")) - // should not be so high, but required as long embedded h2 is used -> requires more memory on server - .setServerProperty("sonar.web.javaOpts", "-Xmx1G -XX:MaxPermSize=100m -XX:+HeapDumpOnOutOfMemoryError") - .restoreProfileAtStartup(FileLocation.ofClasspath("/one-xoo-issue-per-line.xml")) - .build(); - - @BeforeClass - public static void setUp() throws Exception { - // Execute a first analysis to prevent any side effects with cache of plugin JAR files - // ORCHESTRATOR.executeBuild(PerfTestCase.newScanner("-Xmx512m -server", "sonar.profile", "one-xoo-issue-per-line")); - generateAndScanProject(); - } - - @Test - public void issues_mode_scan_big_project() throws IOException { - File userHome = temp.newFolder(); - SonarScanner scanner = createScanner(); - scanner.setProperty("sonar.analysis.mode", "issues"); - scanner.setProperty("sonar.scanAllFiles", "true"); - // Use a new home to start with empty cache - scanner.setProperty("sonar.userHome", userHome.getAbsolutePath()); - long start = System.currentTimeMillis(); - ORCHESTRATOR.executeBuild(scanner); - long firstIssuesDuration = System.currentTimeMillis() - start; - System.out.println("First issues analysis skipping unchanged files: " + firstIssuesDuration + "ms"); - - // caches are warmed - start = System.currentTimeMillis(); - ORCHESTRATOR.executeBuild(scanner); - long secondIssuesDuration = System.currentTimeMillis() - start; - System.out.println("Second issues analysis skipping unchanged files: " + secondIssuesDuration + "ms"); - - assertDurationAround(secondIssuesDuration, 109_000L); - } - - @Test - public void issues_mode_scan_big_project_only_changed() throws IOException { - File userHome = temp.newFolder(); - SonarScanner scanner = createScanner(); - scanner.setProperty("sonar.analysis.mode", "issues"); - // Use a new home to start with empty cache - scanner.setProperty("sonar.userHome", userHome.getAbsolutePath()); - long start = System.currentTimeMillis(); - ORCHESTRATOR.executeBuild(scanner); - long firstIssuesDuration = System.currentTimeMillis() - start; - System.out.println("First issues analysis: " + firstIssuesDuration + "ms"); - - // caches are warmed - start = System.currentTimeMillis(); - ORCHESTRATOR.executeBuild(scanner); - long secondIssuesDuration = System.currentTimeMillis() - start; - System.out.println("Second issues analysis: " + secondIssuesDuration + "ms"); - - assertDurationAround(secondIssuesDuration, 69_000L); - } - - private static void generateAndScanProject() throws IOException { - ORCHESTRATOR.getServer().provisionProject("big", "xoo-big"); - ORCHESTRATOR.getServer().associateProjectToQualityProfile("big", "xoo", "one-xoo-issue-per-line"); - - baseProjectDir = generateProject(); - SonarScanner scanner = createScanner(); - - long start = System.currentTimeMillis(); - ORCHESTRATOR.executeBuild(scanner); - long firstDuration = System.currentTimeMillis() - start; - System.out.println("Publishing: " + firstDuration + "ms"); - } - - private static File generateProject() throws IOException { - File baseDir = temp.newFolder(); - File srcDir = new File(baseDir, "src"); - srcDir.mkdir(); - - int nbFiles = 100; - int lines = 10000; - for (int nb = 1; nb <= nbFiles; nb++) { - File xooFile = new File(srcDir, "sample" + nb + ".xoo"); - FileUtils.write(xooFile, StringUtils.repeat(StringUtils.repeat("a", 100) + "\n", lines)); - } - return baseDir; - } - - private static SonarScanner createScanner() { - SonarScanner scanner = SonarScanner.create() - .setProperties( - "sonar.projectKey", "big", - "sonar.projectName", "xoo-big", - "sonar.projectVersion", "1.0", - "sonar.sources", "src", - "sonar.showProfiling", "true"); - scanner - .setEnvironmentVariable("SONAR_RUNNER_OPTS", "-Xmx128m -server -XX:MaxPermSize=64m") - .setProjectDir(baseProjectDir); - return scanner; - } - -} |