@@ -108,6 +108,7 @@ public function testReturnsFalseWhenIniFileDoesNotExist(): void
108
108
$ this ->targetPlatform ,
109
109
$ this ->downloadedPackage ,
110
110
$ this ->output ,
111
+ null ,
111
112
));
112
113
113
114
self ::assertStringContainsString (
@@ -142,6 +143,7 @@ public function testExtensionIsAlreadyEnabledButExtensionDoesNotLoad(): void
142
143
$ this ->targetPlatform ,
143
144
$ this ->downloadedPackage ,
144
145
$ this ->output ,
146
+ null ,
145
147
));
146
148
147
149
$ output = $ this ->output ->fetch ();
@@ -177,6 +179,7 @@ public function testExtensionIsAlreadyEnabledAndExtensionLoaded(): void
177
179
$ this ->targetPlatform ,
178
180
$ this ->downloadedPackage ,
179
181
$ this ->output ,
182
+ null ,
180
183
));
181
184
182
185
$ output = $ this ->output ->fetch ();
@@ -186,6 +189,45 @@ public function testExtensionIsAlreadyEnabledAndExtensionLoaded(): void
186
189
);
187
190
}
188
191
192
+ public function testExtensionIsAlreadyEnabledWithAdditionalStepAndExtensionLoaded (): void
193
+ {
194
+ $ this ->isExtensionAlreadyInTheIniFile
195
+ ->expects (self ::once ())
196
+ ->method ('__invoke ' )
197
+ ->with (self ::INI_FILE , $ this ->downloadedPackage ->package ->extensionName )
198
+ ->willReturn (true );
199
+
200
+ $ this ->mockPhpBinary
201
+ ->expects (self ::once ())
202
+ ->method ('assertExtensionIsLoadedInRuntime ' )
203
+ ->with ($ this ->downloadedPackage ->package ->extensionName , $ this ->output );
204
+
205
+ $ this ->addExtensionToTheIniFile
206
+ ->expects (self ::never ())
207
+ ->method ('__invoke ' );
208
+
209
+ $ additionalStepInvoked = false ;
210
+ self ::assertTrue ($ this ->checkAndAddExtensionToIniIfNeeded ->__invoke (
211
+ self ::INI_FILE ,
212
+ $ this ->targetPlatform ,
213
+ $ this ->downloadedPackage ,
214
+ $ this ->output ,
215
+ static function () use (&$ additionalStepInvoked ): bool {
216
+ $ additionalStepInvoked = true ;
217
+
218
+ return true ;
219
+ },
220
+ ));
221
+
222
+ self ::assertTrue ($ additionalStepInvoked , 'Failed asserting that the additional step was invoked ' );
223
+
224
+ $ output = $ this ->output ->fetch ();
225
+ self ::assertStringContainsString (
226
+ 'Extension is already enabled in the INI file ' ,
227
+ $ output ,
228
+ );
229
+ }
230
+
189
231
public function testExtensionIsNotYetAdded (): void
190
232
{
191
233
$ this ->isExtensionAlreadyInTheIniFile
@@ -214,6 +256,7 @@ public function testExtensionIsNotYetAdded(): void
214
256
$ this ->targetPlatform ,
215
257
$ this ->downloadedPackage ,
216
258
$ this ->output ,
259
+ null ,
217
260
));
218
261
}
219
262
@@ -245,6 +288,7 @@ public function testExtensionIsNotYetAddedButFailsToBeAdded(): void
245
288
$ this ->targetPlatform ,
246
289
$ this ->downloadedPackage ,
247
290
$ this ->output ,
291
+ null ,
248
292
));
249
293
}
250
294
}
0 commit comments