Skip to content

Commit 2cbbd6e

Browse files
Should make all the tests pass
1 parent b5c5994 commit 2cbbd6e

File tree

4 files changed

+68
-35
lines changed

4 files changed

+68
-35
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build & Deploy
1+
name: Build
22

33
on:
44
push:

build.gradle

+31
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,24 @@ repositories {
4141
group = 'io.micrometer.release'
4242
println "I'm configuring $project.name with version $project.version"
4343

44+
sourceSets {
45+
e2eTest {
46+
java {
47+
srcDir 'src/test/java'
48+
include '**/*E2e*.java'
49+
destinationDirectory = project.layout.buildDirectory.dir('classes/java/e2eTest')
50+
}
51+
compileClasspath = sourceSets.test.compileClasspath + sourceSets.test.output
52+
runtimeClasspath = sourceSets.test.runtimeClasspath + sourceSets.test.output + files("${buildDir}/classes/java/e2eTest")
53+
}
54+
55+
test {
56+
java {
57+
exclude '**/*E2e*.java'
58+
}
59+
}
60+
}
61+
4462
dependencies {
4563
checkstyle libs.javaFormatForPlugins
4664

@@ -85,11 +103,21 @@ test {
85103
}
86104

87105
tasks.register('e2e', Test) {
106+
description = 'Runs E2E tests.'
107+
group = 'verification'
108+
109+
dependsOn e2eTestClasses
110+
111+
testClassesDirs = sourceSets.e2eTest.output.classesDirs
112+
classpath = sourceSets.e2eTest.runtimeClasspath
113+
88114
useJUnitPlatform() {
89115
includeTags("e2e")
90116
}
91117
}
92118

119+
formatE2eTest.dependsOn("formatTest")
120+
93121
license {
94122
header rootProject.file('gradle/licenseHeader.txt')
95123
strictCheck true
@@ -124,12 +152,15 @@ tasks.check {
124152

125153
pitest {
126154
junit5PluginVersion = libs.versions.pitestJunit5
155+
127156
threads = 4 // Parallel threads for mutation testing
128157
outputFormats = ['HTML'] // Generate an HTML report
129158
timestampedReports = false // Avoid timestamped reports for consistent file paths
130159
testStrengthThreshold.set(90)
131160
mutationThreshold.set(80)
132161
setCoverageThreshold(80)
162+
163+
testSourceSets = [sourceSets.test] // Only use the main test source set
133164
}
134165

135166
build.dependsOn("pitest")

src/test/java/io/micrometer/release/common/GithubActions.java

+29-28
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ public interface GithubActions {
4848
static void resetsMilestones() throws InterruptedException {
4949
assertThat(System.getenv("GH_TOKEN")).as("GH_TOKEN env var must be set!").isNotBlank();
5050
log.info(
51-
"This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient...",
52-
REPO);
51+
"This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient...",
52+
REPO);
5353
resetMilestones();
5454
}
5555

@@ -64,7 +64,8 @@ static void runWorkflow(String workflowName, List<String> commands) {
6464
processRunner.run(commands);
6565
try {
6666
waitForWorkflowCompletion(workflowName);
67-
} catch (InterruptedException e) {
67+
}
68+
catch (InterruptedException e) {
6869
throw new IllegalStateException(e);
6970
}
7071
}
@@ -77,19 +78,16 @@ private static void waitForWorkflowCompletion(String workflowFile) throws Interr
7778
int maxAttempts = 30;
7879
int attempts = 0;
7980
while (!completed && attempts < maxAttempts) { // 5 minute timeout
80-
List<String> status = processRunner.run("gh", "run", "list", "--workflow", workflowFile,
81-
"--limit", "1");
82-
log.info("Workflow [{}] not completed yet - attempt [{}]/[{}]", workflowFile,
83-
attempts + 1, maxAttempts);
81+
List<String> status = processRunner.run("gh", "run", "list", "--workflow", workflowFile, "--limit", "1");
82+
log.info("Workflow [{}] not completed yet - attempt [{}]/[{}]", workflowFile, attempts + 1, maxAttempts);
8483
completed = status.stream().anyMatch(line -> line.contains("completed"));
8584
if (!completed) {
8685
Thread.sleep(10_000);
8786
attempts++;
8887
}
8988
}
9089
if (!completed) {
91-
throw new RuntimeException(
92-
"Workflow " + workflowFile + " did not complete within timeout");
90+
throw new RuntimeException("Workflow " + workflowFile + " did not complete within timeout");
9391
}
9492
log.info("Workflow [{}] completed successfully!", workflowFile);
9593
}
@@ -117,35 +115,41 @@ class GithubClient {
117115
GithubClient(String token, String repo) {
118116
this.repo = repo;
119117
this.processRunner = new ProcessRunner(repo).withEnvVars(
120-
Map.of("JAVA_HOME", JavaHomeFinder.findJavaHomePath(), "GH_TOKEN",
121-
token != null ? token : ""));
118+
Map.of("JAVA_HOME", JavaHomeFinder.findJavaHomePath(), "GH_TOKEN", token != null ? token : ""));
122119
this.objectMapper = new ObjectMapper().registerModule(new JavaTimeModule())
123120
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
124121
}
125122

126123
public Release getRelease(String tag) throws JsonProcessingException {
127124
String output = String.join("\n",
128-
processRunner.run("gh", "api", "/repos/" + repo + "/releases/tags/" + tag));
125+
processRunner.run("gh", "api", "/repos/" + repo + "/releases/tags/" + tag));
129126
return parseReleaseFromJson(output);
130127
}
131128

129+
public void createReleaseAndTag(String tagName) {
130+
log.info("Creating tag and release [{}]", tagName);
131+
132+
processRunner.run("gh", "release", "create", tagName, "--title", tagName.replace("v", ""), "--notes",
133+
"Release " + tagName, "--target", "main");
134+
135+
log.info("Successfully created tag and release [{}]", tagName);
136+
}
137+
132138
public Milestone getMilestoneByTitle(String title) throws JsonProcessingException {
133139
String output = String.join("\n",
134-
processRunner.run("gh", "api", "/repos/" + repo + "/milestones"));
140+
processRunner.run("gh", "api", "/repos/" + repo + "/milestones?state=all"));
135141
return parseMilestoneFromJson(output, title);
136142
}
137143

138-
public List<Issue> getIssuesForMilestone(int milestoneNumber)
139-
throws JsonProcessingException {
144+
public List<Issue> getIssuesForMilestone(int milestoneNumber) throws JsonProcessingException {
140145
String output = String.join("\n", processRunner.run("gh", "api",
141-
"/repos/" + repo + "/issues?milestone=" + milestoneNumber));
146+
"/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=all"));
142147
return parseIssuesFromJson(output);
143148
}
144149

145-
public List<Issue> getClosedIssuesForMilestone(int milestoneNumber)
146-
throws JsonProcessingException {
150+
public List<Issue> getClosedIssuesForMilestone(int milestoneNumber) throws JsonProcessingException {
147151
String output = String.join("\n", processRunner.run("gh", "api",
148-
"/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed"));
152+
"/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed"));
149153
return parseIssuesFromJson(output);
150154
}
151155

@@ -154,17 +158,14 @@ private Release parseReleaseFromJson(String json) throws JsonProcessingException
154158
return new Release(root.get("body").asText());
155159
}
156160

157-
private Milestone parseMilestoneFromJson(String json, String title)
158-
throws JsonProcessingException {
161+
private Milestone parseMilestoneFromJson(String json, String title) throws JsonProcessingException {
159162
JsonNode root = objectMapper.readTree(json);
160163
for (JsonNode milestone : root) {
161164
if (milestone.get("title").asText().equals(title)) {
162-
return new Milestone(milestone.get("number").asInt(),
163-
milestone.get("state").asText(),
164-
milestone.get("title").asText(),
165-
milestone.get("due_on") != null && !milestone.get("due_on").isNull()
166-
? LocalDate.parse(milestone.get("due_on").asText().substring(0, 10))
167-
: null);
165+
return new Milestone(milestone.get("number").asInt(), milestone.get("state").asText(),
166+
milestone.get("title").asText(),
167+
milestone.get("due_on") != null && !milestone.get("due_on").isNull()
168+
? LocalDate.parse(milestone.get("due_on").asText().substring(0, 10)) : null);
168169
}
169170
}
170171
throw new RuntimeException("Milestone with title " + title + " not found");
@@ -175,7 +176,7 @@ private List<Issue> parseIssuesFromJson(String json) throws JsonProcessingExcept
175176
List<Issue> issues = new ArrayList<>();
176177
for (JsonNode issue : root) {
177178
issues.add(new Issue(issue.get("number").asInt(), issue.get("state").asText(),
178-
issue.get("title").asText()));
179+
issue.get("title").asText()));
179180
}
180181
return issues;
181182
}

src/test/java/io/micrometer/release/single/SingleProjectGithubActionsE2eTests.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class SingleProjectGithubActionsE2eTests implements GithubActions {
3030

3131
@BeforeAll
3232
static void should_go_through_whole_flow() {
33+
githubClient.createReleaseAndTag("v0.1.1");
3334
runPostReleaseWorkflow();
3435
}
3536

@@ -41,13 +42,13 @@ void should_verify_release_notes_content() throws JsonProcessingException {
4142
"""
4243
## :star: New Features
4344
44-
- Closed enhancement in generic [#5](https://github.com/marcingrzejszczak/gh-actions-test/issues/5)
45+
- Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)
4546
- Foo [#2](https://github.com/micrometer-metrics/build-test/issues/2)
4647
4748
## :lady_beetle: Bug Fixes
4849
49-
- Closed bug in concrete [#3](https://github.com/marcingrzejszczak/gh-actions-test/issues/3)
50-
- Closed bug in generic [#4](https://github.com/marcingrzejszczak/gh-actions-test/issues/4)
50+
- Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)
51+
- Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)
5152
- Foo2 [#53](https://github.com/micrometer-metrics/build-test/issues/53)
5253
5354
## :hammer: Dependency Upgrades
@@ -71,8 +72,8 @@ void should_verify_current_milestone() throws JsonProcessingException {
7172
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
7273
assertThat(issues).extracting(Issue::state).containsOnly("closed");
7374
assertThat(issues).extracting(Issue::title)
74-
.containsOnly("Closed issue in generic", "Closed bug in concrete", "Closed bug in generic",
75-
"Closed enhancement in generic");
75+
.containsOnly("Closed issue in generic 0.1.x", "Closed bug in concrete 0.1.1",
76+
"Closed bug in generic 0.1.x", "Closed enhancement in generic 0.1.x");
7677
}
7778

7879
@Test
@@ -83,7 +84,7 @@ void should_verify_next_milestone() throws JsonProcessingException {
8384
assertThat(milestone.dueOn()).isEqualTo(ReleaseDateCalculator.calculateDueDate(LocalDate.now()));
8485
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
8586
assertThat(issues).extracting(Issue::state).containsOnly("open");
86-
assertThat(issues).extracting(Issue::title).containsOnly("Open issue in concrete");
87+
assertThat(issues).extracting(Issue::title).containsOnly("Open issue in concrete 0.1.1");
8788
}
8889

8990
@Test

0 commit comments

Comments
 (0)