blob: f966237c33d963e0ec8507492af3e28b7bdbf983 [file] [log] [blame]
package org.apache.maven.project.canonical;
/*
* 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 java.util.List;
import org.apache.maven.model.Plugin;
import org.apache.maven.model.PluginExecution;
import org.apache.maven.project.AbstractMavenProjectTestCase;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.xml.Xpp3Dom;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
/**
* @author Jason van Zyl
*/
public class CanonicalProjectBuilderTest
extends AbstractMavenProjectTestCase
{
@Test
public void testProjectBuilder()
throws Exception
{
File f = getFileForClasspathResource( "canonical-pom.xml" );
MavenProject project = getProject( f );
// ----------------------------------------------------------------------
// Top-level elements
// ----------------------------------------------------------------------
assertEquals( "4.0.0", project.getModelVersion() );
// ----------------------------------------------------------------------
// Plugins
// ----------------------------------------------------------------------
List<Plugin> plugins = project.getBuildPlugins();
// Plugin0 [plexus]
String key = "org.apache.maven.plugins:maven-plexus-plugin";
Plugin plugin = null;
for ( Plugin check : plugins )
{
if ( key.equals( check.getKey() ) )
{
plugin = check;
break;
}
}
assertNotNull( plugin );
assertEquals( "1.0", plugin.getVersion() );
Xpp3Dom configuration = (Xpp3Dom) plugin.getConfiguration();
assertEquals( "src/conf/plexus.conf", configuration.getChild( "plexusConfiguration" ).getValue() );
assertEquals( "src/conf/plexus.properties",
configuration.getChild( "plexusConfigurationPropertiesFile" ).getValue() );
assertEquals( "Continuum", configuration.getChild( "plexusApplicationName" ).getValue() );
// ----------------------------------------------------------------------
// Goal specific configuration
// ----------------------------------------------------------------------
List<PluginExecution> executions = plugin.getExecutions();
PluginExecution execution = executions.get( 0 );
String g0 = execution.getGoals().get( 0 );
assertEquals( "plexus:runtime", g0 );
configuration = (Xpp3Dom) execution.getConfiguration();
assertEquals( "ContinuumPro", configuration.getChild( "plexusApplicationName" ).getValue() );
// Plugin1 [antlr]
}
}