be($bill->user); // CURRENCY: $currency = FactoryMuffin::create('FireflyIII\Models\TransactionCurrency'); Amount::shouldReceive('getDefaultCurrency')->andReturn($currency); Amount::shouldReceive('getAllCurrencies')->andReturn([$currency]); Amount::shouldReceive('getCurrencyCode')->andReturn('X'); $this->call('GET', '/bills/create'); $this->assertViewHas('subTitle', 'Create new bill'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\BillController::delete */ public function testDelete() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $this->be($bill->user); $this->call('GET', '/bills/delete/' . $bill->id); $this->assertViewHas('subTitle', 'Delete bill "' . e($bill->name) . '"'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\BillController::destroy */ public function testDestroy() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $this->be($bill->user); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $repository->shouldReceive('destroy')->andReturn(true); $this->call('POST', '/bills/destroy/' . $bill->id, ['_token' => 'replaceMe']); $this->assertSessionHas('success', 'The bill was deleted.'); $this->assertResponseStatus(302); } /** * @covers FireflyIII\Http\Controllers\BillController::edit */ public function testEdit() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $this->be($bill->user); // CURRENCY: $currency = FactoryMuffin::create('FireflyIII\Models\TransactionCurrency'); Amount::shouldReceive('getDefaultCurrency')->andReturn($currency); Amount::shouldReceive('getAllCurrencies')->andReturn([$currency]); Amount::shouldReceive('getCurrencyCode')->andReturn('X'); $this->call('GET', '/bills/edit/' . $bill->id); $this->assertViewHas('subTitle', 'Edit bill "' . e($bill->name) . '"'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\BillController::index */ public function testIndex() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $this->be($bill->user); $collection = new Collection; $collection->push($bill); Amount::shouldReceive('format')->andReturn('XX'); Amount::shouldReceive('getCurrencyCode')->andReturn('X'); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $repository->shouldReceive('getBills')->once()->andReturn($collection); $repository->shouldReceive('nextExpectedMatch')->with($bill)->andReturn(new Carbon); $repository->shouldReceive('lastFoundMatch')->with($bill)->andReturn(new Carbon); $this->call('GET', '/bills'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\BillController::rescan */ public function testRescan() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal'); $collection = new Collection; $this->be($bill->user); $collection->push($journal); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $repository->shouldReceive('getPossiblyRelatedJournals')->once()->andReturn($collection); $repository->shouldReceive('scan'); $this->call('GET', '/bills/rescan/' . $bill->id); $this->assertResponseStatus(302); $this->assertSessionHas('success', 'Rescanned everything.'); } /** * @covers FireflyIII\Http\Controllers\BillController::rescan */ public function testRescanInactive() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $bill->active = 0; $bill->save(); $this->be($bill->user); $this->call('GET', '/bills/rescan/' . $bill->id); $this->assertResponseStatus(302); $this->assertSessionHas('warning', 'Inactive bills cannot be scanned.'); } /** * @covers FireflyIII\Http\Controllers\BillController::show */ public function testShow() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal'); $collection = new Collection; $bill->save(); $this->be($bill->user); $collection->push($journal); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $repository->shouldReceive('getJournals')->once()->andReturn($collection); $repository->shouldReceive('nextExpectedMatch')->once()->andReturn(new Carbon); Amount::shouldReceive('format')->andReturn('XX'); Amount::shouldReceive('formatJournal')->andReturn('XX'); Amount::shouldReceive('getCurrencyCode')->andReturn('XX'); $this->call('GET', '/bills/show/' . $bill->id); } /** * @covers FireflyIII\Http\Controllers\BillController::store */ public function testStore() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $request = $this->mock('FireflyIII\Http\Requests\BillFormRequest'); $this->be($bill->user); $request->shouldReceive('getBillData')->once()->andReturn([]); $repository->shouldReceive('store')->with([])->andReturn($bill); $this->call('POST', '/bills/store', ['_token' => 'replaceMe']); $this->assertResponseStatus(302); $this->assertSessionHas('success', 'Bill "' . e($bill->name) . '" stored.'); } /** * @covers FireflyIII\Http\Controllers\BillController::store */ public function testStoreAndRedirect() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $request = $this->mock('FireflyIII\Http\Requests\BillFormRequest'); $this->be($bill->user); $request->shouldReceive('getBillData')->once()->andReturn([]); $repository->shouldReceive('store')->with([])->andReturn($bill); $this->call('POST', '/bills/store', ['_token' => 'replaceMe', 'create_another' => 1]); $this->assertResponseStatus(302); $this->assertSessionHas('success', 'Bill "' . e($bill->name) . '" stored.'); } /** * @covers FireflyIII\Http\Controllers\BillController::update */ public function testUpdate() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $request = $this->mock('FireflyIII\Http\Requests\BillFormRequest'); $this->be($bill->user); $request->shouldReceive('getBillData')->once()->andReturn([]); $repository->shouldReceive('update')->andReturn($bill); $this->call('POST', '/bills/update/' . $bill->id, ['_token' => 'replaceMe']); $this->assertResponseStatus(302); $this->assertSessionHas('success', 'Bill "' . e($bill->name) . '" updated.'); } /** * @covers FireflyIII\Http\Controllers\BillController::update */ public function testUpdateAndRedirect() { $bill = FactoryMuffin::create('FireflyIII\Models\Bill'); $repository = $this->mock('FireflyIII\Repositories\Bill\BillRepositoryInterface'); $request = $this->mock('FireflyIII\Http\Requests\BillFormRequest'); $this->be($bill->user); $request->shouldReceive('getBillData')->once()->andReturn([]); $repository->shouldReceive('update')->andReturn($bill); $this->call('POST', '/bills/update/' . $bill->id, ['_token' => 'replaceMe', 'return_to_edit' => 1]); $this->assertResponseStatus(302); } }