View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.scm.tck.command.changelog;
20  
21  import java.util.Collections;
22  import java.util.Date;
23  import java.util.List;
24  
25  import org.apache.maven.scm.ChangeSet;
26  import org.apache.maven.scm.CommandParameter;
27  import org.apache.maven.scm.CommandParameters;
28  import org.apache.maven.scm.ScmBranch;
29  import org.apache.maven.scm.ScmFileSet;
30  import org.apache.maven.scm.ScmTagParameters;
31  import org.apache.maven.scm.ScmTckTestCase;
32  import org.apache.maven.scm.ScmTestCase;
33  import org.apache.maven.scm.command.changelog.ChangeLogScmRequest;
34  import org.apache.maven.scm.command.changelog.ChangeLogScmResult;
35  import org.apache.maven.scm.command.checkin.CheckInScmResult;
36  import org.apache.maven.scm.command.tag.TagScmResult;
37  import org.apache.maven.scm.provider.ScmProvider;
38  import org.junit.Test;
39  
40  import static org.junit.Assert.assertEquals;
41  import static org.junit.Assert.assertTrue;
42  
43  /**
44   * Test Changlog command. <br>
45   * 1. Get initial log <br>
46   * 2. Add one revision <br>
47   * 3. Get the two logs <br>
48   * 4. Get the last log based on date <br>
49   * 5. Test last log for date and comment <br>
50   *
51   * @author <a href="mailto:torbjorn@smorgrav.org">Torbj�rn Eikli Sm�rgrav</a>
52   */
53  public abstract class ChangeLogCommandTckTest extends ScmTckTestCase {
54      private static final String COMMIT_MSG = "Second changelog";
55      private static final String COMMIT_TAG = "v3.14";
56  
57      /**
58       * In some SCMs (Hg) adding a tag creates an extra commit which offsets the expectations.
59       * @return If an extra commit will be present for a tag.
60       */
61      public boolean isTagAnExtraCommit() {
62          return false;
63      }
64  
65      @Test
66      public void testChangeLogCommand() throws Exception {
67          Thread.sleep(1000);
68          ScmProvider provider = getScmManager().getProviderByRepository(getScmRepository());
69          ScmFileSet fileSet = new ScmFileSet(getWorkingCopy());
70  
71          ChangeLogScmResult firstResult =
72                  provider.changeLog(getScmRepository(), fileSet, null, null, 0, (ScmBranch) null, null);
73          assertTrue(
74                  firstResult.getProviderMessage() + ": " + firstResult.getCommandLine() + "\n"
75                          + firstResult.getCommandOutput(),
76                  firstResult.isSuccess());
77  
78          // for svn and git the repo get recreated for each test and therefore initial changelog size is 1
79          int firstLogSize = firstResult.getChangeLog().getChangeSets().size();
80          assertTrue("Unexpected initial log size", firstLogSize >= 1);
81  
82          // Make a timestamp that we know are after initial revision but before the second
83          Date timeBeforeSecond = new Date(); // Current time
84  
85          // pause a couple seconds... [SCM-244]
86          Thread.sleep(2000);
87  
88          // Make a change to the readme.txt and commit the change
89          this.edit(getWorkingCopy(), "readme.txt", null, getScmRepository());
90          ScmTestCase.makeFile(getWorkingCopy(), "/readme.txt", "changed readme.txt");
91          CommandParameters commandParameters = new CommandParameters();
92          commandParameters.setString(CommandParameter.MESSAGE, COMMIT_MSG);
93          commandParameters.setString(CommandParameter.SCM_COMMIT_SIGN, "false");
94          CheckInScmResult checkInResult = provider.checkIn(getScmRepository(), fileSet, commandParameters);
95          assertTrue("Unable to checkin changes to the repository", checkInResult.isSuccess());
96  
97          ScmTagParameters scmTagParameters = new ScmTagParameters();
98          TagScmResult tagResult = provider.tag(getScmRepository(), fileSet, COMMIT_TAG, scmTagParameters);
99          assertTrue("Unable to tag the changes in the repository", tagResult.isSuccess());
100 
101         ChangeLogScmRequest changeLogScmRequest = new ChangeLogScmRequest(getScmRepository(), fileSet);
102         ChangeLogScmResult secondResult = provider.changeLog(changeLogScmRequest);
103         assertTrue(secondResult.getProviderMessage(), secondResult.isSuccess());
104 
105         List<ChangeSet> changeSets = secondResult.getChangeLog().getChangeSets();
106 
107         int expectedChangeSets = firstLogSize + 1;
108         boolean lastCommitIsCausedByTagging = false;
109         int lastCodeCommitIndex = 0;
110 
111         if (isTagAnExtraCommit()) {
112             // This is for example Mercurial which creates an extra commit after tagging.
113             lastCommitIsCausedByTagging = true;
114             expectedChangeSets += 1;
115             lastCodeCommitIndex = 1;
116         }
117 
118         assertEquals(expectedChangeSets, changeSets.size());
119 
120         // Check if the tag has been retrieved again
121         ChangeSet changeSetWithTag = changeSets.get(lastCodeCommitIndex);
122         assertEquals(Collections.singletonList(COMMIT_TAG), changeSetWithTag.getTags());
123 
124         // Now only retrieve the changelog after timeBeforeSecondChangeLog
125         Date currentTime = new Date();
126         changeLogScmRequest = new ChangeLogScmRequest(getScmRepository(), fileSet);
127         changeLogScmRequest.setStartDate(timeBeforeSecond);
128         changeLogScmRequest.setEndDate(currentTime);
129         changeLogScmRequest.setScmBranch(new ScmBranch(""));
130         ChangeLogScmResult thirdResult = provider.changeLog(changeLogScmRequest);
131 
132         // Thorough assert of the last result
133         assertTrue(thirdResult.getProviderMessage(), thirdResult.isSuccess());
134 
135         List<ChangeSet> thirdChangeSets = thirdResult.getChangeLog().getChangeSets();
136         assertEquals(lastCommitIsCausedByTagging ? 2 : 1, thirdChangeSets.size());
137         ChangeSet changeset = thirdChangeSets.get(lastCodeCommitIndex);
138         assertTrue(changeset.getDate().after(timeBeforeSecond));
139         assertTrue(changeset.getComment().startsWith(COMMIT_MSG));
140     }
141 }