mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:57:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			146 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			146 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace Tests\Feature;
 | 
						|
 | 
						|
use App\Factory\InvoiceItemFactory;
 | 
						|
use App\Models\Client;
 | 
						|
use App\Models\Invoice;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseTransactions;
 | 
						|
use Illuminate\Routing\Middleware\ThrottleRequests;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
use Tests\MockAccountData;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
class EntityPaidToDateTest extends TestCase
 | 
						|
{
 | 
						|
    use MakesHash;
 | 
						|
    use DatabaseTransactions;
 | 
						|
    use MockAccountData;
 | 
						|
 | 
						|
    protected function setUp() :void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        Session::start();
 | 
						|
 | 
						|
        $this->faker = \Faker\Factory::create();
 | 
						|
 | 
						|
        Model::reguard();
 | 
						|
 | 
						|
        $this->makeTestData();
 | 
						|
        $this->withoutExceptionHandling();
 | 
						|
 | 
						|
        $this->withoutMiddleware(
 | 
						|
            ThrottleRequests::class
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPaidToDateWithMarkPaidAction()
 | 
						|
    {
 | 
						|
        $invoice = $this->bootNewInvoice();
 | 
						|
 | 
						|
        $this->assertEquals($invoice->balance, 0);
 | 
						|
        $this->assertEquals($invoice->paid_to_date, 0);
 | 
						|
 | 
						|
        $invoice->service()->markSent()->save();
 | 
						|
 | 
						|
        $this->assertEquals($invoice->balance, 20);
 | 
						|
 | 
						|
        $invoice = $invoice->service()->markPaid()->save();
 | 
						|
 | 
						|
        $this->assertEquals($invoice->paid_to_date, 20);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPaidToDateWithInvoiceCancellation()
 | 
						|
    {
 | 
						|
        $invoice = $this->bootNewInvoice();
 | 
						|
 | 
						|
        $invoice = $invoice->service()->markPaid()->save();
 | 
						|
 | 
						|
        $this->assertEquals(20, $invoice->paid_to_date);
 | 
						|
 | 
						|
        $invoice->service()->handleReversal()->save();
 | 
						|
 | 
						|
        $this->assertEquals(0, $invoice->paid_to_date);
 | 
						|
    }
 | 
						|
 | 
						|
    private function bootNewInvoice()
 | 
						|
    {
 | 
						|
        $data = [
 | 
						|
            'name' => 'A Nice Client',
 | 
						|
        ];
 | 
						|
 | 
						|
        $response = $this->withHeaders([
 | 
						|
            'X-API-SECRET' => config('ninja.api_secret'),
 | 
						|
            'X-API-TOKEN' => $this->token,
 | 
						|
        ])->post('/api/v1/clients', $data);
 | 
						|
 | 
						|
        $response->assertStatus(200);
 | 
						|
 | 
						|
        $arr = $response->json();
 | 
						|
 | 
						|
        $client_hash_id = $arr['data']['id'];
 | 
						|
        $client = Client::find($this->decodePrimaryKey($client_hash_id));
 | 
						|
 | 
						|
        $this->assertEquals($client->balance, 0);
 | 
						|
        $this->assertEquals($client->paid_to_date, 0);
 | 
						|
        //create new invoice.
 | 
						|
 | 
						|
        $line_items = [];
 | 
						|
 | 
						|
        $item = InvoiceItemFactory::create();
 | 
						|
        $item->quantity = 1;
 | 
						|
        $item->cost = 10;
 | 
						|
 | 
						|
        $line_items[] = (array) $item;
 | 
						|
 | 
						|
        $item = InvoiceItemFactory::create();
 | 
						|
        $item->quantity = 1;
 | 
						|
        $item->cost = 10;
 | 
						|
 | 
						|
        $line_items[] = (array) $item;
 | 
						|
 | 
						|
        $invoice = [
 | 
						|
            'status_id' => 1,
 | 
						|
            'number' => '',
 | 
						|
            'discount' => 0,
 | 
						|
            'is_amount_discount' => 1,
 | 
						|
            'po_number' => '3434343',
 | 
						|
            'public_notes' => 'notes',
 | 
						|
            'is_deleted' => 0,
 | 
						|
            'custom_value1' => 0,
 | 
						|
            'custom_value2' => 0,
 | 
						|
            'custom_value3' => 0,
 | 
						|
            'custom_value4' => 0,
 | 
						|
            'client_id' => $client_hash_id,
 | 
						|
            'line_items' => (array) $line_items,
 | 
						|
        ];
 | 
						|
 | 
						|
        $response = $this->withHeaders([
 | 
						|
            'X-API-SECRET' => config('ninja.api_secret'),
 | 
						|
            'X-API-TOKEN' => $this->token,
 | 
						|
        ])->post('/api/v1/invoices/', $invoice)
 | 
						|
            ->assertStatus(200);
 | 
						|
 | 
						|
        $arr = $response->json();
 | 
						|
 | 
						|
        $invoice_one_hashed_id = $arr['data']['id'];
 | 
						|
 | 
						|
        return Invoice::find($this->decodePrimaryKey($invoice_one_hashed_id));
 | 
						|
    }
 | 
						|
}
 |