18
18
import io .micrometer .release .common .GradleParser ;
19
19
import io .micrometer .release .common .ProcessRunner ;
20
20
import io .micrometer .release .common .TestGradleParser ;
21
+
22
+ import java .io .IOException ;
23
+ import java .nio .file .Files ;
24
+
21
25
import org .junit .jupiter .api .BeforeEach ;
22
26
import org .junit .jupiter .api .Test ;
23
27
import org .mockito .InOrder ;
@@ -51,8 +55,8 @@ class DependencyVerifierTests {
51
55
private static final String [] dependabotUpdateJobTime = { "gh" , "run" , "list" , "--workflow=1234" , "-R" ,
52
56
"micrometer-metrics/micrometer" , "--json=createdAt" , "--jq=.[].createdAt" , "--limit=1" };
53
57
54
- private static final String [] dependabotUpdateJobStates = { "gh " , "run " , "list" , "--workflow=1234" , "-R " ,
55
- "micrometer-metrics/micrometer" , "-- created=' >2025-02-24T10:51:29Z'" , "--json=status" , "--jq=.[].status " };
58
+ private static final String [] dependabotUpdateJobStates = { "curl " , "-H " , "Authorization: token 1234567890 " ,
59
+ "https://api.github.com/repos/ micrometer-metrics/micrometer/actions/runs? created=>2025-02-24T10:51:29Z&workflow_id=1234 " };
56
60
57
61
ProcessRunner processRunner = mock ();
58
62
@@ -87,15 +91,16 @@ ProcessRunner processRunnerForBranch(File clonedRepo) {
87
91
}
88
92
89
93
@ BeforeEach
90
- void setup () {
94
+ void setup () throws URISyntaxException , IOException {
91
95
given (processRunner .run (dependabotUpdateJobsIds )).willReturn (List .of ("1234" ));
92
- given (processRunner .run (dependabotUpdateJobStates )).willReturn (List .of ("completed" ));
96
+ given (processRunner .run (dependabotUpdateJobStates )).willReturn (Files
97
+ .readAllLines (new File (DependencyVerifierTests .class .getResource ("/github/runs.json" ).toURI ()).toPath ()));
98
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
93
99
}
94
100
95
101
@ Test
96
102
@ SuppressWarnings ("unchecked" )
97
103
void should_receive_updated_dependabot_status () {
98
- given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
99
104
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ),
100
105
Collections .singletonList ("1234" ), Collections .emptyList ());
101
106
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("BLOCKED,OPEN" ),
@@ -121,7 +126,6 @@ void should_receive_updated_dependabot_status() {
121
126
@ Test
122
127
@ SuppressWarnings ("unchecked" )
123
128
void should_fail_when_no_dependabot_jobs_present () {
124
- given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
125
129
given (processRunner .run (dependabotUpdateJobsIds )).willReturn (Collections .emptyList ());
126
130
127
131
thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
@@ -132,8 +136,19 @@ void should_fail_when_no_dependabot_jobs_present() {
132
136
@ Test
133
137
@ SuppressWarnings ("unchecked" )
134
138
void should_fail_when_dependabot_jobs_are_not_successful () {
135
- given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
136
- given (processRunner .run (dependabotUpdateJobStates )).willReturn (List .of (), List .of ("BLOCKED" , "OPEN" ));
139
+ given (processRunner .run (dependabotUpdateJobStates )).willReturn (List .of ("" , """
140
+ {
141
+ "total_count": 15,
142
+ "workflow_runs": [
143
+ {
144
+ "status": "blocked",
145
+ "event": "pull_request"
146
+ },
147
+ {
148
+ "status": "open",
149
+ "event": "pull_request"
150
+ }
151
+ ]""" ));
137
152
138
153
thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
139
154
.isInstanceOf (IllegalStateException .class )
@@ -151,7 +166,6 @@ void should_throw_exception_when_gh_server_time_cannot_be_retrieved() {
151
166
152
167
@ Test
153
168
void should_throw_exception_when_dependabot_pr_is_conflicting () {
154
- given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
155
169
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ));
156
170
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("CONFLICTING" ));
157
171
@@ -162,7 +176,6 @@ void should_throw_exception_when_dependabot_pr_is_conflicting() {
162
176
163
177
@ Test
164
178
void should_throw_exception_when_timeout () {
165
- given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
166
179
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ));
167
180
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("BLOCKED,OPEN" ));
168
181
0 commit comments