aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ReflogResolveTest.java
blob: 8124e92e821697eef0f4542828da0280070e8486 (plain)
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
/*
 * Copyright (C) 2011, GitHub Inc. 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.lib;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.fail;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.errors.RevisionSyntaxException;
import org.eclipse.jgit.junit.RepositoryTestCase;
import org.eclipse.jgit.revwalk.RevCommit;
import org.junit.Test;

/**
 * Unit tests for resolving reflog-based revisions
 */
public class ReflogResolveTest extends RepositoryTestCase {

	@Test
	public void resolveMasterCommits() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			RevCommit c1 = git.commit().setMessage("create file").call();
			writeTrashFile("file.txt", "content2");
			git.add().addFilepattern("file.txt").call();
			RevCommit c2 = git.commit().setMessage("edit file").call();

			assertEquals(c2, db.resolve("master@{0}"));
			assertEquals(c1, db.resolve("master@{1}"));
		}
	}

	@Test
	public void resolveUnnamedCurrentBranchCommits() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			RevCommit c1 = git.commit().setMessage("create file").call();
			writeTrashFile("file.txt", "content2");
			git.add().addFilepattern("file.txt").call();
			RevCommit c2 = git.commit().setMessage("edit file").call();

			assertEquals(c2, db.resolve("master@{0}"));
			assertEquals(c1, db.resolve("master@{1}"));

			git.checkout().setCreateBranch(true).setName("newbranch")
					.setStartPoint(c1).call();

			// same as current branch, e.g. master
			assertEquals(c1, db.resolve("@{0}"));
			try {
				assertEquals(c1, db.resolve("@{1}"));
				fail(); // Looking at wrong ref, e.g HEAD
			} catch (RevisionSyntaxException e) {
				assertNotNull(e);
			}

			// detached head, read HEAD reflog
			git.checkout().setName(c2.getName()).call();
			assertEquals(c2, db.resolve("@{0}"));
			assertEquals(c1, db.resolve("@{1}"));
			assertEquals(c2, db.resolve("@{2}"));
		}
	}

	@Test
	public void resolveReflogParent() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			RevCommit c1 = git.commit().setMessage("create file").call();
			writeTrashFile("file.txt", "content2");
			git.add().addFilepattern("file.txt").call();
			git.commit().setMessage("edit file").call();

			assertEquals(c1, db.resolve("master@{0}~1"));
		}
	}

	@Test
	public void resolveNonExistingBranch() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			git.commit().setMessage("create file").call();
			assertNull(db.resolve("notabranch@{7}"));
		}
	}

	@Test
	public void resolvePreviousBranch() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			RevCommit c1 = git.commit().setMessage("create file").call();
			writeTrashFile("file.txt", "content2");
			git.add().addFilepattern("file.txt").call();
			RevCommit c2 = git.commit().setMessage("edit file").call();

			git.checkout().setCreateBranch(true).setName("newbranch")
					.setStartPoint(c1).call();

			git.checkout().setName(c1.getName()).call();

			git.checkout().setName("master").call();

			assertEquals(c1.getName(), db.simplify("@{-1}"));
			assertEquals("newbranch", db.simplify("@{-2}"));
			assertEquals("master", db.simplify("@{-3}"));

			// chained expression
			try {
				// Cannot refer to reflog of detached head
				db.resolve("@{-1}@{0}");
				fail();
			} catch (RevisionSyntaxException e) {
				// good
			}
			assertEquals(c1.getName(), db.resolve("@{-2}@{0}").getName());

			assertEquals(c2.getName(), db.resolve("@{-3}@{0}").getName());
		}
	}

	@Test
	public void resolveDate() throws Exception {
		try (Git git = new Git(db)) {
			writeTrashFile("file.txt", "content");
			git.add().addFilepattern("file.txt").call();
			git.commit().setMessage("create file").call();
			try {
				db.resolve("master@{yesterday}");
				fail("Exception not thrown");
			} catch (RevisionSyntaxException e) {
				assertNotNull(e);
			}
		}
	}
}