Files
InvoiceShelf/tests/Unit/InvoiceTest.php
mchev 3259173066 Laravel 11 (#84)
* Convert string references to `::class`

PHP 5.5.9 adds the new static `class` property which provides the fully qualified class name. This is preferred over using strings for class names since the `class` property references are checked by PHP.

* Use Faker methods

Accessing Faker properties was deprecated in Faker 1.14.

* Convert route options to fluent methods

Laravel 8 adopts the tuple syntax for controller actions. Since the old options array is incompatible with this syntax, Shift converted them to use modern, fluent methods.

* Adopt class based routes

* Remove default `app` files

* Shift core files

* Streamline config files

* Set new `ENV` variables

* Default new `bootstrap/app.php`

* Re-register HTTP middleware

* Consolidate service providers

* Re-register service providers

* Re-register routes

* Re-register scheduled commands

* Bump Composer dependencies

* Use `<env>` tags for configuration

`<env>` tags have a lower precedence than system environment variables making it easier to overwrite PHPUnit configuration values in additional environments, such a CI.

Review this blog post for more details on configuration precedence when testing Laravel: https://jasonmccreary.me/articles/laravel-testing-configuration-precedence/

* Adopt anonymous migrations

* Rename `password_resets` table

* Convert `$casts` property to method

* Adopt Laravel type hints

* Mark base controller as `abstract`

* Remove `CreatesApplication` testing trait

* Shift cleanup

* Fix shift first issues

* Updating Rules for laravel 11, sanctum config and pint

* Fix Carbon issue on dashboard

* Temporary fix for tests while migration is issue fixed on laravel side

* Carbon needs numerical values, not strings

* Minimum php version

* Fix domain installation step not fetching the correct company_id

* Fix Role Policy wasn't properly registered

---------
2024-06-05 11:33:52 +02:00

196 lines
5.2 KiB
PHP

<?php
use App\Http\Requests\InvoicesRequest;
use App\Models\Invoice;
use App\Models\InvoiceItem;
use App\Models\Tax;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Artisan;
beforeEach(function () {
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
});
test('invoice has many invoice items', function () {
$invoice = Invoice::factory()->hasItems(5)->create();
$this->assertCount(5, $invoice->items);
$this->assertTrue($invoice->items()->exists());
});
test('invoice has many taxes', function () {
$invoice = Invoice::factory()->hasTaxes(5)->create();
$this->assertCount(5, $invoice->taxes);
$this->assertTrue($invoice->taxes()->exists());
});
test('invoice has many payments', function () {
$invoice = Invoice::factory()->hasPayments(5)->create();
$this->assertCount(5, $invoice->payments);
$this->assertTrue($invoice->payments()->exists());
});
test('invoice belongs to customer', function () {
$invoice = Invoice::factory()->forCustomer()->create();
$this->assertTrue($invoice->customer()->exists());
});
test('get previous status', function () {
$invoice = Invoice::factory()->create();
$status = $invoice->getPreviousStatus();
$this->assertEquals('DRAFT', $status);
});
test('create invoice', function () {
$invoice = Invoice::factory()->raw();
$item = InvoiceItem::factory()->raw();
$invoice['items'] = [];
array_push($invoice['items'], $item);
$invoice['taxes'] = [];
array_push($invoice['taxes'], Tax::factory()->raw());
$request = new InvoicesRequest();
$request->replace($invoice);
$invoice_number = explode('-', $invoice['invoice_number']);
$number_attributes['invoice_number'] = $invoice_number[0].'-'.sprintf('%06d', intval($invoice_number[1]));
$response = Invoice::createInvoice($request);
$this->assertDatabaseHas('invoice_items', [
'invoice_id' => $response->id,
'name' => $item['name'],
'description' => $item['description'],
'total' => $item['total'],
'quantity' => $item['quantity'],
'discount' => $item['discount'],
'price' => $item['price'],
]);
$this->assertDatabaseHas('invoices', [
'invoice_number' => $invoice['invoice_number'],
'sub_total' => $invoice['sub_total'],
'total' => $invoice['total'],
'tax' => $invoice['tax'],
'discount' => $invoice['discount'],
'notes' => $invoice['notes'],
'customer_id' => $invoice['customer_id'],
'template_name' => $invoice['template_name'],
]);
});
test('update invoice', function () {
$invoice = Invoice::factory()->create();
$newInvoice = Invoice::factory()->raw();
$item = InvoiceItem::factory()->raw([
'invoice_id' => $invoice->id,
]);
$tax = Tax::factory()->raw([
'invoice_id' => $invoice->id,
]);
$newInvoice['items'] = [];
$newInvoice['taxes'] = [];
array_push($newInvoice['items'], $item);
array_push($newInvoice['taxes'], $tax);
$request = new InvoicesRequest();
$request->replace($newInvoice);
$invoice_number = explode('-', $newInvoice['invoice_number']);
$number_attributes['invoice_number'] = $invoice_number[0].'-'.sprintf('%06d', intval($invoice_number[1]));
$response = $invoice->updateInvoice($request);
$this->assertDatabaseHas('invoice_items', [
'invoice_id' => $response->id,
'name' => $item['name'],
'description' => $item['description'],
'total' => $item['total'],
'quantity' => $item['quantity'],
'discount' => $item['discount'],
'price' => $item['price'],
]);
$this->assertDatabaseHas('invoices', [
'invoice_number' => $newInvoice['invoice_number'],
'sub_total' => $newInvoice['sub_total'],
'total' => $newInvoice['total'],
'tax' => $newInvoice['tax'],
'discount' => $newInvoice['discount'],
'notes' => $newInvoice['notes'],
'customer_id' => $newInvoice['customer_id'],
'template_name' => $newInvoice['template_name'],
]);
});
test('create items', function () {
$invoice = Invoice::factory()->create();
$items = [];
$item = InvoiceItem::factory()->raw([
'invoice_id' => $invoice->id,
]);
array_push($items, $item);
$request = new InvoicesRequest();
$request->replace(['items' => $items]);
Invoice::createItems($invoice, $request->items);
$this->assertDatabaseHas('invoice_items', [
'invoice_id' => $invoice->id,
'description' => $item['description'],
'price' => $item['price'],
'tax' => $item['tax'],
'quantity' => $item['quantity'],
'total' => $item['total'],
]);
});
test('create taxes', function () {
$invoice = Invoice::factory()->create();
$taxes = [];
$tax = Tax::factory()->raw([
'invoice_id' => $invoice->id,
]);
array_push($taxes, $tax);
$request = new Request();
$request->replace(['taxes' => $taxes]);
Invoice::createTaxes($invoice, $request->taxes);
$this->assertDatabaseHas('taxes', [
'invoice_id' => $invoice->id,
'name' => $tax['name'],
'amount' => $tax['amount'],
]);
});