2019-11-20 06:41:49 +01:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-10-28 11:10:49 +01:00
|
|
|
namespace Tests\Feature;
|
2019-11-20 06:41:49 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
2020-01-27 21:56:48 +01:00
|
|
|
|
2019-11-20 06:41:49 +01:00
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCompanyExists()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
$co = Company::find($this->company->id);
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
// $this->assertNull($this->company);
|
|
|
|
$this->assertNotNull($co);
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testThatCompanyDeletesCompletely()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
$company_id = $this->company->id;
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->company->delete();
|
|
|
|
$this->company->fresh();
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$co = Company::find($company_id);
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
// $this->assertNull($this->company);
|
|
|
|
$this->assertNull($co);
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCompanyChildDeletes()
|
|
|
|
{
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
$this->assertNotNull($this->company);
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$co = Client::whereCompanyId($this->company->id)->get();
|
|
|
|
$inv = Invoice::whereCompanyId($this->company->id)->get();
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->assertEquals($co->count(), 1);
|
|
|
|
$this->assertEquals($inv->count(), 1);
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|
2020-01-27 21:56:48 +01:00
|
|
|
}
|