blob: 105623d55638d9932d7f2c7f52a161f33aca5390 [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.plugin.testing;
import java.io.File;
import java.io.StringReader;
import java.util.Map;
import org.codehaus.plexus.configuration.PlexusConfiguration;
import org.codehaus.plexus.util.xml.Xpp3Dom;
import org.codehaus.plexus.util.xml.Xpp3DomBuilder;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
/**
* @author Mirko Friedenhagen
*/
public class MojoRuleTest {
private boolean beforeWasCalled = false;
@Rule
public MojoRule rule = new MojoRule() {
@Override
protected void before() throws Throwable {
beforeWasCalled = true;
}
};
private String pom;
private Xpp3Dom pomDom;
private PlexusConfiguration pluginConfiguration;
/** {@inheritDoc} */
@Before
public void setUp() throws Exception {
pom = "<project>" + "<build>"
+ "<plugins>"
+ "<plugin>"
+ "<artifactId>maven-simple-plugin</artifactId>"
+ "<configuration>"
+ "<keyOne>valueOne</keyOne>"
+ "<keyTwo>valueTwo</keyTwo>"
+ "</configuration>"
+ "</plugin>"
+ "</plugins>"
+ "</build>"
+ "</project>";
pomDom = Xpp3DomBuilder.build(new StringReader(pom));
pluginConfiguration = rule.extractPluginConfiguration("maven-simple-plugin", pomDom);
}
/**
* @throws Exception if any
*/
@Test
public void testPluginConfigurationExtraction() throws Exception {
assertEquals("valueOne", pluginConfiguration.getChild("keyOne").getValue());
assertEquals("valueTwo", pluginConfiguration.getChild("keyTwo").getValue());
}
/**
* @throws Exception if any
*/
@Test
public void testMojoConfiguration() throws Exception {
SimpleMojo mojo = new SimpleMojo();
mojo = rule.configureMojo(mojo, pluginConfiguration);
assertEquals("valueOne", mojo.getKeyOne());
assertEquals("valueTwo", mojo.getKeyTwo());
}
/**
* @throws Exception if any
*/
@Test
public void testVariableAccessWithoutGetter() throws Exception {
SimpleMojo mojo = new SimpleMojo();
mojo = rule.configureMojo(mojo, pluginConfiguration);
assertEquals("valueOne", rule.getVariableValueFromObject(mojo, "keyOne"));
assertEquals("valueTwo", rule.getVariableValueFromObject(mojo, "keyTwo"));
}
/**
* @throws Exception if any
*/
@Test
public void testVariableAccessWithoutGetter2() throws Exception {
SimpleMojo mojo = new SimpleMojo();
mojo = rule.configureMojo(mojo, pluginConfiguration);
Map<String, Object> map = rule.getVariablesAndValuesFromObject(mojo);
assertEquals("valueOne", map.get("keyOne"));
assertEquals("valueTwo", map.get("keyTwo"));
}
/**
* @throws Exception if any
*/
@Test
public void testSettingMojoVariables() throws Exception {
SimpleMojo mojo = new SimpleMojo();
mojo = rule.configureMojo(mojo, pluginConfiguration);
rule.setVariableValueToObject(mojo, "keyOne", "myValueOne");
assertEquals("myValueOne", rule.getVariableValueFromObject(mojo, "keyOne"));
}
@Test
@WithoutMojo
public void testNoRuleWrapper() throws Exception {
assertFalse("before executed although WithMojo annotation was added", beforeWasCalled);
}
@Test
public void testWithRuleWrapper() throws Exception {
assertTrue("before executed because WithMojo annotation was not added", beforeWasCalled);
}
/**
* @throws Exception if any
*/
@Test
public void testLookupInitializedMojo() throws Exception {
File pomBaseDir = new File("src/test/projects/property");
ParametersMojo mojo = rule.lookupConfiguredMojo(pomBaseDir, "parameters");
assertEquals("default", rule.getVariableValueFromObject(mojo, "withDefault"));
assertEquals("propertyValue", rule.getVariableValueFromObject(mojo, "withProperty"));
assertEquals("propertyValue", rule.getVariableValueFromObject(mojo, "withPropertyAndDefault"));
}
}