View Javadoc
1   package org.apache.maven.scm.provider.cvslib.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.command.changelog.ChangeLogScmResult;
23  import org.apache.maven.scm.command.changelog.ChangeLogSet;
24  import org.apache.maven.scm.manager.ScmManager;
25  import org.apache.maven.scm.provider.cvslib.AbstractCvsScmTest;
26  import org.apache.maven.scm.provider.cvslib.CvsScmTestUtils;
27  
28  import java.util.Date;
29  
30  /**
31   * @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse </a>
32   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
33   *
34   */
35  public class CvsChangeLogCommandTest
36      extends AbstractCvsScmTest
37  {
38      /** {@inheritDoc} */
39      protected String getModule()
40      {
41          return "test-repo/changelog";
42      }
43  
44      public void testGetCommandWithStartAndEndDate()
45          throws Exception
46      {
47          Date startDate = getDate( 2003, 1, 1 );
48  
49          Date endDate = getDate( 2004, 1, 1 );
50  
51          testChangeLog( startDate, endDate, 32, null );
52      }
53  
54      public void testGetCommandWithoutEndDate()
55          throws Exception
56      {
57          Date startDate = getDate( 2003, 1, 1 );
58  
59          Date endDate = null;
60  
61          testChangeLog( startDate, endDate, 51, null );
62      }
63  
64      public void testGetCommandWithBranchOrTag()
65          throws Exception
66      {
67          Date startDate = null;
68  
69          Date endDate = null;
70  
71          testChangeLog( startDate, endDate, 22, "1.107.4" );
72      }
73  
74      @SuppressWarnings( "deprecation" )
75      private void testChangeLog( Date startDate, Date endDate, int changeLogSize, String branch )
76          throws Exception
77      {
78          if ( !isSystemCmd( CvsScmTestUtils.CVS_COMMAND_LINE ) )
79          {
80              System.err.println( "'" + CvsScmTestUtils.CVS_COMMAND_LINE + "' is not a system command. Ignored "
81                  + getName() + "." );
82              return;
83          }
84  
85          ScmManager scmManager = getScmManager();
86  
87          CvsScmTestUtils.executeCVS( getWorkingDirectory(),
88                                      "-f -d " + getTestFile( "src/test/repository/" ) + " co " + getModule() );
89  
90          ChangeLogScmResult changeLogResult = scmManager.getProviderByRepository( getScmRepository() ).changeLog(
91              getScmRepository(), getScmFileSet(), startDate, endDate, 0, branch );
92  
93          if ( !changeLogResult.isSuccess() )
94          {
95              fail( changeLogResult.getProviderMessage() + "\n" + changeLogResult.getCommandOutput() );
96          }
97  
98          ChangeLogSet changeLogSet = changeLogResult.getChangeLog();
99  
100         assertNotNull( changeLogSet );
101 
102         assertEquals( changeLogSize, changeLogSet.getChangeSets().size() );
103     }
104 }