invoiceninja/tests/Integration/UpdateCompanyLedgerTest.php

66 lines
1.7 KiB
PHP
Raw Normal View History

2019-05-16 15:36:53 +10:00
<?php
namespace Tests\Integration;
use App\Events\Invoice\InvoiceWasCreated;
use App\Events\Invoice\InvoiceWasUpdated;
use App\Events\Payment\PaymentWasCreated;
2019-05-16 16:00:27 +10:00
use App\Jobs\Invoice\MarkInvoicePaid;
2019-05-16 15:36:53 +10:00
use App\Models\Account;
use App\Models\Activity;
use App\Models\Company;
use App\Models\CompanyLedger;
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 15:36:53 +10:00
class UpdateCompanyLedgerTest extends TestCase
{
use MockAccountData;
use DatabaseTransactions;
public function setUp() :void
{
parent::setUp();
$this->makeTestData();
}
/**
* @test
*/
public function testPaymentIsPresentInLedger()
{
$invoice = $this->invoice->service()->markPaid()->save();
2019-05-16 15:36:53 +10:00
$ledger = CompanyLedger::whereClientId($invoice->client_id)
->whereCompanyId($invoice->company_id)
->orderBy('id', 'DESC')
->first();
$payment = $ledger->adjustment * - 1;
2019-05-16 15:36:53 +10:00
$this->assertEquals($invoice->amount, $payment);
}
/**
* @test
*/
public function testInvoiceIsPresentInLedger()
{
2019-10-11 11:26:35 +11:00
//$this->invoice->save();
2019-05-16 15:36:53 +10:00
$ledger = CompanyLedger::whereCompanyLedgerableId($this->invoice->id)
->whereCompanyLedgerableType(Invoice::class)
2019-10-11 11:26:35 +11:00
->whereCompanyId($this->invoice->company_id)
2019-05-16 15:36:53 +10:00
->get();
$this->assertGreaterThan(1, count($ledger));
2019-05-16 15:36:53 +10:00
}
}