mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
104 lines
3.1 KiB
PHP
104 lines
3.1 KiB
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class BaseTest extends \Codeception\TestCase\Test
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
protected function _before()
|
|
{
|
|
Artisan::call('migrate');
|
|
\App\Models\Setting::factory()->create();
|
|
}
|
|
|
|
protected function signIn($user = null)
|
|
{
|
|
if (! $user) {
|
|
$user = User::factory()->superuser()->create([
|
|
'location_id' => $this->createValidLocation()->id,
|
|
]);
|
|
}
|
|
Auth::login($user);
|
|
|
|
return $user;
|
|
}
|
|
|
|
protected function createValidAssetModel($state = 'mbp-13-model', $overrides = [])
|
|
{
|
|
return \App\Models\AssetModel::factory()->state()->create(array_merge([
|
|
'category_id' => $this->createValidCategory(),
|
|
'manufacturer_id' => $this->createValidManufacturer(),
|
|
'depreciation_id' => $this->createValidDepreciation(),
|
|
], $overrides));
|
|
}
|
|
|
|
protected function createValidCategory($state = 'asset-laptop-category', $overrides = [])
|
|
{
|
|
return \App\Models\Category::factory()->state()->create($overrides);
|
|
}
|
|
|
|
protected function createValidCompany($overrides = [])
|
|
{
|
|
return \App\Models\Company::factory()->create($overrides);
|
|
}
|
|
|
|
protected function createValidDepartment($state = 'engineering', $overrides = [])
|
|
{
|
|
return \App\Models\Department::factory()->state()->create(array_merge([
|
|
'location_id' => $this->createValidLocation()->id,
|
|
], $overrides));
|
|
}
|
|
|
|
protected function createValidDepreciation($state = 'computer', $overrides = [])
|
|
{
|
|
return \App\Models\Depreciation::factory()->state()->create($overrides);
|
|
}
|
|
|
|
protected function createValidLocation($overrides = [])
|
|
{
|
|
return \App\Models\Location::factory()->create($overrides);
|
|
}
|
|
|
|
protected function createValidManufacturer($state = 'apple', $overrides = [])
|
|
{
|
|
return \App\Models\Manufacturer::factory()->state()->create($overrides);
|
|
}
|
|
|
|
protected function createValidSupplier($overrides = [])
|
|
{
|
|
return \App\Models\Supplier::factory()->create($overrides);
|
|
}
|
|
|
|
protected function createValidStatuslabel($state = 'rtd', $overrides = [])
|
|
{
|
|
return \App\Models\Statuslabel::factory()->state()->create($overrides);
|
|
}
|
|
|
|
protected function createValidUser($overrides = [])
|
|
{
|
|
return \App\Models\User::factory()->create(
|
|
array_merge([
|
|
'location_id'=>$this->createValidLocation()->id,
|
|
], $overrides)
|
|
);
|
|
}
|
|
|
|
protected function createValidAsset($overrides = [])
|
|
{
|
|
$locId = $this->createValidLocation()->id;
|
|
$this->createValidAssetModel();
|
|
|
|
return \App\Models\Asset::factory()->laptopMbp()->create(
|
|
array_merge([
|
|
'rtd_location_id' => $locId,
|
|
'location_id' => $locId,
|
|
'supplier_id' => $this->createValidSupplier()->id,
|
|
], $overrides)
|
|
);
|
|
}
|
|
}
|