]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5801 fix sonar-data-test
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 23 Nov 2014 22:50:53 +0000 (23:50 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 23 Nov 2014 22:50:53 +0000 (23:50 +0100)
server/sonar-data-test/src/test/java/org/sonar/data/issues/IssuesDbExtractionTest.java

index cd1313daa1ed80de136f029f9d76cfede376442b..3a6b034cd71cabb36ae9b13a7e373961e7b1224a 100644 (file)
@@ -65,7 +65,7 @@ public class IssuesDbExtractionTest extends AbstractTest {
     ruleDao = new RuleDao();
     componentDao = new ComponentDao(System2.INSTANCE);
 
-    session = db.myBatis().openSession(true);
+    session = db.myBatis().openSession(false);
   }
 
   @After
@@ -75,7 +75,7 @@ public class IssuesDbExtractionTest extends AbstractTest {
 
   @Test
   public void extract_issues() throws Exception {
-    generateData();
+    insertReferentials();
 
     ProgressTask progressTask = new ProgressTask(counter);
     Timer timer = new Timer("Extract Issues");
@@ -89,7 +89,7 @@ public class IssuesDbExtractionTest extends AbstractTest {
       assertThat(issueDao.synchronizedIssues).isEqualTo(ISSUE_COUNT);
 
       long time = stop - start;
-      LOGGER.info("Extracted {} Issues in {} ms with avg {} Issue/second", ISSUE_COUNT, time, documentPerSecond(time));
+      LOGGER.info("Iterated over {} issues in {} ms with avg of {} issues/second", ISSUE_COUNT, time, rowsPerSecond(time));
       // assertDurationAround(time, Long.parseLong(getProperty("IssuesDbExtractionTest.extract_issues")));
 
     } finally {
@@ -98,7 +98,7 @@ public class IssuesDbExtractionTest extends AbstractTest {
     }
   }
 
-  private void generateData() {
+  private void insertReferentials() {
     long start = System.currentTimeMillis();
 
     for (int i = 0; i < RULES_NUMBER; i++) {
@@ -127,10 +127,10 @@ public class IssuesDbExtractionTest extends AbstractTest {
         session.commit();
       }
     }
-    LOGGER.info("Generated data in {} ms", System.currentTimeMillis() - start);
+    LOGGER.info("Referentials inserted in {} ms", System.currentTimeMillis() - start);
   }
 
-  protected int documentPerSecond(long time) {
+  protected int rowsPerSecond(long time) {
     return (int) Math.round(ISSUE_COUNT / (time / 1000.0));
   }