/* * Sonar PHP Plugin * Copyright (C) 2010 Sonar PHP Plugin * dev@sonar.codehaus.org * * 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 02 */ package org.sonar.plugins.php.cpd; import static org.junit.Assert.assertEquals; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_LINES; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_TOKENS; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_EXCLUDE_OPTION; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_EXCLUDE_PACKAGE_KEY; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_MINIMUM_NUMBER_OF_IDENTICAL_LINES_MODIFIER; import static org.sonar.plugins.php.cpd.PhpCpdConfiguration.PHPCPD_MINIMUM_NUMBER_OF_IDENTICAL_TOKENS_MODIFIER; import java.io.File; import java.util.ArrayList; import java.util.List; import org.apache.commons.configuration.Configuration; import org.junit.Test; import org.sonar.api.resources.Project; import org.sonar.plugins.php.core.PhpPlugin; /** * @author akram * */ public class PhpCpdExecutorTest { /** * Test method for {@link org.sonar.plugins.php.codesniffer.PhpCpdExecutor#getPhpcpdCommandLine()} . */ @Test public void testGetCommandLine() { Configuration configuration = mock(Configuration.class); when(configuration.getStringArray(PhpPlugin.FILE_SUFFIXES_KEY)).thenReturn(null); PhpCpdConfiguration c = mock(PhpCpdConfiguration.class); when(c.getMinimunNumberOfIdenticalLines()).thenReturn(PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_LINES); when(c.getMinimunNumberOfIdenticalTokens()).thenReturn(PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_TOKENS); String excludedPackages = "test/*"; when(c.getExcludePackages()).thenReturn(excludedPackages); when(c.isStringPropertySet(PHPCPD_EXCLUDE_PACKAGE_KEY)).thenReturn(true); String reportFile = "C:\\projets\\PHP\\Monkey\\target\\logs\\php-cpd.xml"; when(c.getReportFile()).thenReturn(new File(reportFile)); when(c.isOsWindows()).thenReturn(false); String phpcpdScriptName = "phpcpd"; when(c.getOsDependentToolScriptName()).thenReturn(phpcpdScriptName); Project p = mock(Project.class); when(p.getConfiguration()).thenReturn(configuration); when(c.getProject()).thenReturn(p); PhpCpdExecutor executor = new PhpCpdExecutor(c); List<String> commandLine = executor.getCommandLine(); List<String> expected = new ArrayList<String>(); expected.add(phpcpdScriptName); expected.add(PHPCPD_MINIMUM_NUMBER_OF_IDENTICAL_LINES_MODIFIER); expected.add(PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_LINES.toString()); expected.add(PHPCPD_MINIMUM_NUMBER_OF_IDENTICAL_TOKENS_MODIFIER); expected.add(PHPCPD_DEFAULT_MINIMUM_NUMBER_OF_IDENTICAL_TOKENS.toString()); expected.add("--log-pmd"); expected.add(reportFile); expected.add(PHPCPD_EXCLUDE_OPTION); expected.add(excludedPackages); assertEquals(expected, commandLine); } }