/* * 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(); } }