1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/tests/Unit/CreditBalanceTest.php

77 lines
1.8 KiB
PHP
Raw Normal View History

2021-07-02 01:48:11 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2022-06-08 06:25:44 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-07-02 01:48:11 +02:00
*/
namespace Tests\Unit;
use App\Models\Account;
use App\Models\Client;
use App\Models\Company;
use App\Models\Credit;
2021-07-02 12:20:46 +02:00
use App\Models\CreditInvitation;
2021-07-02 01:48:11 +02:00
use App\Models\User;
use App\Utils\Traits\AppSetup;
2021-07-02 02:06:26 +02:00
use Tests\MockUnitData;
2021-07-02 01:48:11 +02:00
use Tests\TestCase;
/**
* @test
*/
class CreditBalanceTest extends TestCase
{
2021-07-02 02:06:26 +02:00
use MockUnitData;
use AppSetup;
2021-07-02 02:06:26 +02:00
2021-07-02 01:48:11 +02:00
public function setUp() :void
{
parent::setUp();
2021-07-02 12:20:46 +02:00
Credit::all()->each(function ($credit){
$credit->forceDelete();
});
2021-07-02 02:06:26 +02:00
$this->makeTestData();
$this->buildCache(true);
2021-07-02 01:48:11 +02:00
}
public function testCreditBalance()
{
$credit = Credit::factory()->create([
2021-07-02 02:06:26 +02:00
'user_id' => $this->user->id,
'company_id' => $this->company->id,
'client_id' => $this->client->id,
2021-07-02 01:48:11 +02:00
'balance' => 10,
'number' => 'testing-number-01',
'status_id' => Credit::STATUS_SENT,
]);
2021-07-02 02:06:26 +02:00
$this->assertEquals($this->client->service()->getCreditBalance(), 10);
2021-07-02 01:48:11 +02:00
}
public function testExpiredCreditBalance()
{
$credit = Credit::factory()->create([
2021-07-02 02:06:26 +02:00
'user_id' => $this->user->id,
'company_id' => $this->company->id,
'client_id' => $this->client->id,
2021-07-02 01:48:11 +02:00
'balance' => 10,
'due_date' => now()->addDays(5),
'number' => 'testing-number-02',
'status_id' => Credit::STATUS_SENT,
]);
2021-07-02 02:06:26 +02:00
$this->assertEquals($this->client->service()->getCreditBalance(), 0);
2021-07-02 01:48:11 +02:00
}
}