mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
f59585dd62
* Update client paid to date job: * Backup Invoice HTML when invoice is marked as sent and paid * Store HTML of invoice when invoice was paid * Fix foreign keys in db schema * V2 Endpoints for Company Migrations * Fixes for tests
96 lines
2.2 KiB
PHP
96 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Feature;
|
|
|
|
use App\Jobs\Account\CreateAccount;
|
|
use App\Models\Account;
|
|
use App\Models\Client;
|
|
use App\Models\Company;
|
|
use App\Models\Invoice;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\UserSessionAttributes;
|
|
use Faker\Factory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
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();
|
|
|
|
$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);
|
|
|
|
DB::statement( 'DELETE FROM `clients` WHERE `company_id`=:company_id', array('company_id' => $this->company->id) );
|
|
|
|
$co = Client::whereCompanyId($this->company->id)->get();
|
|
$inv = Invoice::whereCompanyId($this->company->id)->get();
|
|
|
|
$this->assertEquals($co->count(),0);
|
|
$this->assertEquals($inv->count(),0);
|
|
|
|
$this->assertNotNull($this->company);
|
|
$this->assertNotNull($this->company->settings);
|
|
$this->assertNotNull($this->company->settings->timezone_id);
|
|
|
|
}
|
|
} |