001package org.apache.maven.scm.tck.command.update; 002 003/* 004 * Licensed to the Apache Software Foundation (ASF) under one 005 * or more contributor license agreements. See the NOTICE file 006 * distributed with this work for additional information 007 * regarding copyright ownership. The ASF licenses this file 008 * to you under the Apache License, Version 2.0 (the 009 * "License"); you may not use this file except in compliance 010 * with the License. You may obtain a copy of the License at 011 * 012 * http://www.apache.org/licenses/LICENSE-2.0 013 * 014 * Unless required by applicable law or agreed to in writing, 015 * software distributed under the License is distributed on an 016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 017 * KIND, either express or implied. See the License for the 018 * specific language governing permissions and limitations 019 * under the License. 020 */ 021 022import java.io.File; 023import java.util.Date; 024import java.util.Iterator; 025import java.util.List; 026import java.util.TreeSet; 027 028import org.apache.maven.scm.ChangeSet; 029import org.apache.maven.scm.ScmFile; 030import org.apache.maven.scm.ScmFileSet; 031import org.apache.maven.scm.ScmFileStatus; 032import org.apache.maven.scm.ScmTckTestCase; 033import org.apache.maven.scm.ScmTestCase; 034import org.apache.maven.scm.command.checkin.CheckInScmResult; 035import org.apache.maven.scm.command.update.UpdateScmResult; 036import org.apache.maven.scm.manager.ScmManager; 037import org.apache.maven.scm.repository.ScmRepository; 038import org.codehaus.plexus.util.StringUtils; 039 040/** 041 * This test tests the update command. 042 * <p/> 043 * It works like this: 044 * <p/> 045 * <ol> 046 * <li>Check out the files to directory getWorkingCopy(). 047 * <li>Check out the files to directory getUpdatingCopy(). 048 * <li>Change the files in getWorkingCopy(). 049 * <li>Commit the files in getWorkingCopy(). Note that the provider <b>must</b> not 050 * use the check in command as it can be guaranteed to work as it's not yet tested. 051 * <li>Use the update command in getUpdatingCopy() to assert that the files 052 * that was supposed to be updated actually was updated. 053 * </ol> 054 * 055 * @author <a href="mailto:trygvis@inamo.no">Trygve Laugstøl</a> 056 * 057 */ 058public abstract class UpdateCommandTckTest 059 extends ScmTckTestCase 060{ 061 062 private void commit( File workingDirectory, ScmRepository repository ) 063 throws Exception 064 { 065 CheckInScmResult result = getScmManager().checkIn( repository, new ScmFileSet( workingDirectory ), "No msg" ); 066 067 assertTrue( "Check result was successful, output: " + result.getCommandOutput(), result.isSuccess() ); 068 069 List<ScmFile> committedFiles = result.getCheckedInFiles(); 070 071 assertEquals( 072 "Expected 3 files in the committed files list:\n " + StringUtils.join( committedFiles.iterator(), "\n " ), 073 3, committedFiles.size() ); 074 } 075 076 public void testUpdateCommand() 077 throws Exception 078 { 079 080 deleteDirectory( getUpdatingCopy() ); 081 082 assertFalse( getUpdatingCopy().exists() ); 083 084 //deleteDirectory( getWorkingCopy() ); 085 086 //assertFalse( getUpdatingCopy().exists() ); 087 088 ScmRepository repository = makeScmRepository( getScmUrl() ); 089 090 checkOut( getUpdatingCopy(), repository ); 091 092 // ---------------------------------------------------------------------- 093 // Change the files 094 // ---------------------------------------------------------------------- 095 096 /* 097 * readme.txt is changed (changed file in the root directory) 098 * project.xml is added (added file in the root directory) 099 * 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}