[MNG-3575] Allow hexadecimal parameters

o Added IT


git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@1070111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2011-02-12 17:06:32 +00:00
parent 4314d28bab
commit d99165125d
3 changed files with 121 additions and 0 deletions

View File

@ -392,6 +392,7 @@ public class IntegrationTestSuite
suite.addTestSuite( MavenITmng3599useHttpProxyForWebDAVTest.class );
suite.addTestSuite( MavenITmng3586SystemScopePluginDependencyTest.class );
suite.addTestSuite( MavenITmng3581PluginUsesWagonDependencyTest.class );
suite.addTestSuite( MavenITmng3575HexadecimalOctalPluginParameterConfigTest.class );
suite.addTestSuite( MavenITmng3545ProfileDeactivationTest.class );
suite.addTestSuite( MavenITmng3536AppendedAbsolutePathsTest.class );
suite.addTestSuite( MavenITmng3535SelfReferentialPropertiesTest.class );

View File

@ -0,0 +1,62 @@
package org.apache.maven.it;
/*
* 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 org.apache.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
import java.util.Properties;
/**
* This is a test set for <a href="http://jira.codehaus.org/browse/MNG-3575">MNG-3575</a>.
*/
public class MavenITmng3575HexadecimalOctalPluginParameterConfigTest
extends AbstractMavenIntegrationTestCase
{
public MavenITmng3575HexadecimalOctalPluginParameterConfigTest()
{
super( "[3.0.3,)" );
}
/**
* Verify that numeric plugin parameters can be configured using hexadecimal/octal notation.
*/
public void testit()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3575" );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.deleteDirectory( "target" );
verifier.executeGoal( "validate" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
Properties props = verifier.loadProperties( "target/config.properties" );
assertEquals( "64", props.getProperty( "byteParam" ) );
assertEquals( "1024", props.getProperty( "shortParam" ) );
assertEquals( "65536", props.getProperty( "integerParam" ) );
assertEquals( "68719476735", props.getProperty( "longParam" ) );
}
}

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng3575</groupId>
<artifactId>test</artifactId>
<version>1</version>
<name>Maven Integration Test :: MNG-3575</name>
<description>
Verify that numeric plugin parameters can be configured using hexadecimal/octal notation.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-configuration</artifactId>
<version>2.1-SNAPSHOT</version>
<configuration>
<propertiesFile>target/config.properties</propertiesFile>
<byteParam>0x40</byteParam>
<shortParam>02000</shortParam>
<integerParam>0x10000</integerParam>
<longParam>0777777777777</longParam>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>config</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>