]> source.dussan.org Git - sonarqube.git/blob
2a8f9d73592dc69a74f980676283fd778a3e0ce0
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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 package org.sonar.server.computation.task.projectanalysis.step;
21
22 import org.junit.ClassRule;
23 import org.junit.Rule;
24 import org.junit.Test;
25 import org.sonar.api.utils.System2;
26 import org.sonar.ce.queue.CeTask;
27 import org.sonar.db.DbClient;
28 import org.sonar.db.DbTester;
29 import org.sonar.server.computation.task.projectanalysis.analysis.AnalysisMetadataHolderRule;
30 import org.sonar.server.computation.task.projectanalysis.batch.BatchReportReaderRule;
31
32 import static java.util.Arrays.asList;
33 import static java.util.Collections.emptyList;
34 import static org.assertj.core.api.Assertions.assertThat;
35 import static org.mockito.Mockito.mock;
36 import static org.mockito.Mockito.when;
37
38 public class PersistScannerContextStepTest {
39   private static final String ANALYSIS_UUID = "UUID";
40
41   @ClassRule
42   public static final DbTester dbTester = DbTester.create(System2.INSTANCE);
43
44   @Rule
45   public BatchReportReaderRule reportReader = new BatchReportReaderRule();
46   @Rule
47   public AnalysisMetadataHolderRule analysisMetadataHolder = new AnalysisMetadataHolderRule()
48     .setUuid(ANALYSIS_UUID);
49
50   private DbClient dbClient = dbTester.getDbClient();
51   private CeTask ceTask = mock(CeTask.class);
52   private PersistScannerContextStep underTest = new PersistScannerContextStep(reportReader, dbClient, ceTask);
53
54   @Test
55   public void getDescription() {
56     assertThat(underTest.getDescription()).isEqualTo("Persist scanner context");
57   }
58
59   @Test
60   public void executes_persist_lines_of_reportReader() {
61     String taskUuid = "task uuid";
62     when(ceTask.getUuid()).thenReturn(taskUuid);
63     reportReader.setScannerLogs(asList("log1", "log2"));
64
65     underTest.execute();
66
67     assertThat(dbClient.ceScannerContextDao().selectScannerContext(dbTester.getSession(), taskUuid))
68       .contains("log1" + '\n' + "log2");
69   }
70
71   @Test
72   public void executes_persist_does_not_persist_any_scanner_context_if_iterator_is_empty() {
73     reportReader.setScannerLogs(emptyList());
74
75     underTest.execute();
76
77     assertThat(dbClient.ceScannerContextDao().selectScannerContext(dbTester.getSession(), ANALYSIS_UUID))
78       .isEmpty();
79   }
80
81 }