mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:27:31 -05:00 
			
		
		
		
	From the [PHPUnit 8 release notes][1], the `TestCase` methods below now declare a `void` return type: - `setUpBeforeClass()` - `setUp()` - `assertPreConditions()` - `assertPostConditions()` - `tearDown()` - `tearDownAfterClass()` - `onNotSuccessfulTest()` [1]: https://phpunit.de/announcements/phpunit-8.html
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.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\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseTransactions;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
use Tests\MockAccountData;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
class InvoiceLinkTasksTest 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();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testMapCreation()
 | 
						|
    {
 | 
						|
        $temp_invoice_id = $this->invoice->id;
 | 
						|
 | 
						|
        $tasks = collect($this->invoice->line_items)->map(function ($item) {
 | 
						|
            if (isset($item->task_id)) {
 | 
						|
                $item->task_id = $this->decodePrimaryKey($item->task_id);
 | 
						|
            }
 | 
						|
 | 
						|
            if (isset($item->expense_id)) {
 | 
						|
                $item->expense_id = $this->decodePrimaryKey($item->expense_id);
 | 
						|
            }
 | 
						|
 | 
						|
            return $item;
 | 
						|
        });
 | 
						|
 | 
						|
        $this->assertEquals($tasks->first()->task_id, $this->task->id);
 | 
						|
        $this->assertEquals($tasks->first()->expense_id, $this->expense->id);
 | 
						|
 | 
						|
        $this->invoice = $this->invoice->service()->linkEntities()->save();
 | 
						|
 | 
						|
        $this->assertEquals($this->task->fresh()->invoice_id, $temp_invoice_id);
 | 
						|
        $this->assertEquals($this->expense->fresh()->invoice_id, $temp_invoice_id);
 | 
						|
    }
 | 
						|
}
 |