mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Integration;
|
||
|
|
||
|
use App\Jobs\Invoice\MarkPaid;
|
||
|
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 Illuminate\Support\Facades\DB;
|
||
|
use Illuminate\Support\Facades\Hash;
|
||
|
use Illuminate\Support\Facades\Log;
|
||
|
use Tests\MockAccountData;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
* @covers App\Jobs\Invoice\MarkPaid
|
||
|
*/
|
||
|
class MarkPaidInvoiceTest extends TestCase
|
||
|
{
|
||
|
use MockAccountData;
|
||
|
use DatabaseTransactions;
|
||
|
|
||
|
public function setUp() :void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->makeTestData();
|
||
|
}
|
||
|
|
||
|
public function testClientExists()
|
||
|
{
|
||
|
$this->assertNotNull($this->client);
|
||
|
}
|
||
|
|
||
|
public function testMarkPaidInvoice()
|
||
|
{
|
||
|
MarkPaid::dispatchNow($this->invoice);
|
||
|
|
||
|
$invoice = Invoice::find($this->invoice->id);
|
||
|
|
||
|
$this->assertEquals(0.00, $invoice->balance);
|
||
|
|
||
|
$this->assertEquals(1, count($invoice->payments));
|
||
|
|
||
|
|
||
|
foreach($invoice->payments as $payment) {
|
||
|
Log::error($payment);
|
||
|
$this->assertEquals(10, $payment->amount);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
$this->assertEquals(Invoice::STATUS_PAID, $invoice->status_id);
|
||
|
|
||
|
|
||
|
$this->assertEquals(0.00, $invoice->balance);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|