More test data and an actual test.

This commit is contained in:
James Cole 2016-01-17 07:18:35 +01:00
parent 2b6790f83f
commit b13b58a2b2
4 changed files with 88 additions and 1 deletions

View File

@ -1,5 +1,7 @@
<?php
use FireflyIII\Models\Account;
use FireflyIII\Models\AccountMeta;
use FireflyIII\User;
use Illuminate\Database\Seeder;
@ -15,7 +17,45 @@ class TestDataSeeder extends Seeder
*/
public function run()
{
User::create(['email' => 'thegrumpydictator@gmail.com', 'password' => bcrypt('james'), 'reset' => null, 'remember_token' => null]);
$user = User::create(['email' => 'thegrumpydictator@gmail.com', 'password' => bcrypt('james'), 'reset' => null, 'remember_token' => null]);
$emptyUser = User::create(['email' => 'thegrumpydictator+empty@gmail.com', 'password' => bcrypt('james'), 'reset' => null, 'remember_token' => null]);
// create asset accounts for user #1.
$this->createAssetAccounts($user);
}
/**
* @param User $user
*/
private function createAssetAccounts(User $user)
{
$assets = ['TestData Checking Account', 'TestData Savings', 'TestData Shared', 'TestData Creditcard', 'Emergencies', 'STE'];
$ibans = ['NL47JDYU6179706202', 'NL51WGBP5832453599', 'NL81RCQZ7160379858', 'NL19NRAP2367994221', 'NL40UKBK3619908726', 'NL38SRMN4325934708'];
$assetMeta = [
['accountRole' => 'defaultAsset'],
['accountRole' => 'savingAsset',],
['accountRole' => 'sharedAsset',],
['accountRole' => 'ccAsset', 'ccMonthlyPaymentDate' => '2015-05-27', 'ccType' => 'monthlyFull',],
['accountRole' => 'savingAsset',],
['accountRole' => 'savingAsset',],
];
foreach ($assets as $index => $name) {
// create account:
$account = Account::create(
[
'user_id' => $user->id,
'account_type_id' => 3,
'name' => $name,
'active' => 1,
'encrypted' => 1,
'iban' => $ibans[$index],
]
);
foreach ($assetMeta[$index] as $name => $value) {
AccountMeta::create(['account_id' => $account->id, 'name' => $name, 'data' => $value,]);
}
}
}
}

View File

@ -13,5 +13,6 @@ class BasicTest extends TestCase
public function testExample()
{
$this->assertTrue(true);
}
}

View File

@ -1,5 +1,6 @@
<?php
use Carbon\Carbon;
use FireflyIII\User;
/**
* Class TestCase
@ -27,6 +28,23 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
return $app;
}
/**
* @return User
*/
public function user()
{
return User::find(1);
}
/**
* @return User
*/
public function emptyUser()
{
return User::find(2);
}
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.

View File

@ -0,0 +1,28 @@
<?php
/**
* HomeControllerTest.php
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
class HomeControllerTest extends TestCase
{
public function testDateRange()
{
$this->be($this->user());
$args = [
'start' => '2012-01-01',
'end' => '2012-04-01',
];
// if date range is > 50, should have flash.
$response = $this->call('POST', '/daterange', $args);
$this->assertEquals(200, $response->status());
$this->assertSessionHas('warning', '91 days of data may take a while to load.');
}
}