/* * SonarQube * Copyright (C) 2009-2021 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.ce.task.projectanalysis.duplication; import org.junit.Rule; import org.junit.Test; import org.sonar.api.utils.log.LogTester; import org.sonar.api.utils.log.LoggerLevel; import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolderRule; import org.sonar.ce.task.projectanalysis.analysis.Branch; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; public class CrossProjectDuplicationStatusHolderImplTest { @Rule public LogTester logTester = new LogTester(); @Rule public AnalysisMetadataHolderRule analysisMetadataHolder = new AnalysisMetadataHolderRule(); private CrossProjectDuplicationStatusHolderImpl underTest = new CrossProjectDuplicationStatusHolderImpl(analysisMetadataHolder); @Test public void cross_project_duplication_is_enabled_when_enabled_in_report_and_no_branch() { analysisMetadataHolder .setCrossProjectDuplicationEnabled(true) .setBranch(newBranch(true)); underTest.start(); assertThat(underTest.isEnabled()).isTrue(); assertThat(logTester.logs(LoggerLevel.DEBUG)).containsOnly("Cross project duplication is enabled"); } @Test public void cross_project_duplication_is_disabled_when_not_enabled_in_report() { analysisMetadataHolder .setCrossProjectDuplicationEnabled(false) .setBranch(newBranch(true)); underTest.start(); assertThat(underTest.isEnabled()).isFalse(); assertThat(logTester.logs(LoggerLevel.DEBUG)).containsOnly("Cross project duplication is disabled because it's disabled in the analysis report"); } @Test public void cross_project_duplication_is_disabled_when_branch_is_used() { analysisMetadataHolder .setCrossProjectDuplicationEnabled(true) .setBranch(newBranch(false)); underTest.start(); assertThat(underTest.isEnabled()).isFalse(); assertThat(logTester.logs(LoggerLevel.DEBUG)).containsOnly("Cross project duplication is disabled because of a branch is used"); } @Test public void cross_project_duplication_is_disabled_when_not_enabled_in_report_and_when_branch_is_used() { analysisMetadataHolder .setCrossProjectDuplicationEnabled(false) .setBranch(newBranch(false)); underTest.start(); assertThat(underTest.isEnabled()).isFalse(); assertThat(logTester.logs(LoggerLevel.DEBUG)).containsOnly("Cross project duplication is disabled because it's disabled in the analysis report"); } @Test public void flag_is_build_in_start() { analysisMetadataHolder .setCrossProjectDuplicationEnabled(true) .setBranch(newBranch(true)); underTest.start(); assertThat(underTest.isEnabled()).isTrue(); // Change the boolean from the report. This can never happen, it's only to validate that the flag is build in the start method analysisMetadataHolder.setCrossProjectDuplicationEnabled(false); assertThat(underTest.isEnabled()).isTrue(); } @Test public void isEnabled_throws_ISE_when_start_have_not_been_called_before() { assertThatThrownBy(() -> underTest.isEnabled()) .isInstanceOf(IllegalStateException.class) .hasMessageContaining("Flag hasn't been initialized, the start() should have been called before"); } private static Branch newBranch(boolean supportsCrossProjectCpd) { Branch branch = mock(Branch.class); when(branch.supportsCrossProjectCpd()).thenReturn(supportsCrossProjectCpd); return branch; } }