This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MRRESOURCES-104
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/MRRESOURCES-104 by this push:
     new 28549f7  WIP - executeGoal will get an exception.
28549f7 is described below

commit 28549f751155712f11a11727d877157896ba6fa7
Author: Karl Heinz Marbaise <khmarba...@apache.org>
AuthorDate: Sun Apr 8 00:56:17 2018 +0200

    WIP - executeGoal will get an exception.
---
 .../remote/it/IT_RunOnlyAtExecutionRoot.java       | 28 +++++++++++++---------
 1 file changed, 17 insertions(+), 11 deletions(-)

diff --git 
a/src/test/java/org/apache/maven/plugin/resources/remote/it/IT_RunOnlyAtExecutionRoot.java
 
b/src/test/java/org/apache/maven/plugin/resources/remote/it/IT_RunOnlyAtExecutionRoot.java
index 182841f..a91ffce 100644
--- 
a/src/test/java/org/apache/maven/plugin/resources/remote/it/IT_RunOnlyAtExecutionRoot.java
+++ 
b/src/test/java/org/apache/maven/plugin/resources/remote/it/IT_RunOnlyAtExecutionRoot.java
@@ -58,21 +58,27 @@ public class IT_RunOnlyAtExecutionRoot
         // Might reconsider how to write a better testcase.
         // verifier.deleteArtifacts( 
"org.apache.maven.plugin.rresource.it.mrr41" );
 
-        verifier.executeGoal( "generate-resources" );
-        verifier.verifyErrorFreeLog();
-        verifier.resetStreams();
+        try
+        {
+            verifier.executeGoal( "generate-resources" );
+        }
+        catch ( VerificationException e )
+        {
+            verifier.resetStreams();
+
+            String depResource = 
"target/maven-shared-archive-resources/DEPENDENCIES";
+            File output = new File( dir, depResource );
+            assertTrue( output.exists() );
 
-        String depResource = 
"target/maven-shared-archive-resources/DEPENDENCIES";
-        File output = new File( dir, depResource );
-        assertTrue( output.exists() );
+            assertFalse( new File( dir, "child1/" + depResource ).exists() );
+            assertFalse( new File( dir, "child2/" + depResource ).exists() );
 
-        assertFalse( new File( dir, "child1/" + depResource ).exists() );
-        assertFalse( new File( dir, "child2/" + depResource ).exists() );
+            String content = FileUtils.fileRead( output );
 
-        String content = FileUtils.fileRead( output );
+            assertTrue( content.contains( "Dependency Id: 
org.apache.maven.plugin.rresource.it.mrr41:release:1.0" ) );
+            assertTrue( content.contains( "Dependency Id: 
org.apache.maven.plugin.rresource.it.mrr41:snapshot:1.0-SNAPSHOT" ) );
 
-        assertTrue( content.contains( "Dependency Id: 
org.apache.maven.plugin.rresource.it.mrr41:release:1.0" ) );
-        assertTrue( content.contains( "Dependency Id: 
org.apache.maven.plugin.rresource.it.mrr41:snapshot:1.0-SNAPSHOT" ) );
+        }
     }
 
 }

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.

Reply via email to