View Javadoc
1   /*
2    * Copyright (C) 2011, Stefan Lay <stefan.lay@.com>
3    * and other copyright owners as documented in the project's IP log.
4    *
5    * This program and the accompanying materials are made available
6    * under the terms of the Eclipse Distribution License v1.0 which
7    * accompanies this distribution, is reproduced below, and is
8    * available at http://www.eclipse.org/org/documents/edl-v10.php
9    *
10   * All rights reserved.
11   *
12   * Redistribution and use in source and binary forms, with or
13   * without modification, are permitted provided that the following
14   * conditions are met:
15   *
16   * - Redistributions of source code must retain the above copyright
17   *   notice, this list of conditions and the following disclaimer.
18   *
19   * - Redistributions in binary form must reproduce the above
20   *   copyright notice, this list of conditions and the following
21   *   disclaimer in the documentation and/or other materials provided
22   *   with the distribution.
23   *
24   * - Neither the name of the Eclipse Foundation, Inc. nor the
25   *   names of its contributors may be used to endorse or promote
26   *   products derived from this software without specific prior
27   *   written permission.
28   *
29   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
30   * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
31   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
34   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36   * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42   */
43  package org.eclipse.jgit.diff;
44  
45  import static org.junit.Assert.assertEquals;
46  
47  import java.io.File;
48  
49  import org.eclipse.jgit.api.Git;
50  import org.eclipse.jgit.dircache.DirCacheIterator;
51  import org.eclipse.jgit.junit.RepositoryTestCase;
52  import org.eclipse.jgit.treewalk.FileTreeIterator;
53  import org.eclipse.jgit.treewalk.filter.PathFilter;
54  import org.junit.Test;
55  
56  public class PatchIdDiffFormatterTest extends RepositoryTestCase {
57  
58  	@Test
59  	public void testDiff() throws Exception {
60  		write(new File(db.getDirectory().getParent(), "test.txt"), "test");
61  		File folder = new File(db.getDirectory().getParent(), "folder");
62  		folder.mkdir();
63  		write(new File(folder, "folder.txt"), "folder");
64  		try (Git git = new Git(db);
65  				PatchIdDiffFormatter df = new PatchIdDiffFormatter()) {
66  			git.add().addFilepattern(".").call();
67  			git.commit().setMessage("Initial commit").call();
68  			write(new File(folder, "folder.txt"), "folder change");
69  
70  			df.setRepository(db);
71  			df.setPathFilter(PathFilter.create("folder"));
72  			DirCacheIterator oldTree = new DirCacheIterator(db.readDirCache());
73  			FileTreeIterator newTree = new FileTreeIterator(db);
74  			df.format(oldTree, newTree);
75  			df.flush();
76  
77  			assertEquals("1ff64e0f9333e9b81967c3e8d7a81362b14d5441", df
78  					.getCalulatedPatchId().name());
79  		}
80  	}
81  
82  	@Test
83  	public void testSameDiff() throws Exception {
84  		write(new File(db.getDirectory().getParent(), "test.txt"), "test");
85  		File folder = new File(db.getDirectory().getParent(), "folder");
86  		folder.mkdir();
87  		write(new File(folder, "folder.txt"), "\n\n\n\nfolder");
88  		try (Git git = new Git(db)) {
89  			git.add().addFilepattern(".").call();
90  			git.commit().setMessage("Initial commit").call();
91  			write(new File(folder, "folder.txt"), "\n\n\n\nfolder change");
92  
93  			try (PatchIdDiffFormatter df = new PatchIdDiffFormatter()) {
94  				df.setRepository(db);
95  				df.setPathFilter(PathFilter.create("folder"));
96  				DirCacheIterator oldTree = new DirCacheIterator(db.readDirCache());
97  				FileTreeIterator newTree = new FileTreeIterator(db);
98  				df.format(oldTree, newTree);
99  				df.flush();
100 
101 				assertEquals("08fca5ac531383eb1da8bf6b6f7cf44411281407", df
102 						.getCalulatedPatchId().name());
103 			}
104 
105 			write(new File(folder, "folder.txt"), "a\n\n\n\nfolder");
106 			git.add().addFilepattern(".").call();
107 			git.commit().setMessage("Initial commit").call();
108 			write(new File(folder, "folder.txt"), "a\n\n\n\nfolder change");
109 
110 			try (PatchIdDiffFormatter df = new PatchIdDiffFormatter()) {
111 				df.setRepository(db);
112 				df.setPathFilter(PathFilter.create("folder"));
113 				DirCacheIterator oldTree = new DirCacheIterator(db.readDirCache());
114 				FileTreeIterator newTree = new FileTreeIterator(db);
115 				df.format(oldTree, newTree);
116 				df.flush();
117 
118 				assertEquals("08fca5ac531383eb1da8bf6b6f7cf44411281407", df
119 						.getCalulatedPatchId().name());
120 			}
121 		}
122 	}
123 
124 }