]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6990 Adjust expected duration of file persistence
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Tue, 10 Nov 2015 13:54:20 +0000 (14:54 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Tue, 10 Nov 2015 13:54:32 +0000 (14:54 +0100)
Duplications are now read from the in-memory repository and no more from the analysis report, so duration is now faster

server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java

index c10ab0b668809ec282e8a3c31ce1b0ab8b10c3ce..260d5edaf8fa86867ce4227f384b539d86e554a8 100644 (file)
@@ -24,6 +24,7 @@ import java.io.File;
 import java.io.IOException;
 import java.util.ArrayList;
 import java.util.List;
+
 import org.apache.commons.io.FileUtils;
 import org.junit.Rule;
 import org.junit.Test;
@@ -101,7 +102,7 @@ public class PersistFileSourcesStepTest {
     assertThat(dbTester.countRowsOfTable("file_sources")).isEqualTo(NUMBER_OF_FILES);
     LOGGER.info(String.format("File sources have been persisted in %d ms", duration));
 
-    benchmark.expectAround("Duration to persist FILE_SOURCES", duration, 125000, Benchmark.DEFAULT_ERROR_MARGIN_PERCENTS);
+    benchmark.expectAround("Duration to persist FILE_SOURCES", duration, 109000, Benchmark.DEFAULT_ERROR_MARGIN_PERCENTS);
   }
 
   private File prepareReport() throws IOException {