mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
c2616412c0
* Add laravel routes to javascript This will clean up a lot of passing of urls. Adds a route() helper and everything... This commit also moves the customfield fetching to only be fetched once and shared with each file, rather than once for each file. * Try to fix travis unit test things. * Downgrade doctrine/inflector for php5 * Attempt to occasional seeder issues on travis if the asset does not generate validatable data. * Update sql dump for functional tests. * Try to fix api tests.
114 lines
4.4 KiB
PHP
114 lines
4.4 KiB
PHP
<?php
|
|
|
|
use App\Models\Actionlog;
|
|
|
|
$factory->defineAs(App\Models\Actionlog::class, 'asset-upload', function ($faker) {
|
|
$asset = factory(App\Models\Asset::class)->create();
|
|
return [
|
|
'item_type' => get_class($asset),
|
|
'item_id' => $asset->id,
|
|
'user_id' => function () {
|
|
return factory(App\Models\User::class)->create()->id;
|
|
},
|
|
'filename' => $faker->word,
|
|
'action_type' => 'uploaded'
|
|
];
|
|
});
|
|
|
|
$factory->defineAs(Actionlog::class, 'asset-checkout', function (Faker\Generator $faker) {
|
|
$company = factory(App\Models\Company::class)->create();
|
|
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
do {
|
|
$item = factory(App\Models\Asset::class)->create(['company_id' => $company->id]);
|
|
} while (!$item->isValid());
|
|
// dd($item);
|
|
return [
|
|
'user_id' => $user->id,
|
|
'action_type' => 'checkout',
|
|
'item_id' => $item->id,
|
|
'item_type' => App\Models\Asset::class,
|
|
'target_id' => $target->id,
|
|
'target_type' => get_class($target),
|
|
'created_at' => $faker->dateTime(),
|
|
'note' => $faker->sentence,
|
|
'company_id' => $company->id
|
|
];
|
|
});
|
|
|
|
$factory->defineAs(Actionlog::class, 'license-checkout-asset', function (Faker\Generator $faker) {
|
|
$company = factory(App\Models\Company::class)->create();
|
|
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$target = factory(App\Models\Asset::class)->create(['company_id' => $company->id]);
|
|
$item = factory(App\Models\License::class)->create(['company_id' => $company->id]);
|
|
|
|
return [
|
|
'user_id' => $user->id,
|
|
'action_type' => 'checkout',
|
|
'item_id' => $item->id,
|
|
'item_type' => get_class($item),
|
|
'target_id' => $target->id,
|
|
'target_type' => get_class($target),
|
|
'created_at' => $faker->dateTime(),
|
|
'note' => $faker->sentence,
|
|
'company_id' => $company->id
|
|
];
|
|
});
|
|
|
|
$factory->defineAs(Actionlog::class, 'accessory-checkout', function (Faker\Generator $faker) {
|
|
$company = factory(App\Models\Company::class)->create();
|
|
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$item = factory(App\Models\Accessory::class)->create(['company_id' => $company->id]);
|
|
|
|
return [
|
|
'user_id' => $user->id,
|
|
'action_type' => 'checkout',
|
|
'item_id' => $item->id,
|
|
'item_type' => get_class($item),
|
|
'target_id' => $target->id,
|
|
'target_type' => get_class($target),
|
|
'created_at' => $faker->dateTime(),
|
|
'note' => $faker->sentence,
|
|
'company_id' => $company->id
|
|
];
|
|
});
|
|
|
|
$factory->defineAs(Actionlog::class, 'consumable-checkout', function (Faker\Generator $faker) {
|
|
$company = factory(App\Models\Company::class)->create();
|
|
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$item = factory(App\Models\Consumable::class)->create(['company_id' => $company->id]);
|
|
|
|
return [
|
|
'user_id' => $user->id,
|
|
'action_type' => 'checkout',
|
|
'item_id' => $item->id,
|
|
'item_type' => get_class($item),
|
|
'target_id' => $target->id,
|
|
'target_type' => get_class($target),
|
|
'created_at' => $faker->dateTime(),
|
|
'note' => $faker->sentence,
|
|
'company_id' => $company->id
|
|
];
|
|
});
|
|
|
|
$factory->defineAs(Actionlog::class, 'component-checkout', function (Faker\Generator $faker) {
|
|
$company = factory(App\Models\Company::class)->create();
|
|
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
|
|
$item = factory(App\Models\Component::class)->create(['company_id' => $company->id]);
|
|
|
|
return [
|
|
'user_id' => $user->id,
|
|
'action_type' => 'checkout',
|
|
'item_id' => $item->id,
|
|
'item_type' => get_class($item),
|
|
'target_id' => $target->id,
|
|
'target_type' => get_class($target),
|
|
'created_at' => $faker->dateTime(),
|
|
'note' => $faker->sentence,
|
|
'company_id' => $company->id
|
|
];
|
|
});
|