1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
/*
* Copyright (C) 2012, Marc Strapetz <marc.strapetz@syntevo.com> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.revwalk;
import static org.junit.Assert.assertNull;
import java.io.File;
import java.io.IOException;
import org.eclipse.jgit.junit.JGitTestUtil;
import org.eclipse.jgit.lib.ObjectId;
import org.junit.Test;
public class RevWalkShallowTest extends RevWalkTestCase {
// Accessing ==============================================================
@Test
public void testDepth1() throws Exception {
RevCommit[] commits = setupLinearChain();
createShallowFile(commits[3]);
updateCommits(commits);
rw.markStart(commits[3]);
assertCommit(commits[3], rw.next());
assertNull(rw.next());
}
@Test
public void testDepth2() throws Exception {
RevCommit[] commits = setupLinearChain();
createShallowFile(commits[2]);
updateCommits(commits);
rw.markStart(commits[3]);
assertCommit(commits[3], rw.next());
assertCommit(commits[2], rw.next());
assertNull(rw.next());
}
@Test
public void testDepth3() throws Exception {
RevCommit[] commits = setupLinearChain();
createShallowFile(commits[1]);
updateCommits(commits);
rw.markStart(commits[3]);
assertCommit(commits[3], rw.next());
assertCommit(commits[2], rw.next());
assertCommit(commits[1], rw.next());
assertNull(rw.next());
}
@Test
public void testObjectDirectorySnapshot() throws Exception {
RevCommit[] commits = setupLinearChain();
createShallowFile(commits[3]);
updateCommits(commits);
markStart(commits[3]);
assertCommit(commits[3], rw.next());
assertNull(rw.next());
createShallowFile(commits[2]);
updateCommits(commits);
markStart(commits[3]);
assertCommit(commits[3], rw.next());
assertCommit(commits[2], rw.next());
assertNull(rw.next());
}
private RevCommit[] setupLinearChain() throws Exception {
RevCommit[] commits = new RevCommit[4];
RevCommit parent = null;
for (int i = 0; i < commits.length; i++) {
commits[i] = parent != null ? commit(parent) : commit();
parent = commits[i];
}
return commits;
}
@Test
public void testMergeCommitOneParentShallow() throws Exception {
RevCommit[] commits = setupMergeChain();
createShallowFile(commits[4]);
updateCommits(commits);
markStart(commits[5]);
assertCommit(commits[5], rw.next());
assertCommit(commits[4], rw.next());
assertCommit(commits[2], rw.next());
assertCommit(commits[1], rw.next());
assertCommit(commits[0], rw.next());
assertNull(rw.next());
}
@Test
public void testMergeCommitEntirelyShallow() throws Exception {
RevCommit[] commits = setupMergeChain();
createShallowFile(commits[2], commits[4]);
updateCommits(commits);
markStart(commits[5]);
assertCommit(commits[5], rw.next());
assertCommit(commits[4], rw.next());
assertCommit(commits[2], rw.next());
assertNull(rw.next());
}
private RevCommit[] setupMergeChain() throws Exception {
/*-
* Create a history like this, diverging at 1 and merging at 5:
*
* ---o--o commits 3,4
* / \
* o--o--o------o commits 0,1,2,5
*/
RevCommit[] commits = new RevCommit[6];
commits[0] = commit();
commits[1] = commit(commits[0]);
commits[2] = commit(commits[1]);
commits[3] = commit(commits[1]);
commits[4] = commit(commits[3]);
commits[5] = commit(commits[2], commits[4]);
return commits;
}
private void updateCommits(RevCommit[] commits) {
// Relookup commits using the new RevWalk
for (int i = 0; i < commits.length; i++) {
commits[i] = rw.lookupCommit(commits[i].getId());
}
}
private void createShallowFile(ObjectId... shallowCommits)
throws IOException {
// Reset the RevWalk since the new shallow file invalidates the existing
// RevWalk's shallow state.
rw.close();
rw = createRevWalk();
StringBuilder builder = new StringBuilder();
for (ObjectId commit : shallowCommits) {
builder.append(commit.getName() + "\n");
}
JGitTestUtil.write(new File(db.getDirectory(), "shallow"),
builder.toString());
}
@Test
public void testShallowCommitParse() throws Exception {
RevCommit a = commit();
RevCommit b = commit(a);
createShallowFile(b);
rw.close();
rw = createRevWalk();
b = rw.parseCommit(b);
markStart(b);
assertCommit(b, rw.next());
assertNull(rw.next());
}
}
|