firefly-iii/database/factories/ModelFactory.php

252 lines
8.4 KiB
PHP
Raw Normal View History

<?php
2017-12-10 02:02:26 -06: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 07:43:34 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-12-10 02:02:26 -06:00
*/
2017-03-25 07:41:17 -05:00
declare(strict_types=1);
use Carbon\Carbon;
2018-07-01 11:31:02 -05:00
$factory->define(
FireflyIII\Models\Attachment::class,
function (Faker\Generator $faker) {
return [
'user_id' => 1,
'attachable_id' => 1,
'attachable_type' => \FireflyIII\Models\TransactionJournal::class,
'md5' => md5($faker->words(6, true)),
'mime' => 'text/plain',
'size' => 1,
'filename' => 'ok',
'uploaded' => true,
];
}
);
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\CurrencyExchangeRate::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
);
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\TransactionCurrency::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06:00
'name' => $faker->words(1, true),
'code' => 'ABC',
'symbol' => 'x',
];
2017-11-15 03:53:17 -06:00
}
);
2017-03-18 05:02:02 -05:00
2017-03-19 11:54:21 -05:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\ImportJob::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
2017-03-19 11:54:21 -05:00
);
2017-03-18 05:02:02 -05:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\TransactionJournal::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
2017-03-18 05:02:02 -05:00
);
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\Bill::class,
function (Faker\Generator $faker) {
return [
2018-04-14 14:21:20 -05:00
'created_at' => new Carbon,
'updated_at' => new Carbon,
'user_id' => 1,
'transaction_currency_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,
'automatch' => 1,
2017-11-22 14:12:27 -06:00
];
2017-11-15 03:53:17 -06:00
}
2017-03-18 05:02:02 -05:00
);
2017-04-28 00:51:09 -05:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\PiggyBankRepetition::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
2017-04-28 00:51:09 -05:00
);
2017-03-17 10:34:57 -05:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\PiggyBank::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06:00
'id' => $faker->unique()->numberBetween(100, 10000),
2018-04-27 04:29:09 -05:00
'created_at' => new Carbon,
'updated_at' => new Carbon,
2017-11-22 14:12:27 -06:00
'account_id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
'target_amount' => '1000.00',
2018-04-27 04:29:09 -05:00
'startdate' => new Carbon('2017-01-01'),
2017-11-22 14:12:27 -06:00
'order' => 1,
'active' => 1,
'encrypted' => 0,
];
2017-11-15 03:53:17 -06:00
}
2017-03-17 10:34:57 -05:00
);
2017-03-05 06:21:36 -06:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\Tag::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06:00
'id' => $faker->unique()->numberBetween(200, 10000),
'user_id' => 1,
'tagMode' => 'nothing',
'tag' => $faker->words(1, true),
];
2017-11-15 03:53:17 -06:00
}
2017-03-05 06:21:36 -06:00
);
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\Category::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06:00
'id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
];
2017-11-15 03:53:17 -06:00
}
2017-03-05 06:21:36 -06:00
);
2017-03-05 04:18:34 -06:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\Budget::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06:00
'id' => $faker->numberBetween(1, 10),
'name' => $faker->words(3, true),
];
2017-11-15 03:53:17 -06:00
}
2017-03-05 04:18:34 -06:00
);
2017-03-12 03:22:33 -05:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\PiggyBankEvent::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
2017-03-12 03:22:33 -05:00
);
2017-03-12 01:38:13 -06:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\BudgetLimit::class,
function (Faker\Generator $faker) {
return [
2017-11-22 14:12:27 -06: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 03:53:17 -06:00
}
2017-03-12 01:38:13 -06:00
);
2017-03-04 04:20:57 -06:00
$factory->define(
2017-11-15 03:53:17 -06:00
FireflyIII\Models\Transaction::class,
function (Faker\Generator $faker) {
return [
2018-04-02 07:17:11 -05:00
'transaction_amount' => (string)$faker->randomFloat(2, -100, 100),
'destination_amount' => (string)$faker->randomFloat(2, -100, 100),
2017-11-22 14:12:27 -06:00
'opposing_account_id' => $faker->numberBetween(1, 10),
2018-07-01 11:31:02 -05:00
'source_id' => $faker->numberBetween(1, 10),
2017-11-22 14:12:27 -06:00
'opposing_account_name' => $faker->words(3, true),
'description' => $faker->words(3, true),
2018-07-01 11:31:02 -05:00
'source_name' => $faker->words(3, true),
'destination_id' => $faker->numberBetween(1, 10),
2017-11-22 14:12:27 -06:00
'date' => new Carbon,
2018-07-01 11:31:02 -05:00
'destination_name' => $faker->words(3, true),
2018-04-02 07:17:11 -05:00
'amount' => (string)$faker->randomFloat(2, -100, 100),
2017-11-22 14:12:27 -06:00
'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 03:53:17 -06:00
}
2017-07-07 01:09:42 -05:00
);