-
Notifications
You must be signed in to change notification settings - Fork 745
/
Copy pathGHBranchTest.java
100 lines (83 loc) · 3.5 KB
/
GHBranchTest.java
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
package org.kohsuke.github;
import org.junit.Test;
import static org.hamcrest.Matchers.*;
// TODO: Auto-generated Javadoc
/**
* The Class GHBranchTest.
*/
public class GHBranchTest extends AbstractGitHubWireMockTest {
/**
* Create default GHBranchTest instance
*/
public GHBranchTest() {
}
private static final String BRANCH_1 = "testBranch1";
private static final String BRANCH_2 = "testBranch2";
private static final String BRANCH_3 = "testBranch3";
private GHRepository repository;
/**
* Test merge branch.
*
* @throws Exception
* the exception
*/
@Test
public void testMergeBranch() throws Exception {
repository = getTempRepository();
String mainHead = repository.getRef("heads/main").getObject().getSha();
String branchName1 = "refs/heads/" + BRANCH_1;
repository.createRef(branchName1, mainHead);
repository.createContent()
.content(branchName1)
.message(branchName1)
.path(branchName1)
.branch(branchName1)
.commit();
String branchName2 = "refs/heads/" + BRANCH_2;
repository.createRef(branchName2, mainHead);
GHBranch otherBranch = repository.getBranch(BRANCH_2);
assertThat(otherBranch.getSHA1(), equalTo(mainHead));
repository.createContent()
.content(branchName2)
.message(branchName2)
.path(branchName2)
.branch(branchName2)
.commit();
otherBranch = repository.getBranch(BRANCH_2);
assertThat(otherBranch.getSHA1(), not(equalTo(mainHead)));
assertThat(otherBranch.getOwner(), notNullValue());
assertThat(otherBranch.getOwner().getFullName(), equalTo(repository.getFullName()));
String commitMessage = "merging " + BRANCH_2;
GHCommit mergeCommit = repository.getBranch(BRANCH_1).merge(otherBranch, commitMessage);
assertThat(mergeCommit, notNullValue());
assertThat(mergeCommit.getCommitShortInfo().getMessage(), equalTo(commitMessage));
// Merging commit sha should work
commitMessage = "merging from " + mergeCommit.getSHA1();
GHBranch main = repository.getBranch("main");
mergeCommit = main.merge(mergeCommit.getSHA1(), commitMessage);
assertThat(mergeCommit, notNullValue());
assertThat(mergeCommit.getCommitShortInfo().getMessage(), equalTo(commitMessage));
mergeCommit = main.merge(mergeCommit.getSHA1(), commitMessage);
// Should be null since all changes already merged
assertThat(mergeCommit, nullValue());
}
/**
* Test merge rename.
*
* @throws Exception
* the exception
*/
@Test
public void testBranchRename() throws Exception {
repository = getTempRepository();
String mainHead = repository.getRef("heads/main").getObject().getSha();
String branchName = "refs/heads/" + BRANCH_3;
repository.createRef(branchName, mainHead);
repository.createContent().content(branchName).message(branchName).path(branchName).branch(branchName).commit();
GHBranch otherBranch = repository.getBranch(BRANCH_3);
otherBranch.rename(BRANCH_3 + "_renamed");
GHBranch otherBranchRenamed = repository.getBranch(BRANCH_3 + "_renamed");
assertThat(otherBranchRenamed, notNullValue());
assertThat(otherBranchRenamed.getName(), equalTo(BRANCH_3 + "_renamed"));
}
}