mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
5d4920c741
* Improvemenets to unit tests. * Break up modelfactory into multiple files, populate many states. * Begin testing validation at the unit test level, test relationships. * Add tests for Asset::availableForCheckout. * Model factories now generate all needed relationships on demand, which allows us to unit test with a empty database. * To faciliate the empty database, we move to using sqlite in memory as the unit testing database. * Fix bug with logs of checkouts to non users. * Fix location finding for assets. Also Fix location show page to show users associated with location. Still need some work to show assets. * More test and generator improvements * More unit test fixes. PermissionsTest is borked still. * More Updates * Rewrite permissionstest. Check that we have access on the model level rather than via web requests. Also test delete permissions. * Fix seeders. * Make the default asset model factory generate assets that are rtd for testing. * Save progress. * Rebase tests, fix department unit test, update database for functional tests. * Update functional and api tests to use new modelfactory signatures.
107 lines
3.4 KiB
PHP
107 lines
3.4 KiB
PHP
<?php
|
|
|
|
use App\Models\Asset;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Model Factories
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Factories related exclusively to modelling assets.
|
|
|
|
|
*/
|
|
|
|
$factory->define(Asset::class, function (Faker\Generator $faker) {
|
|
return [
|
|
'name' => $faker->catchPhrase,
|
|
'model_id' => function () {
|
|
return factory(App\Models\AssetModel::class)->create()->id;
|
|
},
|
|
'rtd_location_id' => function () {
|
|
return factory(App\Models\Location::class)->create()->id;
|
|
},
|
|
'serial' => $faker->uuid,
|
|
'status_id' => function () {
|
|
return factory(App\Models\Statuslabel::class)->states('rtd')->create()->id;
|
|
},
|
|
'user_id' => function () {
|
|
return factory(App\Models\User::class)->create()->id;
|
|
},
|
|
'asset_tag' => $faker->unixTime('now'),
|
|
'notes' => $faker->sentence,
|
|
'purchase_date' => $faker->dateTime(),
|
|
'purchase_cost' => $faker->randomFloat(2),
|
|
'order_number' => $faker->numberBetween(1000000, 50000000),
|
|
'supplier_id' => function () {
|
|
return factory(App\Models\Supplier::class)->create()->id;
|
|
},
|
|
'company_id' => function () {
|
|
return factory(App\Models\Company::class)->create()->id;
|
|
},
|
|
'requestable' => $faker->boolean()
|
|
];
|
|
});
|
|
|
|
$factory->state(Asset::class, 'deleted', function ($faker) {
|
|
return [
|
|
'deleted_at' => $faker->dateTime(),
|
|
];
|
|
});
|
|
|
|
$factory->state(Asset::class, 'assigned-to-user', function ($faker) {
|
|
return [
|
|
'assigned_to' => factory(App\Models\User::class)->create()->id,
|
|
'assigned_type' => App\Models\User::class,
|
|
];
|
|
});
|
|
|
|
$factory->state(Asset::class, 'assigned-to-location', function ($faker) {
|
|
return [
|
|
'assigned_to' => factory(App\Models\Location::class)->create()->id,
|
|
'assigned_type' => App\Models\Location::class,
|
|
];
|
|
});
|
|
|
|
$factory->state(Asset::class, 'assigned-to-asset', function ($faker) {
|
|
return [
|
|
'assigned_to' => factory(App\Models\Asset::class)->create()->id,
|
|
'assigned_type' => App\Models\Asset::class,
|
|
];
|
|
});
|
|
|
|
|
|
$factory->define(App\Models\AssetModel::class, function (Faker\Generator $faker) {
|
|
return [
|
|
'name' => $faker->catchPhrase,
|
|
'manufacturer_id' => function () {
|
|
return factory(App\Models\Manufacturer::class)->create()->id;
|
|
},
|
|
'category_id' => function () {
|
|
return factory(App\Models\Category::class)->states('asset-category')->create()->id;
|
|
},
|
|
'model_number' => $faker->numberBetween(1000000, 50000000),
|
|
'eol' => 1,
|
|
'notes' => $faker->paragraph(),
|
|
'requestable' => $faker->boolean(),
|
|
'depreciation_id' => function () {
|
|
return factory(App\Models\Depreciation::class)->create()->id;
|
|
},
|
|
];
|
|
});
|
|
|
|
$factory->define(App\Models\AssetMaintenance::class, function (Faker\Generator $faker) {
|
|
return [
|
|
'asset_id' => function () {
|
|
return factory(App\Models\Asset::class)->create()->id;
|
|
},
|
|
'supplier_id' => function () {
|
|
return factory(App\Models\Supplier::class)->create()->id;
|
|
},
|
|
'asset_maintenance_type' => $faker->randomElement(['maintenance', 'repair', 'upgrade']),
|
|
'title' => $faker->sentence,
|
|
'start_date' => $faker->date(),
|
|
'is_warranty' => $faker->boolean(),
|
|
'notes' => $faker->paragraph(),
|
|
];
|
|
});
|