mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-24 08:00:12 -06:00
Test catches some exceptions.
This commit is contained in:
parent
2aaafc54ee
commit
47709dfc7c
BIN
storage/database/databasecopy.sqlite
Normal file → Executable file
BIN
storage/database/databasecopy.sqlite
Normal file → Executable file
Binary file not shown.
@ -40,7 +40,8 @@ class AccountControllerTest extends TestCase
|
|||||||
public function testDelete()
|
public function testDelete()
|
||||||
{
|
{
|
||||||
$this->be($this->user());
|
$this->be($this->user());
|
||||||
$response = $this->get(route('accounts.delete', [1]));
|
$account = $this->user()->accounts()->where('account_type_id', 3)->whereNull('deleted_at')->first();
|
||||||
|
$response = $this->get(route('accounts.delete', [$account->id]));
|
||||||
$response->assertStatus(200);
|
$response->assertStatus(200);
|
||||||
// has bread crumb
|
// has bread crumb
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
@ -53,12 +54,13 @@ class AccountControllerTest extends TestCase
|
|||||||
{
|
{
|
||||||
$this->session(['accounts.delete.url' => 'http://localhost/accounts/show/1']);
|
$this->session(['accounts.delete.url' => 'http://localhost/accounts/show/1']);
|
||||||
|
|
||||||
|
$account = $this->user()->accounts()->where('account_type_id', 3)->whereNull('deleted_at')->first();
|
||||||
$repository = $this->mock(AccountRepositoryInterface::class);
|
$repository = $this->mock(AccountRepositoryInterface::class);
|
||||||
$repository->shouldReceive('find')->withArgs([0])->once()->andReturn(new Account);
|
$repository->shouldReceive('find')->withArgs([0])->once()->andReturn(new Account);
|
||||||
$repository->shouldReceive('destroy')->andReturn(true);
|
$repository->shouldReceive('destroy')->andReturn(true);
|
||||||
|
|
||||||
$this->be($this->user());
|
$this->be($this->user());
|
||||||
$response = $this->post(route('accounts.destroy', [1]));
|
$response = $this->post(route('accounts.destroy', [$account->id]));
|
||||||
$response->assertStatus(302);
|
$response->assertStatus(302);
|
||||||
$response->assertSessionHas('success');
|
$response->assertSessionHas('success');
|
||||||
}
|
}
|
||||||
@ -69,7 +71,8 @@ class AccountControllerTest extends TestCase
|
|||||||
public function testEdit()
|
public function testEdit()
|
||||||
{
|
{
|
||||||
$this->be($this->user());
|
$this->be($this->user());
|
||||||
$response = $this->get(route('accounts.edit', [1]));
|
$account = $this->user()->accounts()->where('account_type_id', 3)->whereNull('deleted_at')->first();
|
||||||
|
$response = $this->get(route('accounts.edit', [$account->id]));
|
||||||
$response->assertStatus(200);
|
$response->assertStatus(200);
|
||||||
// has bread crumb
|
// has bread crumb
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
@ -93,6 +96,37 @@ class AccountControllerTest extends TestCase
|
|||||||
$response->assertSee('<ol class="breadcrumb">');
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\AccountController::show
|
||||||
|
* @covers \FireflyIII\Http\Controllers\AccountController::redirectToOriginalAccount
|
||||||
|
*/
|
||||||
|
public function testShowInitial()
|
||||||
|
{
|
||||||
|
$date = new Carbon;
|
||||||
|
$this->session(['start' => $date, 'end' => clone $date]);
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$account = $this->user()->accounts()->where('account_type_id', 6)->orderBy('id','DESC')->whereNull('deleted_at')->first();
|
||||||
|
$response = $this->get(route('accounts.show', [$account->id]));
|
||||||
|
$response->assertStatus(302);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\AccountController::show
|
||||||
|
* @covers \FireflyIII\Http\Controllers\AccountController::redirectToOriginalAccount
|
||||||
|
* @expectedExceptionMessage Expected a transaction
|
||||||
|
*/
|
||||||
|
public function testShowBrokenInitial()
|
||||||
|
{
|
||||||
|
$date = new Carbon;
|
||||||
|
$this->session(['start' => $date, 'end' => clone $date]);
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$account = $this->user()->accounts()->where('account_type_id', 6)->orderBy('id','ASC')->whereNull('deleted_at')->first();
|
||||||
|
$response = $this->get(route('accounts.show', [$account->id]));
|
||||||
|
$response->assertStatus(500);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\AccountController::show
|
* @covers \FireflyIII\Http\Controllers\AccountController::show
|
||||||
* @covers \FireflyIII\Http\Controllers\AccountController::periodEntries
|
* @covers \FireflyIII\Http\Controllers\AccountController::periodEntries
|
||||||
|
Loading…
Reference in New Issue
Block a user