mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Avoid populating db manually. (#5255)
* Avoid populating db manually. Instead rely on a seeded database existing and use api/fucntional tests based on that. * Seed the Setting object with default values. * Update Setting seeder to match web default. Also only generate one Setting instance.
This commit is contained in:
parent
e9d9c0c42d
commit
69478aea58
|
@ -86,10 +86,10 @@ $factory->define(App\Models\Setting::class, function ($faker) {
|
||||||
'site_name' => $faker->sentence,
|
'site_name' => $faker->sentence,
|
||||||
'auto_increment_assets' => false,
|
'auto_increment_assets' => false,
|
||||||
'alert_email' => $faker->safeEmail(),
|
'alert_email' => $faker->safeEmail(),
|
||||||
'alerts_enabled' => false,
|
'alerts_enabled' => true,
|
||||||
'brand' => 1,
|
'brand' => 1,
|
||||||
'default_currency' => $faker->currencyCode,
|
'default_currency' => $faker->currencyCode,
|
||||||
'locale' => $faker->locale,
|
'locale' => $faker->locale,
|
||||||
'pwd_secure_min' => 5,
|
'pwd_secure_min' => 10, // Match web setup
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Illuminate\Database\Seeder;
|
use App\Models\Setting;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Seeder;
|
||||||
|
|
||||||
class DatabaseSeeder extends Seeder
|
class DatabaseSeeder extends Seeder
|
||||||
{
|
{
|
||||||
|
@ -33,6 +34,10 @@ class DatabaseSeeder extends Seeder
|
||||||
$this->call(ActionlogSeeder::class);
|
$this->call(ActionlogSeeder::class);
|
||||||
$this->call(CustomFieldSeeder::class);
|
$this->call(CustomFieldSeeder::class);
|
||||||
|
|
||||||
|
// Only create default settings if they do not exist in the db.
|
||||||
|
if(!Setting::first()) {
|
||||||
|
factory(Setting::class)->create();
|
||||||
|
}
|
||||||
Artisan::call('snipeit:sync-asset-locations', ['--output' => 'all']);
|
Artisan::call('snipeit:sync-asset-locations', ['--output' => 'all']);
|
||||||
$output = Artisan::output();
|
$output = Artisan::output();
|
||||||
\Log::info($output);
|
\Log::info($output);
|
||||||
|
|
1472
tests/_data/dump.sql
1472
tests/_data/dump.sql
File diff suppressed because one or more lines are too long
|
@ -9,4 +9,3 @@ modules:
|
||||||
dsn: 'mysql:host=localhost;dbname=snipeit_unit'
|
dsn: 'mysql:host=localhost;dbname=snipeit_unit'
|
||||||
user: 'travis'
|
user: 'travis'
|
||||||
password: ''
|
password: ''
|
||||||
populator: 'mysql -u travis snipeit_unit < tests/_data/dump.sql'
|
|
||||||
|
|
|
@ -7,13 +7,6 @@ modules:
|
||||||
depends: Laravel5
|
depends: Laravel5
|
||||||
timeout: 10
|
timeout: 10
|
||||||
- Asserts
|
- Asserts
|
||||||
- Db:
|
|
||||||
dsn: 'mysql:host=localhost;dbname=snipeittests'
|
|
||||||
user: 'snipeit_laravel'
|
|
||||||
password: ''
|
|
||||||
dump: tests/_data/dump.sql
|
|
||||||
populate: true
|
|
||||||
cleanup: false
|
|
||||||
config:
|
config:
|
||||||
- Laravel5:
|
- Laravel5:
|
||||||
environment_file: .env.tests
|
environment_file: .env.tests
|
||||||
|
|
|
@ -12,14 +12,6 @@ modules:
|
||||||
- Laravel5:
|
- Laravel5:
|
||||||
environment_file: .env.tests
|
environment_file: .env.tests
|
||||||
cleanup: true
|
cleanup: true
|
||||||
- Db:
|
|
||||||
dsn: 'mysql:host=localhost;dbname=snipeittests'
|
|
||||||
user: 'snipeit_laravel'
|
|
||||||
password: ''
|
|
||||||
dump: tests/_data/dump.sql
|
|
||||||
populate: true
|
|
||||||
populator: 'mysql -u snipeit_laravel snipeittests < tests/_data/dump.sql'
|
|
||||||
cleanup: false
|
|
||||||
- REST:
|
- REST:
|
||||||
depends: Laravel5
|
depends: Laravel5
|
||||||
groups:
|
groups:
|
||||||
|
|
Loading…
Reference in a new issue