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.diff;
20  
21  import java.io.File;
22  import java.util.Iterator;
23  import java.util.List;
24  import java.util.Map;
25  import java.util.TreeSet;
26  
27  import org.apache.maven.scm.ScmFile;
28  import org.apache.maven.scm.ScmFileSet;
29  import org.apache.maven.scm.ScmTckTestCase;
30  import org.apache.maven.scm.ScmTestCase;
31  import org.apache.maven.scm.ScmVersion;
32  import org.apache.maven.scm.command.diff.DiffScmResult;
33  import org.apache.maven.scm.provider.ScmProvider;
34  import org.apache.maven.scm.repository.ScmRepository;
35  import org.junit.Test;
36  
37  import static org.junit.Assert.assertEquals;
38  import static org.junit.Assert.assertNotNull;
39  import static org.junit.Assert.assertTrue;
40  
41  /**
42   * This test tests the diff command.
43   *
44   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
45   */
46  public abstract class DiffCommandTckTest extends ScmTckTestCase {
47  
48      @Test
49      public void testDiffCommand() throws Exception {
50          ScmRepository repository = getScmRepository();
51  
52          // ----------------------------------------------------------------------
53          // Change the files
54          // ----------------------------------------------------------------------
55  
56          //
57          // readme.txt is changed (changed file in the root directory)
58          // project.xml is added (added file in the root directory)
59          // src/test/resources is untouched (a empty directory is left untouched)
60          // src/test/java is untouched (a non empty directory is left untouched)
61          // src/test/java/org (a empty directory is added)
62          // src/main/java/org/Foo.java (a non empty directory is added)
63          //
64  
65          // /readme.txt
66          ScmTestCase.makeFile(getWorkingCopy(), "/readme.txt", "changed readme.txt");
67  
68          // /project.xml
69          ScmTestCase.makeFile(getWorkingCopy(), "/project.xml", "changed project.xml");
70  
71          addToWorkingTree(getWorkingCopy(), new File("project.xml"), repository);
72  
73          // /src/test/java/org
74          ScmTestCase.makeDirectory(getWorkingCopy(), "/src/test/java/org");
75  
76          addToWorkingTree(getWorkingCopy(), new File("src/test/java/org"), repository);
77  
78          // /src/main/java/org/Foo.java
79          ScmTestCase.makeFile(getWorkingCopy(), "/src/main/java/org/Foo.java");
80  
81          addToWorkingTree(getWorkingCopy(), new File("src/main/java/org"), repository);
82  
83          // src/main/java/org/Foo.java
84          addToWorkingTree(getWorkingCopy(), new File("src/main/java/org/Foo.java"), repository);
85  
86          // ----------------------------------------------------------------------
87          // Diff the project
88          // ----------------------------------------------------------------------
89  
90          ScmProvider provider = getScmManager().getProviderByUrl(getScmUrl());
91          ScmFileSet fileSet = new ScmFileSet(getWorkingCopy());
92          DiffScmResult result = provider.diff(repository, fileSet, null, (ScmVersion) null);
93  
94          assertNotNull("The command returned a null result.", result);
95  
96          assertResultIsSuccess(result);
97  
98          List<ScmFile> changedFiles = result.getChangedFiles();
99  
100         Map<String, CharSequence> differences = result.getDifferences();
101 
102         assertEquals("Expected 3 files in the changed files list " + changedFiles, 3, changedFiles.size());
103 
104         assertEquals("Expected 3 files in the differences list " + differences, 3, differences.size());
105 
106         // ----------------------------------------------------------------------
107         // Assert the files in the changed files list
108         // ----------------------------------------------------------------------
109 
110         Iterator<ScmFile> files = new TreeSet<ScmFile>(changedFiles).iterator();
111 
112         // Check Foo.java
113         ScmFile file = files.next();
114 
115         assertPath("src/main/java/org/Foo.java", file.getPath());
116 
117         assertTrue(file.getStatus().isDiff());
118 
119         String postRangeStr = "+/src/main/java/org/Foo.java\n\\ No newline at end of file\n";
120         String actualStr = differences.get(file.getPath()).toString();
121         assertTrue(actualStr.endsWith(postRangeStr));
122 
123         // Check readme.txt
124         file = files.next();
125 
126         assertPath("readme.txt", file.getPath());
127 
128         assertTrue(file.getStatus().isDiff());
129 
130         postRangeStr =
131                 "-/readme.txt\n\\ No newline at end of file\n+changed readme.txt\n\\ No newline at end of file\n";
132         actualStr = differences.get(file.getPath()).toString();
133         assertTrue(actualStr.endsWith(postRangeStr));
134 
135         // Check project.xml
136         file = files.next();
137 
138         assertPath("project.xml", file.getPath());
139 
140         postRangeStr = "+changed project.xml\n\\ No newline at end of file\n";
141         actualStr = differences.get(file.getPath()).toString();
142         assertTrue(actualStr.endsWith(postRangeStr));
143 
144         assertTrue(file.getStatus().isDiff());
145     }
146 }