[MNG-4291] [regression] @requiresOnline mojo annotation is ignored

o Added IT

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@803127 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-08-11 13:57:53 +00:00
parent bb004bd928
commit 1e527fea47
4 changed files with 153 additions and 0 deletions

View File

@ -86,6 +86,7 @@ public class IntegrationTestSuite
// suite.addTestSuite( MavenIT0109ReleaseUpdateTest.class ); // suite.addTestSuite( MavenIT0109ReleaseUpdateTest.class );
// suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137 // suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137
suite.addTestSuite( MavenITmng4291MojoRequiresOnlineModeTest.class );
suite.addTestSuite( MavenITmng4283ParentPomPackagingTest.class ); suite.addTestSuite( MavenITmng4283ParentPomPackagingTest.class );
suite.addTestSuite( MavenITmng4281PreferLocalSnapshotTest.class ); suite.addTestSuite( MavenITmng4281PreferLocalSnapshotTest.class );
suite.addTestSuite( MavenITmng4279WagonProviderFailoverTest.class ); suite.addTestSuite( MavenITmng4279WagonProviderFailoverTest.class );

View File

@ -0,0 +1,93 @@
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-4291">MNG-4291</a>.
*
* @author Benjamin Bentmann
*/
public class MavenITmng4291MojoRequiresOnlineModeTest
extends AbstractMavenIntegrationTestCase
{
public MavenITmng4291MojoRequiresOnlineModeTest()
{
super( ALL_MAVEN_VERSIONS );
}
/**
* Test that the mojo annotation @requiresOnline is recognized. For a direct mojo invocation, this means to fail
* when Maven is in offline mode but the mojo requires online model.
*/
public void testitDirectInvocation()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4291" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.deleteDirectory( "target" );
verifier.setLogFileName( "log-direct.txt" );
verifier.getCliOptions().add( "--offline" );
try
{
verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-online:2.1-SNAPSHOT:touch" );
verifier.verifyErrorFreeLog();
fail( "Invalid packaging of parent POM did not fail the build." );
}
catch ( VerificationException e )
{
// expected
}
finally
{
verifier.resetStreams();
}
}
/**
* Test that the mojo annotation @requiresOnline is recognized. For a mojo invocation bound to a lifecycle phase,
* this means to skip the mojo when Maven is in offline mode but the mojo requires online model.
*/
public void testitLifecycleInvocation()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4291" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.deleteDirectory( "target" );
verifier.setLogFileName( "log-lifecycle.txt" );
verifier.getCliOptions().add( "--offline" );
verifier.executeGoal( "validate" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
verifier.assertFileNotPresent( "target/touch.txt" );
}
}

View File

@ -151,6 +151,12 @@ under the License.
<version>${itPluginVersion}</version> <version>${itPluginVersion}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-online</artifactId>
<version>${itPluginVersion}</version>
<scope>runtime</scope>
</dependency>
<dependency> <dependency>
<groupId>org.apache.maven.its.plugins</groupId> <groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-packaging</artifactId> <artifactId>maven-it-plugin-packaging</artifactId>

View File

@ -0,0 +1,53 @@
<?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.mng4291</groupId>
<artifactId>test</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<name>Maven Integration Test :: MNG-4291</name>
<description>
Test that the mojo annotation @requiresOnline is recognized.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-online</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<id>test</id>
<phase>validate</phase>
<goals>
<goal>touch</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>