1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/tests/Integration/MarkInvoicePaidTest.php

58 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Integration;
2019-05-16 08:00:27 +02:00
use App\Jobs\Invoice\MarkInvoicePaid;
use App\Models\Account;
use App\Models\Company;
use App\Models\Invoice;
use App\Models\Payment;
use App\Models\User;
use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
2019-05-16 08:00:27 +02:00
* @covers App\Jobs\Invoice\MarkInvoicePaid
*/
2019-05-16 08:00:27 +02:00
class MarkInvoicePaidTest extends TestCase
{
use MockAccountData;
use DatabaseTransactions;
public function setUp() :void
{
parent::setUp();
$this->makeTestData();
}
public function testClientExists()
{
$this->assertNotNull($this->client);
}
2019-05-16 08:00:27 +02:00
public function testMarkInvoicePaidInvoice()
{
MarkInvoicePaid::dispatchNow($this->invoice, $this->company);
$invoice = Invoice::find($this->invoice->id);
$this->assertEquals(0.00, $invoice->balance);
$this->assertEquals(1, count($invoice->payments));
foreach($invoice->payments as $payment) {
$this->assertEquals(round($this->invoice->amount,2), $payment->amount);
}
2019-10-02 22:01:12 +02:00
//events are not firing which makes this impossible to control.
$this->assertEquals(0.00, $invoice->balance);
}
}