24
24
import org .mockito .Mockito ;
25
25
26
26
import java .io .File ;
27
- import java .io .IOException ;
28
27
import java .net .URISyntaxException ;
29
- import java .nio .file .Files ;
30
28
import java .util .Collections ;
31
29
import java .util .List ;
32
30
import java .util .concurrent .TimeUnit ;
@@ -50,12 +48,12 @@ class DependencyVerifierTests {
50
48
"micrometer-metrics/micrometer" , "--json" , "id,name" , "--jq" ,
51
49
".[] | select(.name==\" Dependabot Updates\" ) | .id" };
52
50
51
+ private static final String [] dependabotUpdateJobTime = { "gh" , "run" , "list" , "--workflow=1234" , "-R" ,
52
+ "micrometer-metrics/micrometer" , "--json=createdAt" , "--jq=.[].createdAt" , "--limit=1" };
53
+
53
54
private static final String [] dependabotUpdateJobStates = { "gh" , "run" , "list" , "--workflow=1234" , "-R" ,
54
55
"micrometer-metrics/micrometer" , "--created='>2025-02-24T10:51:29Z'" , "--json=status" , "--jq=.[].status" };
55
56
56
- File ghServerTimeResponse = new File (
57
- DependencyVerifierTests .class .getResource ("/dependencyVerifier/getGhServerTime.txt" ).toURI ());
58
-
59
57
ProcessRunner processRunner = mock ();
60
58
61
59
DependencyVerifier verifier = new DependencyVerifier (processRunner , 1 , 5 , 1 , TimeUnit .MILLISECONDS ) {
@@ -85,7 +83,7 @@ ProcessRunner processRunnerForBranch(File clonedRepo) {
85
83
}
86
84
};
87
85
88
- DependencyVerifierTests () throws URISyntaxException {
86
+ DependencyVerifierTests () {
89
87
}
90
88
91
89
@ BeforeEach
@@ -96,9 +94,8 @@ void setup() {
96
94
97
95
@ Test
98
96
@ SuppressWarnings ("unchecked" )
99
- void should_receive_updated_dependabot_status () throws IOException {
100
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
101
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
97
+ void should_receive_updated_dependabot_status () {
98
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
102
99
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ),
103
100
Collections .singletonList ("1234" ), Collections .emptyList ());
104
101
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("BLOCKED,OPEN" ),
@@ -107,7 +104,7 @@ void should_receive_updated_dependabot_status() throws IOException {
107
104
verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" );
108
105
109
106
InOrder inOrder = Mockito .inOrder (processRunner );
110
- inOrder .verify (processRunner ).run ("gh" , "api" , "/" , "--include" );
107
+ inOrder .verify (processRunner ).run (dependabotUpdateJobTime );
111
108
inOrder .verify (processRunner )
112
109
.run ("git" , "remote" , "set-url" , "origin" ,
113
110
"https://x-access-token:[email protected] /micrometer-metrics/micrometer.git" );
@@ -123,9 +120,8 @@ void should_receive_updated_dependabot_status() throws IOException {
123
120
124
121
@ Test
125
122
@ SuppressWarnings ("unchecked" )
126
- void should_fail_when_no_dependabot_jobs_present () throws IOException {
127
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
128
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
123
+ void should_fail_when_no_dependabot_jobs_present () {
124
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
129
125
given (processRunner .run (dependabotUpdateJobsIds )).willReturn (Collections .emptyList ());
130
126
131
127
thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
@@ -135,9 +131,8 @@ void should_fail_when_no_dependabot_jobs_present() throws IOException {
135
131
136
132
@ Test
137
133
@ SuppressWarnings ("unchecked" )
138
- void should_fail_when_dependabot_jobs_are_not_successful () throws IOException {
139
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
140
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
134
+ void should_fail_when_dependabot_jobs_are_not_successful () {
135
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
141
136
given (processRunner .run (dependabotUpdateJobStates )).willReturn (List .of (), List .of ("BLOCKED" , "OPEN" ));
142
137
143
138
thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
@@ -147,29 +142,16 @@ void should_fail_when_dependabot_jobs_are_not_successful() throws IOException {
147
142
148
143
@ Test
149
144
void should_throw_exception_when_gh_server_time_cannot_be_retrieved () {
150
- given (processRunner .run ("gh" , "api" , "/" , "--include" )).willReturn (Collections .emptyList ());
145
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (Collections .emptyList ());
151
146
152
147
thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
153
148
.isInstanceOf (IllegalStateException .class )
154
- .hasMessageContaining ("Could not get GitHub server time from response headers" );
155
- }
156
-
157
- @ Test
158
- void should_throw_exception_when_no_dependabot_jobs () throws IOException {
159
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
160
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
161
- given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ));
162
- given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("CONFLICTING" ));
163
-
164
- thenThrownBy (() -> verifier .verifyDependencies ("main" , "micrometer-metrics/micrometer" ))
165
- .isInstanceOf (IllegalStateException .class )
166
- .hasMessageContaining ("PR #1234 has conflicts" );
149
+ .hasMessageContaining ("Can't get Github server time because no dependabot jobs were ever ran" );
167
150
}
168
151
169
152
@ Test
170
- void should_throw_exception_when_dependabot_pr_is_conflicting () throws IOException {
171
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
172
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
153
+ void should_throw_exception_when_dependabot_pr_is_conflicting () {
154
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
173
155
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ));
174
156
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("CONFLICTING" ));
175
157
@@ -179,9 +161,8 @@ void should_throw_exception_when_dependabot_pr_is_conflicting() throws IOExcepti
179
161
}
180
162
181
163
@ Test
182
- void should_throw_exception_when_timeout () throws IOException {
183
- given (processRunner .run ("gh" , "api" , "/" , "--include" ))
184
- .willReturn (Files .readAllLines (ghServerTimeResponse .toPath ()));
164
+ void should_throw_exception_when_timeout () {
165
+ given (processRunner .run (dependabotUpdateJobTime )).willReturn (List .of ("2025-02-24T10:51:29Z" ));
185
166
given (processRunner .run (dependabotCreatedPrNumbers )).willReturn (Collections .singletonList ("1234" ));
186
167
given (processRunner .run (dependabotPrState )).willReturn (Collections .singletonList ("BLOCKED,OPEN" ));
187
168
0 commit comments