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.util.ResourceExtractor;
23  
24  import java.io.File;
25  import java.util.List;
26  import java.util.Properties;
27  
28  /**
29   *
30   * @author Benjamin Bentmann
31   *
32   */
33  public class MavenIT0142DirectDependencyScopesTest
34      extends AbstractMavenIntegrationTestCase
35  {
36  
37      /*
38       * NOTE: Class path ordering is another issue (MNG-1412), so we merely check set containment here.
39       */
40  
41      public MavenIT0142DirectDependencyScopesTest()
42      {
43          super( ALL_MAVEN_VERSIONS );
44      }
45  
46      /**
47       * Test that the different scopes of direct dependencies end up on the right class paths.
48       *
49       * @throws Exception in case of failure
50       */
51      public void testit0142()
52          throws Exception
53      {
54          File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0142" );
55  
56          Verifier verifier = newVerifier( testDir.getAbsolutePath() );
57          verifier.setAutoclean( false );
58          verifier.deleteDirectory( "target" );
59          verifier.deleteArtifacts( "org.apache.maven.its.it0142" );
60          Properties filterProps = verifier.newDefaultFilterProperties();
61          verifier.filterFile( "pom-template.xml", "pom.xml", "UTF-8", filterProps );
62          verifier.filterFile( "settings-template.xml", "settings.xml", "UTF-8", filterProps );
63          verifier.addCliOption( "--settings" );
64          verifier.addCliOption( "settings.xml" );
65          verifier.executeGoal( "validate" );
66          verifier.verifyErrorFreeLog();
67          verifier.resetStreams();
68  
69          List<String> compileArtifacts = verifier.loadLines( "target/compile-artifacts.txt", "UTF-8" );
70          assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:system:jar:0.1" ) );
71          assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:provided:jar:0.1" ) );
72          assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) );
73          assertEquals( 3, compileArtifacts.size() );
74  
75          List<String> compileClassPath = verifier.loadLines( "target/compile-cp.txt", "UTF-8" );
76          assertTrue( compileClassPath.toString(), compileClassPath.contains( "classes" ) );
77          assertTrue( compileClassPath.toString(), compileClassPath.contains( "system-0.1.jar" ) );
78          assertTrue( compileClassPath.toString(), compileClassPath.contains( "provided-0.1.jar" ) );
79          assertTrue( compileClassPath.toString(), compileClassPath.contains( "compile-0.1.jar" ) );
80          assertEquals( 4, compileClassPath.size() );
81  
82          List<String> runtimeArtifacts = verifier.loadLines( "target/runtime-artifacts.txt", "UTF-8" );
83          assertTrue( runtimeArtifacts.toString(), runtimeArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) );
84          assertTrue( runtimeArtifacts.toString(), runtimeArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:0.1" ) );
85          assertTrue( runtimeArtifacts.toString(), runtimeArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:retro:0.1" ) );
86          assertEquals( 3, runtimeArtifacts.size() );
87  
88          List<String> runtimeClassPath = verifier.loadLines( "target/runtime-cp.txt", "UTF-8" );
89          assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "classes" ) );
90          assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "compile-0.1.jar" ) );
91          assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "runtime-0.1.jar" ) );
92          assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "runtime-0.1-retro.jar" ) );
93          assertEquals( 4, runtimeClassPath.size() );
94  
95          List<String> testArtifacts = verifier.loadLines( "target/test-artifacts.txt", "UTF-8" );
96          assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:system:jar:0.1" ) );
97          assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:provided:jar:0.1" ) );
98          assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) );
99          assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:0.1" ) );
100         assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:retro:0.1" ) );
101         assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:test:jar:0.1" ) );
102         assertEquals( 6, testArtifacts.size() );
103 
104         List<String> testClassPath = verifier.loadLines( "target/test-cp.txt", "UTF-8" );
105         assertTrue( testClassPath.toString(), testClassPath.contains( "classes" ) );
106         assertTrue( testClassPath.toString(), testClassPath.contains( "test-classes" ) );
107         assertTrue( testClassPath.toString(), testClassPath.contains( "system-0.1.jar" ) );
108         assertTrue( testClassPath.toString(), testClassPath.contains( "provided-0.1.jar" ) );
109         assertTrue( testClassPath.toString(), testClassPath.contains( "compile-0.1.jar" ) );
110         assertTrue( testClassPath.toString(), testClassPath.contains( "runtime-0.1.jar" ) );
111         assertTrue( testClassPath.toString(), testClassPath.contains( "runtime-0.1-retro.jar" ) );
112         assertTrue( testClassPath.toString(), testClassPath.contains( "test-0.1.jar" ) );
113         assertEquals( 8, testClassPath.size() );
114     }
115 
116 }