View Javadoc

1   package org.apache.maven.it;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.it.Verifier;
23  import org.apache.maven.it.util.ResourceExtractor;
24  
25  import java.io.File;
26  import java.util.List;
27  
28  /**
29   * This is a test set for <a href="http://jira.codehaus.org/browse/MNG-4452">MNG-4452</a>.
30   * 
31   * @author Benjamin Bentmann
32   */
33  public class MavenITmng4452ResolutionOfSnapshotWithClassifierTest
34      extends AbstractMavenIntegrationTestCase
35  {
36  
37      public MavenITmng4452ResolutionOfSnapshotWithClassifierTest()
38      {
39          super( "[3.0-beta-4,)" );
40      }
41  
42      /**
43       * Test that snapshot artifacts with classifiers can be successfully resolved from remote repos with (unique
44       * snapshots) when the last deployment to that repo didn't include that particular classifier. In other words,
45       * the metadata in the repository needs to properly keep track of all snapshots and not just the last deployed
46       * one. The same goes for snapshots that differ only by file extension.
47       */
48      public void testit()
49          throws Exception
50      {
51          File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4452" );
52  
53          Verifier verifier = newVerifier( new File( testDir, "producer" ).getAbsolutePath() );
54          verifier.setAutoclean( false );
55          verifier.deleteDirectory( "target" );
56          verifier.deleteArtifacts( "org.apache.maven.its.mng4452" );
57          verifier.setSystemProperty( "mng4452.type", "jar" );
58          verifier.setSystemProperty( "mng4452.classifier", "unix" );
59          verifier.setLogFileName( "log-1.txt" );
60          verifier.executeGoal( "validate" );
61          verifier.verifyErrorFreeLog();
62          verifier.setSystemProperty( "mng4452.type", "jar" );
63          verifier.setSystemProperty( "mng4452.classifier", "win" );
64          verifier.setLogFileName( "log-2.txt" );
65          verifier.executeGoal( "validate" );
66          verifier.verifyErrorFreeLog();
67          verifier.setSystemProperty( "mng4452.type", "war" );
68          verifier.setSystemProperty( "mng4452.classifier", "win" );
69          verifier.setLogFileName( "log-3.txt" );
70          verifier.executeGoal( "validate" );
71          verifier.verifyErrorFreeLog();
72          verifier.resetStreams();
73  
74          verifier = newVerifier( new File( testDir, "consumer" ).getAbsolutePath() );
75          verifier.setAutoclean( false );
76          verifier.deleteDirectory( "target" );
77          verifier.deleteArtifacts( "org.apache.maven.its.mng4452" );
78          verifier.getCliOptions().add( "-s" );
79          verifier.getCliOptions().add( "settings.xml" );
80          verifier.filterFile( "settings-template.xml", "settings.xml", "UTF-8", verifier.newDefaultFilterProperties() );
81          verifier.executeGoal( "validate" );
82          verifier.verifyErrorFreeLog();
83          verifier.resetStreams();
84  
85          List artifacts = verifier.loadLines( "target/artifacts.txt", "UTF-8" );
86          assertTrue( artifacts.toString(), 
87              artifacts.contains( "org.apache.maven.its.mng4452:producer:jar:unix:0.1-SNAPSHOT" ) );
88          assertTrue( artifacts.toString(), 
89              artifacts.contains( "org.apache.maven.its.mng4452:producer:jar:win:0.1-SNAPSHOT" ) );
90          assertTrue( artifacts.toString(), 
91              artifacts.contains( "org.apache.maven.its.mng4452:producer:war:win:0.1-SNAPSHOT" ) );
92      }
93  
94  }