View Javadoc

1   package org.apache.maven.scm.tck.command.update;
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  import java.util.Date;
24  import java.util.Iterator;
25  import java.util.List;
26  import java.util.TreeSet;
27  
28  import org.apache.maven.scm.ChangeSet;
29  import org.apache.maven.scm.ScmFile;
30  import org.apache.maven.scm.ScmFileSet;
31  import org.apache.maven.scm.ScmFileStatus;
32  import org.apache.maven.scm.ScmTckTestCase;
33  import org.apache.maven.scm.ScmTestCase;
34  import org.apache.maven.scm.command.checkin.CheckInScmResult;
35  import org.apache.maven.scm.command.update.UpdateScmResult;
36  import org.apache.maven.scm.manager.ScmManager;
37  import org.apache.maven.scm.repository.ScmRepository;
38  import org.codehaus.plexus.util.FileUtils;
39  import org.codehaus.plexus.util.StringUtils;
40  
41  /**
42   * This test tests the update command.
43   * <p/>
44   * It works like this:
45   * <p/>
46   * <ol>
47   * <li>Check out the files to directory getWorkingCopy().
48   * <li>Check out the files to directory getUpdatingCopy().
49   * <li>Change the files in getWorkingCopy().
50   * <li>Commit the files in getWorkingCopy(). Note that the provider <b>must</b> not
51   * use the check in command as it can be guaranteed to work as it's not yet tested.
52   * <li>Use the update command in getUpdatingCopy() to assert that the files
53   * that was supposed to be updated actually was updated.
54   * </ol>
55   *
56   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
57   *
58   */
59  public abstract class UpdateCommandTckTest
60      extends ScmTckTestCase
61  {
62  
63      private void commit( File workingDirectory, ScmRepository repository )
64          throws Exception
65      {
66          CheckInScmResult result = getScmManager().checkIn( repository, new ScmFileSet( workingDirectory ), "No msg" );
67  
68          assertTrue( "Check result was successful, output: " + result.getCommandOutput(), result.isSuccess() );
69  
70          List<ScmFile> committedFiles = result.getCheckedInFiles();
71  
72          assertEquals(
73              "Expected 3 files in the committed files list:\n  " + StringUtils.join( committedFiles.iterator(), "\n  " ),
74              3, committedFiles.size() );
75      }
76  
77      public void testUpdateCommand()
78          throws Exception
79      {
80          
81          FileUtils.deleteDirectory( getUpdatingCopy() );
82          
83          assertFalse( getUpdatingCopy().exists() );    
84          
85          //FileUtils.deleteDirectory( getWorkingCopy() );
86          
87          //assertFalse( getUpdatingCopy().exists() );
88          
89          ScmRepository repository = makeScmRepository( getScmUrl() );
90  
91          checkOut( getUpdatingCopy(), repository );
92  
93          // ----------------------------------------------------------------------
94          // Change the files
95          // ----------------------------------------------------------------------
96  
97          /*
98           * readme.txt is changed (changed file in the root directory)
99           * project.xml is added (added file in the root directory)
100          * src/test/resources is untouched (a empty directory is left untouched)
101          * src/test/java is untouched (a non empty directory is left untouched)
102          * src/test/java/org (a empty directory is added)
103          * src/main/java/org/Foo.java (a non empty directory is added)
104          */
105 
106         // /readme.txt
107         ScmTestCase.makeFile( getWorkingCopy(), "/readme.txt", "changed readme.txt" );
108 
109         // /project.xml
110         ScmTestCase.makeFile( getWorkingCopy(), "/project.xml", "changed project.xml" );
111 
112         addToWorkingTree( getWorkingCopy(), new File( "project.xml" ), repository );
113 
114         // /src/test/java/org
115         ScmTestCase.makeDirectory( getWorkingCopy(), "/src/test/java/org" );
116 
117         addToWorkingTree( getWorkingCopy(), new File( "src/test/java/org" ), repository );
118 
119         // /src/main/java/org/Foo.java
120         ScmTestCase.makeFile( getWorkingCopy(), "/src/main/java/org/Foo.java" );
121 
122         addToWorkingTree( getWorkingCopy(), new File( "src/main/java/org" ), repository );
123 
124         // src/main/java/org/Foo.java
125         addToWorkingTree( getWorkingCopy(), new File( "src/main/java/org/Foo.java" ), repository );
126 
127         ScmManager scmManager = getScmManager();
128 
129         Date lastUpdate = new Date( System.currentTimeMillis() - 1000000 );
130 
131         commit( getWorkingCopy(), repository );
132 
133         Thread.sleep( 5000 );
134         
135         // ----------------------------------------------------------------------
136         // Update the project
137         // ----------------------------------------------------------------------
138        
139         UpdateScmResult result = scmManager.update( repository, new ScmFileSet( getUpdatingCopy() ), lastUpdate );
140 
141         assertNotNull( "The command returned a null result.", result );
142 
143         assertResultIsSuccess( result );
144 
145         List<ScmFile> updatedFiles = result.getUpdatedFiles();
146 
147         List<ChangeSet> changedSets = result.getChanges();
148 
149         assertEquals( "Expected 3 files in the updated files list " + updatedFiles, 3, updatedFiles.size() );
150 
151         assertNotNull( "The changed files list is null", changedSets );
152 
153         assertFalse( "The changed files list is empty ", changedSets.isEmpty() );
154 
155         for ( ChangeSet changeSet : changedSets )
156         {
157             System.out.println( changeSet.toXML() );
158         }
159 
160         // ----------------------------------------------------------------------
161         // Assert the files in the updated files list
162         // ----------------------------------------------------------------------
163 
164         Iterator<ScmFile> files = new TreeSet<ScmFile>( updatedFiles ).iterator();
165 
166         //Foo.java
167         ScmFile file = files.next();
168         assertPath( "/src/main/java/org/Foo.java", file.getPath() );
169         //TODO : Consolidate file status so that we can remove "|| ADDED" term
170         assertTrue( file.getStatus().isUpdate() || file.getStatus() == ScmFileStatus.ADDED );
171 
172         //readme.txt
173         file = files.next();
174         assertPath( "/readme.txt", file.getPath() );
175         assertTrue( file.getStatus().isUpdate() );
176 
177         //project.xml
178         file = files.next();
179         assertPath( "/project.xml", file.getPath() );
180         //TODO : Consolidate file status so that we can remove "|| ADDED" term
181         assertTrue( file.getStatus().isUpdate() || file.getStatus() == ScmFileStatus.ADDED );
182     }
183     
184 }