mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00

* feat: First Webhook PoC draft * feat: Dispatch Webhooks PoC * fix: typo in webhook configuration scope * Update 2024_04_21_162552_create_webhooks_table.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update 2024_04_21_162552_create_webhooks_table.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update 2024_04_21_162544_create_webhook_configurations_table.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update 2024_04_21_162544_create_webhook_configurations_table.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhooks.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhooksJob.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhookForConfiguration.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhookForConfiguration.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhookForConfiguration.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhooksJob.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhooksJob.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * Update DispatchWebhooksJob.php Co-authored-by: Lance Pioch <lancepioch@gmail.com> * chore: Implement Webhook Event Discovery * we got a test working for webhooks * WIP * Something is working! * More tests * clean up the tests now that they are passing * WIP * Don't use model specific events * WIP * WIP * WIP * WIP * WIP * Do it sync * Reset these * Don't need restored event type * Deleted some unused jobs * Find custom Events * Remove observers * Add custom event test * Run Pint * Add caching * Don't cache every single event * Fix tests * Run Pint * Phpstan fixes * Pint fix * Test fixes * Middleware unit test fix * Pint fixes * Remove index not working for older dbs * Use facade instead --------- Co-authored-by: Pascale Beier <mail@pascalebeier.de> Co-authored-by: Lance Pioch <lancepioch@gmail.com> Co-authored-by: Vehikl <go@vehikl.com>
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use Carbon\Carbon;
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
use Spatie\Permission\PermissionRegistrar;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
/**
|
|
* Setup tests.
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
Carbon::setTestNow(Carbon::now());
|
|
CarbonImmutable::setTestNow(Carbon::now());
|
|
|
|
// TODO: if unit tests suite, then force set DB_HOST=UNIT_NO_DB
|
|
// env('DB_DATABASE', 'UNIT_NO_DB');
|
|
|
|
// Why, you ask? If we don't force this to false it is possible for certain exceptions
|
|
// to show their error message properly in the integration test output, but not actually
|
|
// be setup correctly to display their message in production.
|
|
//
|
|
// If we expect a message in a test, and it isn't showing up (rather, showing the generic
|
|
// "an error occurred" message), we can probably assume that the exception isn't one that
|
|
// is recognized as being user viewable.
|
|
config()->set('app.debug', false);
|
|
|
|
$this->setKnownUuidFactory();
|
|
|
|
$this->app->make(PermissionRegistrar::class)->forgetCachedPermissions();
|
|
}
|
|
|
|
/**
|
|
* Tear down tests.
|
|
*/
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
|
|
Carbon::setTestNow();
|
|
CarbonImmutable::setTestNow();
|
|
}
|
|
|
|
/**
|
|
* Handles the known UUID handling in certain unit tests. Use the "KnownUuid" trait
|
|
* in order to enable this ability.
|
|
*/
|
|
public function setKnownUuidFactory()
|
|
{
|
|
// do nothing
|
|
}
|
|
}
|