125 lines
3.8 KiB
PHP
125 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Invoice;
|
|
|
|
use App\Invoice\BillKind;
|
|
use App\Invoice\Enums\InvoiceStatus;
|
|
use App\Invoice\Models\Invoice;
|
|
use App\Member\Member;
|
|
use Generator;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use Tests\TestCase;
|
|
|
|
class InvoiceStoreActionTest extends TestCase
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
public function testItCanCreateAnInvoice(): void
|
|
{
|
|
$this->login()->loginNami()->withoutExceptionHandling();
|
|
$member = Member::factory()->defaults()->create();
|
|
|
|
$response = $this->postJson(
|
|
route('invoice.store'),
|
|
InvoiceRequestFactory::new()
|
|
->to(ReceiverRequestFactory::new()->name('Familie Blabla')->address('Musterstr 44')->zip('22222')->location('Solingen')->greeting('Hallo Familie')->email('a@b.de'))
|
|
->status(InvoiceStatus::PAID)
|
|
->via(BillKind::POST)
|
|
->position(InvoicePositionRequestFactory::new()->description('Beitrag Abc')->price(3250)->member($member))
|
|
->create()
|
|
);
|
|
|
|
$response->assertOk();
|
|
$this->assertDatabaseHas('invoices', [
|
|
'via' => BillKind::POST->value,
|
|
'status' => InvoiceStatus::PAID->value,
|
|
]);
|
|
$invoice = Invoice::firstWhere('to->greeting', 'Hallo Familie');
|
|
$this->assertDatabaseHas('invoice_positions', [
|
|
'invoice_id' => $invoice->id,
|
|
'member_id' => $member->id,
|
|
'price' => 3250,
|
|
'description' => 'Beitrag Abc',
|
|
]);
|
|
|
|
$this->assertEquals('Familie Blabla', $invoice->to->name);
|
|
$this->assertEquals('Musterstr 44', $invoice->to->address);
|
|
$this->assertEquals('22222', $invoice->to->zip);
|
|
$this->assertEquals('Solingen', $invoice->to->location);
|
|
$this->assertEquals('Hallo Familie', $invoice->to->greeting);
|
|
$this->assertEquals('a@b.de', $invoice->to->email);
|
|
}
|
|
|
|
public static function validationDataProvider(): Generator
|
|
{
|
|
yield [
|
|
['to.address' => ''],
|
|
['to.address' => 'Adresse ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['to.name' => ''],
|
|
['to.name' => 'Name ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['to.location' => ''],
|
|
['to.location' => 'Ort ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['status' => ''],
|
|
['status' => 'Status ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['status' => 'lala'],
|
|
['status' => 'Der gewählte Wert für Status ist ungültig.']
|
|
];
|
|
|
|
yield [
|
|
['to.zip' => ''],
|
|
['to.zip' => 'PLZ ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['via' => ''],
|
|
['via' => 'Rechnungsweg ist erforderlich.']
|
|
];
|
|
|
|
yield [
|
|
['via' => 'lala'],
|
|
['via' => 'Der gewählte Wert für Rechnungsweg ist ungültig.']
|
|
];
|
|
|
|
yield [
|
|
['usage' => ''],
|
|
['usage' => 'Verwendungszweck ist erforderlich.']
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $input
|
|
* @param array<string, string> $errors
|
|
*/
|
|
#[DataProvider('validationDataProvider')]
|
|
public function testItValidatesInput(array $input, array $errors): void
|
|
{
|
|
$this->login()->loginNami();
|
|
|
|
$response = $this->postJson(
|
|
route('invoice.store'),
|
|
InvoiceRequestFactory::new()
|
|
->to(ReceiverRequestFactory::new())
|
|
->position(InvoicePositionRequestFactory::new()->member(Member::factory()->defaults()->create()))
|
|
->via(BillKind::POST)
|
|
->state($input)
|
|
->create()
|
|
);
|
|
|
|
$response->assertJsonValidationErrors($errors);
|
|
}
|
|
}
|