Add Pestphp
continuous-integration/drone/push Build is failing Details

This commit is contained in:
philipp lang 2024-09-21 18:29:47 +02:00
parent 42ccd32740
commit 295d85f4f8
5 changed files with 131 additions and 103 deletions

View File

@ -10,7 +10,6 @@ parameters:
paths: paths:
- app - app
- tests
- database - database
- packages/tex/src - packages/tex/src
- packages/laravel-nami/src - packages/laravel-nami/src

View File

@ -5,20 +5,14 @@ namespace Tests\Feature\Invoice;
use App\Invoice\Models\Invoice; use App\Invoice\Models\Invoice;
use App\Invoice\Models\InvoicePosition; use App\Invoice\Models\InvoicePosition;
use Illuminate\Foundation\Testing\DatabaseTransactions; use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
class InvoiceDestroyActionTest extends TestCase uses(DatabaseTransactions::class);
{
use DatabaseTransactions; it('testItDestroysInvoice', function () {
public function testItDestroysInvoice(): void
{
$this->login()->loginNami()->withoutExceptionHandling(); $this->login()->loginNami()->withoutExceptionHandling();
$invoice = Invoice::factory()->has(InvoicePosition::factory()->withMember(), 'positions')->create(); $invoice = Invoice::factory()->has(InvoicePosition::factory()->withMember(), 'positions')->create();
$this->delete(route('invoice.destroy', ['invoice' => $invoice]))->assertOk(); $this->delete(route('invoice.destroy', ['invoice' => $invoice]))->assertOk();
$this->assertDatabaseCount('invoices', 0); $this->assertDatabaseCount('invoices', 0);
$this->assertDatabaseCount('invoice_positions', 0); $this->assertDatabaseCount('invoice_positions', 0);
} });
}

View File

@ -9,16 +9,11 @@ use App\Invoice\Models\InvoicePosition;
use App\Member\Member; use App\Member\Member;
use App\Payment\Subscription; use App\Payment\Subscription;
use Illuminate\Foundation\Testing\DatabaseTransactions; use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
class InvoiceIndexActionTest extends TestCase uses(DatabaseTransactions::class);
{
use DatabaseTransactions; it('testItDisplaysInvoices', function () {
login()->loginNami()->withoutExceptionHandling();
public function testItDisplaysInvoices(): void
{
$this->login()->loginNami()->withoutExceptionHandling();
$subscription = Subscription::factory()->forFee()->name('Beitrag')->create(); $subscription = Subscription::factory()->forFee()->name('Beitrag')->create();
$member = Member::factory()->defaults()->create(['firstname' => 'Aaaa', 'lastname' => 'Aaab']); $member = Member::factory()->defaults()->create(['firstname' => 'Aaaa', 'lastname' => 'Aaab']);
$invoice = Invoice::factory() $invoice = Invoice::factory()
@ -30,7 +25,7 @@ class InvoiceIndexActionTest extends TestCase
->status(InvoiceStatus::SENT) ->status(InvoiceStatus::SENT)
->create(['usage' => 'Usa', 'mail_email' => 'a@b.de']); ->create(['usage' => 'Usa', 'mail_email' => 'a@b.de']);
$this->get(route('invoice.index')) test()->get(route('invoice.index'))
->assertInertiaPath('data.data.0.to.name', 'Familie Blabla') ->assertInertiaPath('data.data.0.to.name', 'Familie Blabla')
->assertInertiaPath('data.data.0.id', $invoice->id) ->assertInertiaPath('data.data.0.id', $invoice->id)
->assertInertiaPath('data.data.0.sum_human', '33,00 €') ->assertInertiaPath('data.data.0.sum_human', '33,00 €')
@ -77,28 +72,25 @@ class InvoiceIndexActionTest extends TestCase
'description' => '', 'description' => '',
'member_id' => null, 'member_id' => null,
]); ]);
} });
public function testValuesCanBeNull(): void it('testValuesCanBeNull', function () {
{ test()->login()->loginNami()->withoutExceptionHandling();
$this->login()->loginNami()->withoutExceptionHandling();
Invoice::factory()->create(); Invoice::factory()->create();
$this->get(route('invoice.index')) test()->get(route('invoice.index'))
->assertInertiaPath('data.data.0.sent_at_human', ''); ->assertInertiaPath('data.data.0.sent_at_human', '');
} });
public function testItFiltersForInvoiceStatus(): void it('testItFiltersForInvoiceStatus', function () {
{ test()->login()->loginNami()->withoutExceptionHandling();
$this->login()->loginNami()->withoutExceptionHandling();
Invoice::factory()->status(InvoiceStatus::NEW)->create(); Invoice::factory()->status(InvoiceStatus::NEW)->create();
Invoice::factory()->status(InvoiceStatus::SENT)->count(2)->create(); Invoice::factory()->status(InvoiceStatus::SENT)->count(2)->create();
Invoice::factory()->status(InvoiceStatus::PAID)->count(3)->create(); Invoice::factory()->status(InvoiceStatus::PAID)->count(3)->create();
$this->callFilter('invoice.index', [])->assertInertiaCount('data.data', 3); test()->callFilter('invoice.index', [])->assertInertiaCount('data.data', 3);
$this->callFilter('invoice.index', ['statuses' => []])->assertInertiaCount('data.data', 0); test()->callFilter('invoice.index', ['statuses' => []])->assertInertiaCount('data.data', 0);
$this->callFilter('invoice.index', ['statuses' => ['Neu']])->assertInertiaCount('data.data', 1); test()->callFilter('invoice.index', ['statuses' => ['Neu']])->assertInertiaCount('data.data', 1);
$this->callFilter('invoice.index', ['statuses' => ['Neu', 'Rechnung beglichen']])->assertInertiaCount('data.data', 4); test()->callFilter('invoice.index', ['statuses' => ['Neu', 'Rechnung beglichen']])->assertInertiaCount('data.data', 4);
$this->callFilter('invoice.index', ['statuses' => ['Neu', 'Rechnung beglichen', 'Rechnung gestellt']])->assertInertiaCount('data.data', 6); test()->callFilter('invoice.index', ['statuses' => ['Neu', 'Rechnung beglichen', 'Rechnung gestellt']])->assertInertiaCount('data.data', 6);
} });
}

43
tests/Pest.php Normal file
View File

@ -0,0 +1,43 @@
<?php
/*
|--------------------------------------------------------------------------
| Test Case
|--------------------------------------------------------------------------
|
| The closure you provide to your test functions is always bound to a specific PHPUnit test
| case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may
| need to change it using the "uses()" function to bind a different classes or traits.
|
*/
uses(
Tests\TestCase::class,
// Illuminate\Foundation\Testing\RefreshDatabase::class,
)->in('Feature');
/*
|--------------------------------------------------------------------------
| Expectations
|--------------------------------------------------------------------------
|
| When you're writing tests, you often need to check that values meet certain conditions. The
| "expect()" function gives you access to a set of "expectations" methods that you can use
| to assert different things. Of course, you may extend the Expectation API at any time.
|
*/
// expect()->extend('toBeOne', function () {
// return $this->toBe(1);
// });
/*
|--------------------------------------------------------------------------
| Functions
|--------------------------------------------------------------------------
|
| While Pest is very powerful out-of-the-box, you may have some testing code specific to your
| project that you don't want to repeat in every file. Here you can also expose helpers as
| global functions to help you to reduce the number of lines of code in your test files.
|
*/

View File

@ -19,7 +19,7 @@ use Tests\Lib\TestsInertia;
use Zoomyboy\LaravelNami\Authentication\Auth; use Zoomyboy\LaravelNami\Authentication\Auth;
use Zoomyboy\TableDocument\TestsExcelDocuments; use Zoomyboy\TableDocument\TestsExcelDocuments;
abstract class TestCase extends BaseTestCase class TestCase extends BaseTestCase
{ {
use CreatesApplication; use CreatesApplication;
use TestsInertia; use TestsInertia;
@ -28,7 +28,7 @@ abstract class TestCase extends BaseTestCase
protected User $me; protected User $me;
public function setUp(): void protected function setUp(): void
{ {
parent::setUp(); parent::setUp();
Auth::fake(); Auth::fake();