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
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* SonarQube
* Copyright (C) 2009-2025 SonarSource SA
* mailto:info 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.sonar.scanner.sensor;
import java.io.File;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
import org.sonar.api.SonarEdition;
import org.sonar.api.SonarQubeSide;
import org.sonar.api.SonarRuntime;
import org.sonar.api.batch.fs.InputModule;
import org.sonar.api.batch.fs.internal.DefaultFileSystem;
import org.sonar.api.batch.fs.internal.DefaultInputFile;
import org.sonar.api.batch.fs.internal.DefaultInputProject;
import org.sonar.api.batch.rule.ActiveRules;
import org.sonar.api.batch.rule.internal.ActiveRulesBuilder;
import org.sonar.api.config.internal.MapSettings;
import org.sonar.api.internal.SonarRuntimeImpl;
import org.sonar.api.utils.Version;
import org.sonar.scanner.bootstrap.ScannerPluginRepository;
import org.sonar.scanner.cache.AnalysisCacheEnabled;
import org.sonar.scanner.cache.ReadCacheImpl;
import org.sonar.scanner.cache.WriteCacheImpl;
import org.sonar.scanner.scan.branch.BranchConfiguration;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
class ModuleSensorContextTest {
@TempDir
public File temp;
private final ActiveRules activeRules = new ActiveRulesBuilder().build();
private final MapSettings settings = new MapSettings();
private final DefaultSensorStorage sensorStorage = mock(DefaultSensorStorage.class);
private final BranchConfiguration branchConfiguration = mock(BranchConfiguration.class);
private final WriteCacheImpl writeCache = mock(WriteCacheImpl.class);
private final ReadCacheImpl readCache = mock(ReadCacheImpl.class);
private final AnalysisCacheEnabled analysisCacheEnabled = mock(AnalysisCacheEnabled.class);
private final UnchangedFilesHandler unchangedFilesHandler = mock(UnchangedFilesHandler.class);
private final SonarRuntime runtime = SonarRuntimeImpl.forSonarQube(Version.parse("5.5"), SonarQubeSide.SCANNER, SonarEdition.COMMUNITY);
private DefaultFileSystem fs;
private ModuleSensorContext underTest;
private ExecutingSensorContext executingSensorContext = mock(ExecutingSensorContext.class);
private ScannerPluginRepository pluginRepository = mock(ScannerPluginRepository.class);
@BeforeEach
void prepare() {
fs = new DefaultFileSystem(temp);
underTest = new ModuleSensorContext(mock(DefaultInputProject.class), mock(InputModule.class), settings.asConfig(), fs, activeRules, sensorStorage, runtime,
branchConfiguration, writeCache, readCache, analysisCacheEnabled, unchangedFilesHandler, executingSensorContext, pluginRepository);
}
@Test
void shouldProvideComponents_returnsNotNull() {
assertThat(underTest.activeRules()).isEqualTo(activeRules);
assertThat(underTest.fileSystem()).isEqualTo(fs);
assertThat(underTest.getSonarQubeVersion()).isEqualTo(Version.parse("5.5"));
assertThat(underTest.runtime()).isEqualTo(runtime);
assertThat(underTest.canSkipUnchangedFiles()).isFalse();
assertThat(underTest.nextCache()).isEqualTo(writeCache);
assertThat(underTest.previousCache()).isEqualTo(readCache);
assertThat(underTest.newIssue()).isNotNull();
assertThat(underTest.newExternalIssue()).isNotNull();
assertThat(underTest.newAdHocRule()).isNotNull();
assertThat(underTest.newMeasure()).isNotNull();
assertThat(underTest.newAnalysisError()).isEqualTo(ModuleSensorContext.NO_OP_NEW_ANALYSIS_ERROR);
assertThat(underTest.isCancelled()).isFalse();
assertThat(underTest.newSignificantCode()).isNotNull();
}
@Test
void should_delegate_to_unchanged_files_handler() {
DefaultInputFile defaultInputFile = mock(DefaultInputFile.class);
underTest.markAsUnchanged(defaultInputFile);
verify(unchangedFilesHandler).markAsUnchanged(defaultInputFile);
}
@Test
void pull_request_can_skip_unchanged_files() {
when(branchConfiguration.isPullRequest()).thenReturn(true);
underTest = new ModuleSensorContext(mock(DefaultInputProject.class), mock(InputModule.class), settings.asConfig(), fs, activeRules, sensorStorage, runtime,
branchConfiguration, writeCache, readCache, analysisCacheEnabled, unchangedFilesHandler, executingSensorContext, pluginRepository);
assertThat(underTest.canSkipUnchangedFiles()).isTrue();
}
}
|