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.StringUtils;
39  
40  /**
41   * This test tests the update command.
42   * <p/>
43   * It works like this:
44   * <p/>
45   * <ol>
46   * <li>Check out the files to directory getWorkingCopy().
47   * <li>Check out the files to directory getUpdatingCopy().
48   * <li>Change the files in getWorkingCopy().
49   * <li>Commit the files in getWorkingCopy(). Note that the provider <b>must</b> not
50   * use the check in command as it can be guaranteed to work as it's not yet tested.
51   * <li>Use the update command in getUpdatingCopy() to assert that the files
52   * that was supposed to be updated actually was updated.
53   * </ol>
54   *
55   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
56   *
57   */
58  public abstract class UpdateCommandTckTest
59      extends ScmTckTestCase
60  {
61  
62      private void commit( File workingDirectory, ScmRepository repository )
63          throws Exception
64      {
65          CheckInScmResult result = getScmManager().checkIn( repository, new ScmFileSet( workingDirectory ), "No msg" );
66  
67          assertTrue( "Check result was successful, output: " + result.getCommandOutput(), result.isSuccess() );
68  
69          List<ScmFile> committedFiles = result.getCheckedInFiles();
70  
71          assertEquals(
72              "Expected 3 files in the committed files list:\n  " + StringUtils.join( committedFiles.iterator(), "\n  " ),
73              3, committedFiles.size() );
74      }
75  
76      public void testUpdateCommand()
77          throws Exception
78      {
79  
80          deleteDirectory( getUpdatingCopy() );
81  
82          assertFalse( getUpdatingCopy().exists() );
83  
84          //deleteDirectory( getWorkingCopy() );
85  
86          //assertFalse( getUpdatingCopy().exists() );
87  
88          ScmRepository repository = makeScmRepository( getScmUrl() );
89  
90          checkOut( getUpdatingCopy(), repository );
91  
92          // ----------------------------------------------------------------------
93          // Change the files
94          // ----------------------------------------------------------------------
95  
96          /*
97           * readme.txt is changed (changed file in the root directory)
98           * project.xml is added (added file in the root directory)
99           * src/test/resources is untouched (a empty directory is left untouched)
100          * src/test/java is untouched (a non empty directory is left untouched)
101          * src/test/java/org (a empty directory is added)
102          * src/main/java/org/Foo.java (a non empty directory is added)
103          */
104 
105         // /readme.txt
106         this.edit( getWorkingCopy(), "readme.txt", null, getScmRepository() );
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" ), getScmRepository() );
113 
114         // /src/test/java/org
115         ScmTestCase.makeDirectory( getWorkingCopy(), "/src/test/java/org" );
116 
117         addToWorkingTree( getWorkingCopy(), new File( "src/test/java/org" ), getScmRepository() );
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" ), getScmRepository() );
123 
124         // src/main/java/org/Foo.java
125         addToWorkingTree( getWorkingCopy(), new File( "src/main/java/org/Foo.java" ), getScmRepository() );
126 
127         ScmManager scmManager = getScmManager();
128 
129         Date lastUpdate = new Date( System.currentTimeMillis() - 1000000 );
130 
131         commit( getWorkingCopy(), getScmRepository() );
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 }