View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.project.inheritance.t12scm;
20  
21  import java.io.File;
22  
23  import org.apache.maven.project.MavenProject;
24  import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
25  
26  /**
27   * Verifies SCM inheritance uses modules statement from parent.
28   *
29   * @author jdcasey
30   */
31  public class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
32      // ----------------------------------------------------------------------
33      //
34      // p1 inherits from p0
35      // p0 inherits from super model
36      //
37      // or we can show it graphically as:
38      //
39      // p1 ---> p0 --> super model
40      //
41      // ----------------------------------------------------------------------
42  
43      public void testScmInfoCalculatedCorrectlyOnParentAndChildRead() throws Exception {
44          File localRepo = getLocalRepositoryPath();
45  
46          File pom0 = new File(localRepo, "p0/pom.xml");
47          File pom0Basedir = pom0.getParentFile();
48          File pom1 = new File(pom0Basedir, "modules/p1/pom.xml");
49  
50          // load the child project, which inherits from p0...
51          MavenProject project0 = getProject(pom0);
52          MavenProject project1 = getProject(pom1);
53  
54          System.out.println("\n\n");
55          System.out.println("Parent SCM URL is: " + project0.getScm().getUrl());
56          System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
57          System.out.println();
58          System.out.println("Parent SCM connection is: " + project0.getScm().getConnection());
59          System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
60          System.out.println();
61          System.out.println(
62                  "Parent SCM developer connection is: " + project0.getScm().getDeveloperConnection());
63          System.out.println(
64                  "Child SCM developer connection is: " + project1.getScm().getDeveloperConnection());
65  
66          assertEquals(project1.getScm().getUrl(), project0.getScm().getUrl() + "/modules/p1");
67          assertEquals(project1.getScm().getConnection(), project0.getScm().getConnection() + "/modules/p1");
68          assertEquals(
69                  project1.getScm().getDeveloperConnection(), project0.getScm().getDeveloperConnection() + "/modules/p1");
70      }
71  
72      public void testScmInfoCalculatedCorrectlyOnChildOnlyRead() throws Exception {
73          File localRepo = getLocalRepositoryPath();
74  
75          File pom1 = new File(localRepo, "p0/modules/p1/pom.xml");
76  
77          // load the child project, which inherits from p0...
78          MavenProject project1 = getProject(pom1);
79  
80          System.out.println("\n\n");
81          System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
82          System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
83          System.out.println(
84                  "Child SCM developer connection is: " + project1.getScm().getDeveloperConnection());
85  
86          assertEquals("http://host/viewer?path=/p0/modules/p1", project1.getScm().getUrl());
87          assertEquals("scm:svn:http://host/p0/modules/p1", project1.getScm().getConnection());
88          assertEquals("scm:svn:https://host/p0/modules/p1", project1.getScm().getDeveloperConnection());
89      }
90  
91      //    public void testScmInfoCalculatedCorrectlyOnChildReadFromLocalRepository()
92      //        throws Exception
93      //    {
94      //        File localRepo = getLocalRepositoryPath();
95      //
96      //        ArtifactFactory factory = (ArtifactFactory) lookup( ArtifactFactory.class );
97      //        Artifact artifact = factory.createProjectArtifact( "maven", "p1", "1.0" );
98      //
99      //        ArtifactRepositoryFactory repoFactory = (ArtifactRepositoryFactory) lookup(
100     // ArtifactRepositoryFactory.class );
101     //        ArtifactRepository localArtifactRepo = repoFactory.createLocalRepository( localRepo );
102     //
103     //        MavenProject project1 = getProjectBuilder().buildFromRepository( artifact, Collections.EMPTY_LIST,
104     // localArtifactRepo );
105     //
106     //        System.out.println( "\n\n" );
107     //        System.out.println( "Child SCM URL is: " + project1.getScm().getUrl() );
108     //        System.out.println( "Child SCM connection is: " + project1.getScm().getConnection() );
109     //        System.out.println( "Child SCM developer connection is: "
110     //                            + project1.getScm().getDeveloperConnection() );
111     //
112     //        assertEquals( project1.getScm().getUrl(), "http://host/viewer?path=/p0/modules/p1" );
113     //        assertEquals( project1.getScm().getConnection(), "scm:svn:http://host/p0/modules/p1" );
114     //        assertEquals( project1.getScm().getDeveloperConnection(),
115     //                      "scm:svn:https://host/p0/modules/p1" );
116     //    }
117 
118 }