/* * SonarQube * Copyright (C) 2009-2017 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.rule; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.rules.TemporaryFolder; import org.slf4j.Logger; import org.sonar.api.batch.fs.internal.DefaultFileSystem; import org.sonar.api.batch.fs.internal.TestInputFileBuilder; import org.sonar.api.config.Settings; import org.sonar.api.config.MapSettings; import org.sonar.api.utils.MessageException; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; public class QProfileVerifierTest { @Rule public TemporaryFolder temp = new TemporaryFolder(); @Rule public ExpectedException thrown = ExpectedException.none(); private DefaultFileSystem fs; private ModuleQProfiles profiles; private Settings settings = new MapSettings(); @Before public void before() throws Exception { fs = new DefaultFileSystem(temp.newFolder().toPath()); profiles = mock(ModuleQProfiles.class); QProfile javaProfile = new QProfile().setKey("p1").setName("My Java profile").setLanguage("java"); when(profiles.findByLanguage("java")).thenReturn(javaProfile); QProfile cobolProfile = new QProfile().setKey("p2").setName("My Cobol profile").setLanguage("cobol"); when(profiles.findByLanguage("cobol")).thenReturn(cobolProfile); } @Test public void should_log_all_used_profiles() { fs.add(new TestInputFileBuilder("foo", "src/Bar.java").setLanguage("java").build()); fs.add(new TestInputFileBuilder("foo", "src/Baz.cbl").setLanguage("cobol").build()); QProfileVerifier profileLogger = new QProfileVerifier(settings, fs, profiles); Logger logger = mock(Logger.class); profileLogger.execute(logger); verify(logger).info("Quality profile for {}: {}", "java", "My Java profile"); verify(logger).info("Quality profile for {}: {}", "cobol", "My Cobol profile"); } @Test public void should_fail_if_default_profile_not_used() { fs.add(new TestInputFileBuilder("foo", "src/Bar.java").setLanguage("java").build()); settings.setProperty("sonar.profile", "Unknown"); QProfileVerifier profileLogger = new QProfileVerifier(settings, fs, profiles); thrown.expect(MessageException.class); thrown.expectMessage("sonar.profile was set to 'Unknown' but didn't match any profile for any language. Please check your configuration."); profileLogger.execute(); } @Test public void should_not_fail_if_no_language_on_project() { settings.setProperty("sonar.profile", "Unknown"); QProfileVerifier profileLogger = new QProfileVerifier(settings, fs, profiles); profileLogger.execute(); } @Test public void should_not_fail_if_default_profile_used_at_least_once() { fs.add(new TestInputFileBuilder("foo", "src/Bar.java").setLanguage("java").build()); settings.setProperty("sonar.profile", "My Java profile"); QProfileVerifier profileLogger = new QProfileVerifier(settings, fs, profiles); profileLogger.execute(); } }