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
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAutoBillFunctionality()
|
|
|
|
{
|
2021-07-03 05:47:15 +02:00
|
|
|
|
2020-10-08 05:31:02 +02:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// public function testAutoBillSetOffFunctionality()
|
|
|
|
// {
|
|
|
|
|
|
|
|
// $settings = $this->company->settings;
|
|
|
|
// $settings->use_credits_payment = 'off';
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// $this->company->settings = $settings;
|
|
|
|
// $this->company->save();
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// $this->assertEquals($this->client->balance, 10);
|
|
|
|
// $this->assertEquals($this->client->paid_to_date, 0);
|
|
|
|
// $this->assertEquals($this->client->credit_balance, 10);
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// $this->invoice->service()->markSent()->autoBill()->save();
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// $this->assertNotNull($this->invoice->payments());
|
|
|
|
// $this->assertEquals(0, $this->invoice->payments()->sum('payments.amount'));
|
|
|
|
|
|
|
|
// $this->assertEquals($this->client->balance, 10);
|
|
|
|
// $this->assertEquals($this->client->paid_to_date, 0);
|
|
|
|
// $this->assertEquals($this->client->credit_balance, 10);
|
2020-10-15 05:35:35 +02:00
|
|
|
|
2020-10-26 20:10:04 +01:00
|
|
|
// }
|
2020-10-08 05:31:02 +02:00
|
|
|
}
|