forked from wildfly/wildfly-github-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPRCommitCheckTest.java
More file actions
231 lines (205 loc) · 9.67 KB
/
PRCommitCheckTest.java
File metadata and controls
231 lines (205 loc) · 9.67 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package org.wildfly.bot;
import io.quarkiverse.githubapp.testing.GitHubAppTest;
import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.kohsuke.github.GHRepository;
import org.mockito.Mockito;
import org.wildfly.bot.utils.TestConstants;
import org.wildfly.bot.utils.WildflyGitHubBotTesting;
import org.wildfly.bot.utils.mocking.Mockable;
import org.wildfly.bot.utils.mocking.MockedGHPullRequest;
import org.wildfly.bot.utils.testing.PullRequestJson;
import org.wildfly.bot.utils.testing.internal.TestModel;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.never;
import static org.wildfly.bot.model.RuntimeConstants.DEFAULT_COMMIT_MESSAGE;
import static org.wildfly.bot.model.RuntimeConstants.DEFAULT_PROJECT_KEY;
import static org.wildfly.bot.model.RuntimeConstants.PROJECT_PATTERN_REGEX;
import static org.wildfly.bot.utils.TestConstants.INVALID_COMMIT_MESSAGE;
/**
* Tests for the WildFly -> Format -> Commit checks.
*/
@QuarkusTest
@GitHubAppTest
public class PRCommitCheckTest {
private static String wildflyConfigFile;
private static PullRequestJson pullRequestJson;
private Mockable mockedContext;
@BeforeAll
static void setUpGitHubJson() throws Exception {
pullRequestJson = TestModel.defaultBeforeEachJsons();
}
@Test
void testFailedCommitCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
enabled: true
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(TestConstants.INVALID_COMMIT_MESSAGE);
TestModel.given(mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson, mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatFailure(repo, pullRequestJson, "commit");
WildflyGitHubBotTesting.verifyFailedFormatComment(mocks, pullRequestJson,
"- " + String.format(DEFAULT_COMMIT_MESSAGE,
PROJECT_PATTERN_REGEX.formatted("WFLY")));
});
}
@Test
void testFailedCommitCheckCommitConfigNull() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(TestConstants.INVALID_COMMIT_MESSAGE);
TestModel.given(
mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson, mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatFailure(repo, pullRequestJson, "commit");
WildflyGitHubBotTesting.verifyFailedFormatComment(mocks, pullRequestJson,
"- " + String.format(DEFAULT_COMMIT_MESSAGE,
PROJECT_PATTERN_REGEX.formatted(DEFAULT_PROJECT_KEY)));
});
}
@Test
void testSuccessfulCommitCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
enabled: true
""";
TestModel.given(mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatSuccess(repo, pullRequestJson);
});
}
/**
* Issue detected on the following PR with a multiline commit https://github.com/wildfly/wildfly/pull/17092
*/
@Test
void testSuccessfulMultilinedCommitCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
enabled: true
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit("""
WFLY-18341 Restore incorrectly updated copyright dates in Jipijapa
This reverts incorrect changes from
096a516e745663a99fce0062ff4bb93a4ca1066f:
Upgrade to Hibernate Search 6.2.0.CR1""");
TestModel.given(mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson,
mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatSuccess(repo, pullRequestJson);
});
}
@Test
void testSuccessfulCommitCheckCommitConfigNull() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
""";
TestModel.given(mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatSuccess(repo, pullRequestJson);
});
}
@Test
void testDisabledCommitCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
enabled: false
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(TestConstants.INVALID_COMMIT_MESSAGE);
TestModel.given(
mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson, mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatSuccess(repo, pullRequestJson);
});
}
@Test
public void testOverridingCommitMessage() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
message: "Lorem ipsum dolor sit amet"
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(TestConstants.INVALID_COMMIT_MESSAGE);
TestModel.given(
mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson, mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatFailure(repo, pullRequestJson, "commit");
WildflyGitHubBotTesting.verifyFailedFormatComment(mocks, pullRequestJson,
"- Lorem ipsum dolor sit amet");
});
}
@Test
public void testDisableGlobalFormatCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
enabled: false
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(TestConstants.INVALID_COMMIT_MESSAGE);
TestModel.given(mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
Mockito.verify(repo, never()).createCommitStatus(anyString(), any(), anyString(), anyString());
Mockito.verify(repo, never()).createCommitStatus(anyString(), any(), anyString(), anyString(), anyString());
});
}
@Test
public void testLongErrorMessageTruncationInFailedCommitCheck() throws Throwable {
wildflyConfigFile = """
wildfly:
format:
commit:
message: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
""";
mockedContext = MockedGHPullRequest.builder(pullRequestJson.id())
.commit(INVALID_COMMIT_MESSAGE);
TestModel.given(
mocks -> WildflyGitHubBotTesting.mockRepo(mocks, wildflyConfigFile, pullRequestJson,
mockedContext))
.pullRequestEvent(pullRequestJson)
.then(mocks -> {
GHRepository repo = mocks.repository(TestConstants.TEST_REPO);
WildflyGitHubBotTesting.verifyFormatFailure(repo, pullRequestJson, "commit");
WildflyGitHubBotTesting.verifyFailedFormatComment(mocks, pullRequestJson,
"- <details><summary>abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +
"abcdefghij...</summary>klmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789</details>");
});
}
}