Coverage Report - org.apache.maven.scm.tck.command.changelog.ChangeLogCommandTckTest
 
Classes in this File Line Coverage Branch Coverage Complexity
ChangeLogCommandTckTest
0 %
0/23
N/A
1
 
 1  
 package org.apache.maven.scm.tck.command.changelog;
 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 org.apache.maven.scm.ChangeSet;
 23  
 import org.apache.maven.scm.ScmBranch;
 24  
 import org.apache.maven.scm.ScmFileSet;
 25  
 import org.apache.maven.scm.ScmTckTestCase;
 26  
 import org.apache.maven.scm.ScmTestCase;
 27  
 import org.apache.maven.scm.ScmVersion;
 28  
 import org.apache.maven.scm.command.changelog.ChangeLogScmResult;
 29  
 import org.apache.maven.scm.command.checkin.CheckInScmResult;
 30  
 import org.apache.maven.scm.provider.ScmProvider;
 31  
 
 32  
 import java.util.Date;
 33  
 
 34  
 /**
 35  
  * Test Changlog command. <br>
 36  
  * 1. Get initial log <br>
 37  
  * 2. Add one revision <br>
 38  
  * 3. Get the two logs <br>
 39  
  * 4. Get the last log based on date <br>
 40  
  * 5. Test last log for date and comment <br>
 41  
  *
 42  
  * @author <a href="mailto:torbjorn@smorgrav.org">Torbj�rn Eikli Sm�rgrav</a>
 43  
  */
 44  0
 public abstract class ChangeLogCommandTckTest
 45  
     extends ScmTckTestCase
 46  
 {
 47  
     private static final String COMMIT_MSG = "Second changelog";
 48  
 
 49  
     public void testChangeLogCommand()
 50  
         throws Exception
 51  
     {
 52  0
         Thread.sleep( 1000 );
 53  0
         ScmProvider provider = getScmManager().getProviderByRepository( getScmRepository() );
 54  0
         ScmFileSet fileSet = new ScmFileSet( getWorkingCopy() );
 55  
 
 56  
         //We should have one log entry for the initial repository
 57  0
         ChangeLogScmResult result =
 58  
             provider.changeLog( getScmRepository(), fileSet, null, null, 0, (ScmBranch) null, null );
 59  0
         assertTrue( result.getProviderMessage(), result.isSuccess() );
 60  0
         assertEquals( 1, result.getChangeLog().getChangeSets().size() );
 61  
 
 62  
         //Make a timestamp that we know are after initial revision but before the second
 63  0
         Date timeBeforeSecond = new Date(); //Current time
 64  
 
 65  
         // pause a couple seconds... [SCM-244]
 66  0
         Thread.sleep( 2000 );
 67  
 
 68  
         //Make a change to the readme.txt and commit the change
 69  0
         ScmTestCase.makeFile( getWorkingCopy(), "/readme.txt", "changed readme.txt" );
 70  0
         CheckInScmResult checkInResult = provider.checkIn( getScmRepository(), fileSet, COMMIT_MSG );
 71  0
         assertTrue( "Unable to checkin changes to the repository", checkInResult.isSuccess() );
 72  
 
 73  0
         result = provider.changeLog( getScmRepository(), fileSet, (ScmVersion) null, null );
 74  0
         assertTrue( result.getProviderMessage(), result.isSuccess() );
 75  0
         assertEquals( 2, result.getChangeLog().getChangeSets().size() );
 76  
 
 77  
         //Now only retrieve the changelog after timeBeforeSecondChangeLog
 78  0
         Date currentTime = new Date();
 79  0
         result = provider
 80  
             .changeLog( getScmRepository(), fileSet, timeBeforeSecond, currentTime, 0, new ScmBranch( "" ) );
 81  
 
 82  
         //Thorough assert of the last result
 83  0
         assertTrue( result.getProviderMessage(), result.isSuccess() );
 84  0
         assertEquals( 1, result.getChangeLog().getChangeSets().size() );
 85  0
         ChangeSet changeset = result.getChangeLog().getChangeSets().get( 0 );
 86  0
         assertTrue( changeset.getDate().after( timeBeforeSecond ) );
 87  0
         assertEquals( COMMIT_MSG, changeset.getComment() );
 88  0
     }
 89  
 }