blob: 9cae37352c1290c3679da94023f00ed353e7b0fb [file] [log] [blame]
/*
* 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.
*/
package org.apache.maven.project.canonical;
import java.io.File;
import java.util.List;
import org.apache.maven.api.xml.XmlNode;
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.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
/**
*/
class CanonicalProjectBuilderTest extends AbstractMavenProjectTestCase {
@Test
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());
XmlNode configuration = plugin.getDelegate().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 = execution.getDelegate().getConfiguration();
assertEquals(
"ContinuumPro", configuration.getChild("plexusApplicationName").getValue());
// Plugin1 [antlr]
}
}