View Javadoc
1   package org.apache.maven.project.inheritance.t12scm;
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 java.io.File;
23  
24  import org.apache.maven.project.MavenProject;
25  import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
26  
27  /**
28   * Verifies SCM inheritance uses modules statement from parent.
29   *
30   * @author jdcasey
31   */
32  public class ProjectInheritanceTest
33      extends AbstractProjectInheritanceTestCase
34  {
35      // ----------------------------------------------------------------------
36      //
37      // p1 inherits from p0
38      // p0 inherits from super model
39      //
40      // or we can show it graphically as:
41      //
42      // p1 ---> p0 --> super model
43      //
44      // ----------------------------------------------------------------------
45  
46      public void testScmInfoCalculatedCorrectlyOnParentAndChildRead()
47          throws Exception
48      {
49          File localRepo = getLocalRepositoryPath();
50  
51          File pom0 = new File( localRepo, "p0/pom.xml" );
52          File pom0Basedir = pom0.getParentFile();
53          File pom1 = new File( pom0Basedir, "modules/p1/pom.xml" );
54  
55          // load the child project, which inherits from p0...
56          MavenProject project0 = getProject( pom0 );
57          MavenProject project1 = getProject( pom1 );
58  
59          System.out.println( "\n\n" );
60          System.out.println( "Parent SCM URL is: " + project0.getScm().getUrl() );
61          System.out.println( "Child SCM URL is: " + project1.getScm().getUrl() );
62          System.out.println();
63          System.out.println( "Parent SCM connection is: " + project0.getScm().getConnection() );
64          System.out.println( "Child SCM connection is: " + project1.getScm().getConnection() );
65          System.out.println();
66          System.out.println( "Parent SCM developer connection is: "
67                              + project0.getScm().getDeveloperConnection() );
68          System.out.println( "Child SCM developer connection is: "
69                              + project1.getScm().getDeveloperConnection() );
70  
71          assertEquals( project1.getScm().getUrl(), project0.getScm().getUrl() + "/modules/p1" );
72          assertEquals( project1.getScm().getConnection(), project0.getScm().getConnection()
73                                                           + "/modules/p1" );
74          assertEquals( project1.getScm().getDeveloperConnection(), project0.getScm()
75                                                                            .getDeveloperConnection()
76                                                                    + "/modules/p1" );
77      }
78  
79      public void testScmInfoCalculatedCorrectlyOnChildOnlyRead()
80          throws Exception
81      {
82          File localRepo = getLocalRepositoryPath();
83  
84          File pom1 = new File( localRepo, "p0/modules/p1/pom.xml" );
85  
86          // load the child project, which inherits from p0...
87          MavenProject project1 = getProject( pom1 );
88  
89          System.out.println( "\n\n" );
90          System.out.println( "Child SCM URL is: " + project1.getScm().getUrl() );
91          System.out.println( "Child SCM connection is: " + project1.getScm().getConnection() );
92          System.out.println( "Child SCM developer connection is: "
93                              + project1.getScm().getDeveloperConnection() );
94  
95          assertEquals( "http://host/viewer?path=/p0/modules/p1", project1.getScm().getUrl() );
96          assertEquals( "scm:svn:http://host/p0/modules/p1", project1.getScm().getConnection() );
97          assertEquals( "scm:svn:https://host/p0/modules/p1", project1.getScm().getDeveloperConnection() );
98      }
99  
100 //    public void testScmInfoCalculatedCorrectlyOnChildReadFromLocalRepository()
101 //        throws Exception
102 //    {
103 //        File localRepo = getLocalRepositoryPath();
104 //
105 //        ArtifactFactory factory = (ArtifactFactory) lookup( ArtifactFactory.class );
106 //        Artifact artifact = factory.createProjectArtifact( "maven", "p1", "1.0" );
107 //
108 //        ArtifactRepositoryFactory repoFactory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.class );
109 //        ArtifactRepository localArtifactRepo = repoFactory.createLocalRepository( localRepo );
110 //
111 //        MavenProject project1 = getProjectBuilder().buildFromRepository( artifact, Collections.EMPTY_LIST, localArtifactRepo );
112 //
113 //        System.out.println( "\n\n" );
114 //        System.out.println( "Child SCM URL is: " + project1.getScm().getUrl() );
115 //        System.out.println( "Child SCM connection is: " + project1.getScm().getConnection() );
116 //        System.out.println( "Child SCM developer connection is: "
117 //                            + project1.getScm().getDeveloperConnection() );
118 //
119 //        assertEquals( project1.getScm().getUrl(), "http://host/viewer?path=/p0/modules/p1" );
120 //        assertEquals( project1.getScm().getConnection(), "scm:svn:http://host/p0/modules/p1" );
121 //        assertEquals( project1.getScm().getDeveloperConnection(),
122 //                      "scm:svn:https://host/p0/modules/p1" );
123 //    }
124 
125 }