@@ -39,60 +39,39 @@ static void should_go_through_whole_flow() {
39
39
void should_verify_release_notes_content_for_ga () throws JsonProcessingException {
40
40
Release release = githubClient .getRelease ("v0.1.1" );
41
41
42
- assertThat (release .body ()).isEqualToIgnoringWhitespace (
43
- """
44
- ## :star: New Features
45
-
46
- - Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)
47
-
48
- ## :lady_beetle: Bug Fixes
49
-
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)
52
- """ );
42
+ assertThat (release .body ()).containsIgnoringWhitespaces (
43
+ "- Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)" ,
44
+ "- Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)" ,
45
+ "- Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)" );
53
46
}
54
47
55
48
@ Test
56
49
void should_verify_release_notes_content_for_M2 () throws JsonProcessingException {
57
50
Release release = githubClient .getRelease ("v0.2.0-M2" );
58
51
59
- assertThat (release .body ()).isEqualToIgnoringWhitespace (
60
- """
61
- ## :star: New Features
62
-
63
- - Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)
64
- - Closed enhancement in generic 0.2.x [#14](https://github.com/marcingrzejszczak/gh-actions-test/issues/14)
65
-
66
- ## :lady_beetle: Bug Fixes
67
-
68
- - Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)
69
- - Closed bug in concrete 0.2.0-M2 [#18](https://github.com/marcingrzejszczak/gh-actions-test/issues/18)
70
- - Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)
71
- - Closed bug in generic 0.2.x [#15](https://github.com/marcingrzejszczak/gh-actions-test/issues/15)
72
- """ );
52
+ assertThat (release .body ()).containsIgnoringWhitespaces (
53
+ "- Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)" ,
54
+ "- Closed enhancement in generic 0.2.x [#14](https://github.com/marcingrzejszczak/gh-actions-test/issues/14)" ,
55
+ "- Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)" ,
56
+ "- Closed bug in concrete 0.2.0-M2 [#18](https://github.com/marcingrzejszczak/gh-actions-test/issues/18)" ,
57
+ "- Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)" ,
58
+ "- Closed bug in generic 0.2.x [#15](https://github.com/marcingrzejszczak/gh-actions-test/issues/15)" );
73
59
}
74
60
75
61
@ Test
76
62
void should_verify_release_notes_content_for_RC1 () throws JsonProcessingException {
77
63
Release release = githubClient .getRelease ("v1.0.0-RC1" );
78
64
79
- assertThat (release .body ()).isEqualToIgnoringWhitespace (
80
- """
81
- ## :star: New Features
82
-
83
- - Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)
84
- - Closed enhancement in generic 0.2.x [#14](https://github.com/marcingrzejszczak/gh-actions-test/issues/14)
85
- - Closed enhancement in generic 1.0.x [#5](https://github.com/marcingrzejszczak/gh-actions-test/issues/5)
86
-
87
- ## :lady_beetle: Bug Fixes
88
-
89
- - Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)
90
- - Closed bug in concrete 0.2.0-M2 [#18](https://github.com/marcingrzejszczak/gh-actions-test/issues/18)
91
- - Closed bug in concrete 1.0.0-RC1 [#3](https://github.com/marcingrzejszczak/gh-actions-test/issues/3)
92
- - Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)
93
- - Closed bug in generic 0.2.x [#15](https://github.com/marcingrzejszczak/gh-actions-test/issues/15)
94
- - Closed bug in generic 1.0.x [#4](https://github.com/marcingrzejszczak/gh-actions-test/issues/4)
95
- """ );
65
+ assertThat (release .body ()).containsIgnoringWhitespaces (
66
+ "Closed enhancement in generic 0.1.x [#8](https://github.com/marcingrzejszczak/gh-actions-test/issues/8)" ,
67
+ "Closed enhancement in generic 0.2.x [#14](https://github.com/marcingrzejszczak/gh-actions-test/issues/14)" ,
68
+ "Closed enhancement in generic 1.0.x [#5](https://github.com/marcingrzejszczak/gh-actions-test/issues/5)" ,
69
+ "Closed bug in concrete 0.1.1 [#12](https://github.com/marcingrzejszczak/gh-actions-test/issues/12)" ,
70
+ "Closed bug in concrete 0.2.0-M2 [#18](https://github.com/marcingrzejszczak/gh-actions-test/issues/18)" ,
71
+ "Closed bug in concrete 1.0.0-RC1 [#3](https://github.com/marcingrzejszczak/gh-actions-test/issues/3)" ,
72
+ "Closed bug in generic 0.1.x [#9](https://github.com/marcingrzejszczak/gh-actions-test/issues/9)" ,
73
+ "Closed bug in generic 0.2.x [#15](https://github.com/marcingrzejszczak/gh-actions-test/issues/15)" ,
74
+ "Closed bug in generic 1.0.x [#4](https://github.com/marcingrzejszczak/gh-actions-test/issues/4)" );
96
75
}
97
76
98
77
@ ParameterizedTest
@@ -105,6 +84,7 @@ void should_verify_current_milestone(String version) throws JsonProcessingExcept
105
84
List <Issue > issues = githubClient .getIssuesForMilestone (milestone .number ());
106
85
assertThat (issues ).extracting (Issue ::state ).containsOnly ("closed" );
107
86
assertThat (issues ).extracting (Issue ::title )
87
+ .doesNotMatch (strings -> strings .stream ().noneMatch (s -> s .contains ("Open issue" )))
108
88
.containsOnly ("Closed issue in generic " + generic , "Closed bug in concrete " + version ,
109
89
"Closed bug in generic " + generic , "Closed enhancement in generic " + generic );
110
90
}
@@ -122,7 +102,9 @@ void should_verify_next_milestone(String next, String previous) throws JsonProce
122
102
assertThat (milestone .dueOn ()).isEqualTo (calculateDueDate (LocalDate .now ()));
123
103
List <Issue > issues = githubClient .getIssuesForMilestone (milestone .number ());
124
104
assertThat (issues ).extracting (Issue ::state ).containsOnly ("open" );
125
- assertThat (issues ).extracting (Issue ::title ).containsOnly ("Open issue in concrete " + previous );
105
+ assertThat (issues ).extracting (Issue ::title )
106
+ .doesNotMatch (strings -> strings .stream ().noneMatch (s -> s .contains ("in generic" )))
107
+ .contains ("Open issue in concrete " + previous );
126
108
}
127
109
128
110
@ ParameterizedTest
0 commit comments