mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-28 15:12:52 -04: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
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 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\Models\Client;
 | |
| use App\Models\Company;
 | |
| use App\Models\Invoice;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Illuminate\Support\Facades\Session;
 | |
| use Tests\MockAccountData;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  * @covers App\Http\Controllers\MigrationController
 | |
|  */
 | |
| class MigrationTest extends TestCase
 | |
| {
 | |
|     use DatabaseTransactions;
 | |
|     use MockAccountData;
 | |
| 
 | |
|     protected function setUp() :void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         Session::start();
 | |
| 
 | |
|         $this->faker = \Faker\Factory::create();
 | |
| 
 | |
|         Model::reguard();
 | |
| 
 | |
|         $this->makeTestData();
 | |
|     }
 | |
| 
 | |
|     public function testCompanyExists()
 | |
|     {
 | |
|         $co = Company::find($this->company->id);
 | |
| 
 | |
|         // $this->assertNull($this->company);
 | |
|         $this->assertNotNull($co);
 | |
|     }
 | |
| 
 | |
|     public function testThatCompanyDeletesCompletely()
 | |
|     {
 | |
|         $company_id = $this->company->id;
 | |
| 
 | |
|         $this->company->delete();
 | |
|         $this->company->fresh();
 | |
| 
 | |
|         $co = Company::find($company_id);
 | |
| 
 | |
|         // $this->assertNull($this->company);
 | |
|         $this->assertNull($co);
 | |
|     }
 | |
| 
 | |
|     public function testCompanyChildDeletes()
 | |
|     {
 | |
|         $this->makeTestData();
 | |
| 
 | |
|         $this->assertNotNull($this->company);
 | |
| 
 | |
|         $co = Client::whereCompanyId($this->company->id)->get();
 | |
|         $inv = Invoice::whereCompanyId($this->company->id)->get();
 | |
| 
 | |
|         $this->assertEquals($co->count(), 1);
 | |
|         $this->assertEquals($inv->count(), 1);
 | |
|     }
 | |
| }
 |