forked from diffplug/spotless-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelogPluginPushTest.java
120 lines (98 loc) · 3.76 KB
/
ChangelogPluginPushTest.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
* Copyright (C) 2019-2021 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.diffplug.spotless.changelog.gradle;
import static org.junit.Assert.assertEquals;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.revwalk.RevWalk;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.junit.rules.TestWatcher;
import org.junit.runner.Description;
public class ChangelogPluginPushTest extends GradleHarness {
@Rule
public DeleteOnSuccessTemporaryFolder temporaryFolder = new DeleteOnSuccessTemporaryFolder(new File("build"));
@Rule
public KeepTempFolderOnFailure keepTempFolderOnFailure = new KeepTempFolderOnFailure(temporaryFolder);
@Test
public void verifyAnnotatedTagMessage() throws IOException, GitAPIException {
final String testCaseFolder = "1.0.3-annotatedTag";
File origin = initUpstreamRepo(testCaseFolder);
final File working = temporaryFolder.newFolder("working");
Git git = Git.cloneRepository().setURI(origin.getAbsolutePath())
.setDirectory(working).call();
copyResourceFile(working, testCaseFolder, "CHANGELOG.md");
gradleRunner().withProjectDir(working)/*.withDebug(true)*/
.withArguments("changelogPush").build();
assertEquals("Version is 1.0.3, here are the changes:"
+ "\n\n### Fixed\n"
+ "- this should be in tag message\n",
annotatedTagMessage(git, "release/1.0.3"));
}
private String annotatedTagMessage(Git localGit, final String tagName) throws IOException {
try (RevWalk walk = new RevWalk(localGit.getRepository())) {
return walk.parseTag(
localGit.getRepository().findRef(tagName).getObjectId())
.getFullMessage();
}
}
private File initUpstreamRepo(String testCaseFolder) throws IOException, GitAPIException {
File origin = temporaryFolder.newFolder("origin");
Git git = Git.init().setDirectory(origin).call();
copyResourceFile(origin, "settings.gradle");
copyResourceFile(origin, testCaseFolder, "build.gradle");
git.add().addFilepattern(".").call();
git.commit()
.setMessage("Commit all changes including additions")
.call();
return origin;
}
private void copyResourceFile(File working, String testCaseFolder, String fileName) throws IOException {
Files.copy(Paths.get("src/test/resources", testCaseFolder, fileName), working.toPath().resolve(fileName));
}
private void copyResourceFile(File working, String fileName) throws IOException {
Files.copy(Paths.get("src/test/resources", fileName), working.toPath().resolve(fileName));
}
static class KeepTempFolderOnFailure extends TestWatcher {
private final DeleteOnSuccessTemporaryFolder folder;
KeepTempFolderOnFailure(DeleteOnSuccessTemporaryFolder folder) {
this.folder = folder;
}
@Override
protected void failed(Throwable e, Description description) {
folder.disableDeletion();
}
}
static class DeleteOnSuccessTemporaryFolder extends TemporaryFolder {
boolean canDelete = true;
public DeleteOnSuccessTemporaryFolder(File file) {
super(file);
}
@Override
protected void after() {
if (canDelete)
super.after();
}
public void disableDeletion() {
canDelete = false;
}
}
}