-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/main' into craft5
- Loading branch information
Showing
5 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
namespace markhuot\craftpest\helpers\queue; | ||
|
||
use Craft; | ||
|
||
if (! function_exists('queue')) { | ||
function queue($callback = null): mixed | ||
{ | ||
$result = null; | ||
|
||
if ($callback) { | ||
$result = $callback(); | ||
} | ||
|
||
Craft::$app->queue->run(); | ||
|
||
return $result; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
namespace markhuot\craftpest\test; | ||
|
||
use Craft; | ||
use markhuot\craftpest\web\Application; | ||
|
||
trait CleanupRequestState | ||
{ | ||
/** | ||
* Cleanup any request state that may be left over from previous tests. | ||
* | ||
* This is normally cleaned up (and run) after a request goes through Craft's router. | ||
* However, if a test isn't interacting with the route and is just calling actions or | ||
* running queues then the after request callbacks won't be cleared. | ||
*/ | ||
public function tearDownCleanupRequestState(): void | ||
{ | ||
$app = Craft::$app; | ||
|
||
if ($app instanceof Application) { | ||
$reflect = new \ReflectionClass($app); | ||
while ($reflect && ! $reflect->hasProperty('afterRequestCallbacks')) { | ||
$reflect = $reflect->getParentClass(); | ||
} | ||
|
||
if ($reflect) { | ||
$property = $reflect->getProperty('afterRequestCallbacks'); | ||
$property->setValue($app, []); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
test('sets request state', function () { | ||
Craft::$app->onAfterRequest(fn () => throw new Exception('An after request callback was not cleared.')); | ||
|
||
expect(true)->toBeTrue(); | ||
}); | ||
|
||
test('expects request state to be empty', function () { | ||
$app = Craft::$app; | ||
$reflect = new ReflectionClass($app); | ||
while ($reflect && ! $reflect->hasProperty('afterRequestCallbacks')) { | ||
$reflect = $reflect->getParentClass(); | ||
} | ||
|
||
expect($reflect->getProperty('afterRequestCallbacks')->getValue($app))->toBeEmpty(); | ||
})->depends('sets request state'); |