2020-10-08 05:31:02 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-08 05:31:02 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-08 05:31:02 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-08 05:31:02 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Services\Invoice\AutoBillInvoice
|
|
|
|
*/
|
|
|
|
class AutoBillInvoiceTest extends TestCase
|
|
|
|
{
|
|
|
|
use DatabaseTransactions;
|
2021-02-03 21:46:18 +01:00
|
|
|
use MockAccountData;
|
2020-10-08 05:31:02 +02:00
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2020-10-08 05:31:02 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAutoBillFunctionality()
|
|
|
|
{
|
|
|
|
$this->assertEquals($this->client->balance, 10);
|
|
|
|
$this->assertEquals($this->client->paid_to_date, 0);
|
|
|
|
$this->assertEquals($this->client->credit_balance, 10);
|
|
|
|
|
2021-12-03 07:19:24 +01:00
|
|
|
$this->invoice->service()->markSent()->autoBill();
|
2020-10-08 05:31:02 +02:00
|
|
|
|
|
|
|
$this->assertNotNull($this->invoice->payments());
|
|
|
|
$this->assertEquals(10, $this->invoice->payments()->sum('payments.amount'));
|
|
|
|
|
2021-07-03 05:47:15 +02:00
|
|
|
$this->assertEquals($this->client->fresh()->balance, 0);
|
|
|
|
$this->assertEquals($this->client->fresh()->paid_to_date, 10);
|
|
|
|
$this->assertEquals($this->client->fresh()->credit_balance, 0);
|
2020-10-08 05:31:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|