Files
firefly-iii/database/factories/ModelFactory.php

270 lines
8.8 KiB
PHP
Raw Normal View History

<?php
2017-12-10 09:02:26 +01:00
/**
* ModelFactory.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:43:34 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-12-10 09:02:26 +01:00
*/
2017-03-25 13:41:17 +01:00
declare(strict_types=1);
use Carbon\Carbon;
2016-09-16 06:19:40 +02:00
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding your
| database. Just tell the factory how a default model should look.
|
*/
2016-05-20 08:57:45 +02:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\User::class,
function (Faker\Generator $faker) {
static $password;
2017-11-15 10:53:17 +01:00
return [
2017-11-22 21:12:27 +01:00
'email' => $faker->safeEmail,
'password' => $password ?: $password = bcrypt('secret'),
'remember_token' => str_random(10),
];
2017-11-15 10:53:17 +01:00
}
);
2017-03-04 11:20:57 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\CurrencyExchangeRate::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'user_id' => 1,
'from_currency_id' => 1,
'to_currency_id' => 2,
'date' => '2017-01-01',
'rate' => '1.5',
'user_rate' => null,
];
2017-11-15 10:53:17 +01:00
}
);
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\TransactionCurrency::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'name' => $faker->words(1, true),
'code' => 'ABC',
'symbol' => 'x',
];
2017-11-15 10:53:17 +01:00
}
);
2017-03-18 11:02:02 +01:00
2017-03-19 17:54:21 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\ImportJob::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->numberBetween(1, 100),
'user_id' => 1,
'key' => $faker->words(1, true),
'file_type' => 'csv',
'status' => 'import_status_never_started',
'configuration' => null,
'extended_status' => [
'total_steps' => 0,
'steps_done' => 0,
'import_count' => 0,
'importTag' => 0,
'errors' => [],
],
];
2017-11-15 10:53:17 +01:00
}
2017-03-19 17:54:21 +01:00
);
2017-03-18 11:02:02 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\TransactionJournal::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->unique()->numberBetween(1000, 10000),
'user_id' => 1,
'transaction_type_id' => 1,
'bill_id' => null,
'transaction_currency_id' => 1,
'description' => $faker->words(3, true),
'date' => '2017-01-01',
'interest_date' => null,
'book_date' => null,
'process_date' => null,
'order' => 0,
'tag_count' => 0,
'encrypted' => 0,
'completed' => 1,
];
2017-11-15 10:53:17 +01:00
}
2017-03-18 11:02:02 +01:00
);
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Bill::class,
function (Faker\Generator $faker) {
return [
2018-02-17 12:24:29 +01:00
'created_at' => new Carbon,
'updated_at' => new Carbon,
2017-11-22 21:12:27 +01:00
'user_id' => 1,
'name' => $faker->words(3, true),
'match' => $faker->words(3, true),
'amount_min' => '100.00',
'amount_max' => '100.00',
'date' => '2017-01-01',
'repeat_freq' => 'monthly',
'skip' => 0,
2018-02-18 10:31:15 +01:00
'automatch' => 1
2017-11-22 21:12:27 +01:00
];
2017-11-15 10:53:17 +01:00
}
2017-03-18 11:02:02 +01:00
);
2017-04-28 07:51:09 +02:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\PiggyBankRepetition::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->unique()->numberBetween(100, 10000),
'piggy_bank_id' => $faker->numberBetween(1, 10),
'startdate' => '2017-01-01',
'targetdate' => '2020-01-01',
'currentamount' => 10,
];
2017-11-15 10:53:17 +01:00
}
2017-04-28 07:51:09 +02:00
);
2017-03-17 16:34:57 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\PiggyBank::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->unique()->numberBetween(100, 10000),
'account_id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
'target_amount' => '1000.00',
'startdate' => '2017-01-01',
'order' => 1,
'active' => 1,
'encrypted' => 0,
];
2017-11-15 10:53:17 +01:00
}
2017-03-17 16:34:57 +01:00
);
2017-03-05 13:21:36 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Tag::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->unique()->numberBetween(200, 10000),
'user_id' => 1,
'tagMode' => 'nothing',
'tag' => $faker->words(1, true),
];
2017-11-15 10:53:17 +01:00
}
2017-03-05 13:21:36 +01:00
);
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Category::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
];
2017-11-15 10:53:17 +01:00
}
2017-03-05 13:21:36 +01:00
);
2017-03-05 11:18:34 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Budget::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
];
2017-11-15 10:53:17 +01:00
}
2017-03-05 11:18:34 +01:00
);
2017-03-12 09:22:33 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\PiggyBankEvent::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->numberBetween(1, 10),
'piggy_bank_id' => $faker->numberBetween(1, 10),
'transaction_journal_id' => $faker->numberBetween(1, 10),
'date' => $faker->date('Y-m-d'),
'amount' => '100',
];
2017-11-15 10:53:17 +01:00
}
2017-03-12 09:22:33 +01:00
);
2017-03-12 08:38:13 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\BudgetLimit::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->numberBetween(1, 10),
'start_date' => '2017-01-01',
'end_date' => '2017-01-31',
'amount' => '300',
'budget_id' => $faker->numberBetween(1, 6),
];
2017-11-15 10:53:17 +01:00
}
2017-03-12 08:38:13 +01:00
);
2017-03-04 19:14:36 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Account::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'id' => $faker->unique()->numberBetween(1000, 10000),
2018-02-17 12:33:42 +01:00
'user_id' => 1,
2018-02-16 22:14:34 +01:00
'created_at' => new Carbon,
'updated_at' => new Carbon,
2017-11-22 21:12:27 +01:00
'name' => $faker->words(3, true),
'account_type_id' => 1,
'active' => true,
];
2017-11-15 10:53:17 +01:00
}
2017-03-04 19:14:36 +01:00
);
2017-03-04 11:20:57 +01:00
$factory->define(
2017-11-15 10:53:17 +01:00
FireflyIII\Models\Transaction::class,
function (Faker\Generator $faker) {
return [
2017-11-22 21:12:27 +01:00
'transaction_amount' => strval($faker->randomFloat(2, -100, 100)),
'destination_amount' => strval($faker->randomFloat(2, -100, 100)),
'opposing_account_id' => $faker->numberBetween(1, 10),
'source_account_id' => $faker->numberBetween(1, 10),
'opposing_account_name' => $faker->words(3, true),
'description' => $faker->words(3, true),
'source_account_name' => $faker->words(3, true),
'destination_account_id' => $faker->numberBetween(1, 10),
'date' => new Carbon,
'destination_account_name' => $faker->words(3, true),
'amount' => strval($faker->randomFloat(2, -100, 100)),
'budget_id' => 0,
'category' => $faker->words(3, true),
'transaction_journal_id' => $faker->numberBetween(1, 10),
'journal_id' => $faker->numberBetween(1, 10),
'transaction_currency_code' => 'EUR',
'transaction_type_type' => 'Withdrawal',
'account_encrypted' => 0,
'account_name' => 'Some name',
'transaction_currency_id' => 1,
'transaction_currency_symbol' => '€',
'foreign_destination_amount' => null,
'foreign_currency_id' => null,
'foreign_currency_code' => null,
'foreign_currency_symbol' => null,
];
2017-11-15 10:53:17 +01:00
}
2017-07-07 08:09:42 +02:00
);