package org.apache.maven.plugin.pmd; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import java.io.File; import org.apache.maven.plugin.testing.AbstractMojoTestCase; /** * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a> * @version $Id$ */ public class CpdViolationCheckMojoTest extends AbstractMojoTestCase { /** {@inheritDoc} */ @Override protected void setUp() throws Exception { super.setUp(); } public void testDefaultConfiguration() throws Exception { try { final File testPom = new File( getBasedir(), "src/test/resources/unit/default-configuration/pmd-check-default-configuration-plugin-config.xml" ); final CpdViolationCheckMojo mojo = (CpdViolationCheckMojo) lookupMojo( "cpd-check", testPom ); mojo.execute(); fail( "MojoFailureException should be thrown." ); } catch ( final Exception e ) { assertTrue( true ); } } public void testNotFailOnViolation() throws Exception { File testPom = new File( getBasedir(), "src/test/resources/unit/default-configuration/cpd-default-configuration-plugin-config.xml" ); final CpdReport mojo = (CpdReport) lookupMojo( "cpd", testPom ); mojo.execute(); testPom = new File( getBasedir(), "src/test/resources/unit/default-configuration/pmd-check-notfailonviolation-plugin-config.xml" ); final CpdViolationCheckMojo cpdViolationMojo = (CpdViolationCheckMojo) lookupMojo( "cpd-check", testPom ); cpdViolationMojo.execute(); assertTrue( true ); } public void testException() throws Exception { try { final File testPom = new File( getBasedir(), "src/test/resources/unit/custom-configuration/pmd-check-exception-test-plugin-config.xml" ); final CpdViolationCheckMojo mojo = (CpdViolationCheckMojo) lookupMojo( "cpd-check", testPom ); mojo.execute(); fail( "MojoFailureException should be thrown." ); } catch ( final Exception e ) { assertTrue( true ); } } public void testExclusionsConfiguration() throws Exception { File testPom = new File( getBasedir(), "src/test/resources/unit/default-configuration/cpd-default-configuration-plugin-config.xml" ); final CpdReport mojo = (CpdReport) lookupMojo( "cpd", testPom ); mojo.execute(); testPom = new File( getBasedir(), "src/test/resources/unit/default-configuration/cpd-check-cpd-exclusions-configuration-plugin-config.xml" ); final CpdViolationCheckMojo cpdViolationMojo = (CpdViolationCheckMojo) lookupMojo( "cpd-check", testPom ); // this call shouldn't throw an exception, as the classes with duplications have been excluded cpdViolationMojo.execute(); } }