mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $this->be($this->user()); $response = $this->get(route('json.action')); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\JsonController::boxBillsPaid */ public function testBoxBillsPaid() { // mock stuff $billRepos = $this->mock(BillRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $billRepos->shouldReceive('getBillsUnpaidInRange')->andReturn('100'); $this->be($this->user()); $response = $this->get(route('json.box.paid')); $response->assertStatus(200); $response->assertExactJson(['amount' => Amount::format('100', false), 'amount_raw' => '100', 'box' => 'bills-unpaid']); } /** * @covers \FireflyIII\Http\Controllers\JsonController::boxBillsUnpaid */ public function testBoxBillsUnpaid() { // mock stuff $billRepos = $this->mock(BillRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $billRepos->shouldReceive('getBillsPaidInRange')->andReturn('-100'); $this->be($this->user()); $response = $this->get(route('json.box.unpaid')); $response->assertStatus(200); $response->assertExactJson(['amount' => Amount::format('100', false), 'amount_raw' => '100', 'box' => 'bills-paid']); } /** * @covers \FireflyIII\Http\Controllers\JsonController::boxIn */ public function testBoxIn() { // mock stuff $accountRepos = $this->mock(AccountRepositoryInterface::class); $tasker = $this->mock(AccountTaskerInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $accountRepos->shouldReceive('getAccountsByType')->withArgs([([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH])])->once()->andReturn( new Collection ); $accountRepos->shouldReceive('getAccountsByType')->withArgs([([AccountType::DEFAULT, AccountType::ASSET])])->once()->andReturn(new Collection); $tasker->shouldReceive('amountInInPeriod')->andReturn('100'); $this->be($this->user()); $response = $this->get(route('json.box.in')); $response->assertStatus(200); $response->assertExactJson(['amount' => Amount::format('100', false), 'amount_raw' => '100', 'box' => 'in']); } /** * @covers \FireflyIII\Http\Controllers\JsonController::boxOut */ public function testBoxOut() { // mock stuff $accountRepos = $this->mock(AccountRepositoryInterface::class); $tasker = $this->mock(AccountTaskerInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $accountRepos->shouldReceive('getAccountsByType')->withArgs([([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH])])->once()->andReturn( new Collection ); $accountRepos->shouldReceive('getAccountsByType')->withArgs([([AccountType::DEFAULT, AccountType::ASSET])])->once()->andReturn(new Collection); $tasker->shouldReceive('amountOutInPeriod')->andReturn('100'); $this->be($this->user()); $response = $this->get(route('json.box.out')); $response->assertStatus(200); $response->assertExactJson(['amount' => Amount::format('100', false), 'amount_raw' => '100', 'box' => 'out']); } /** * @covers \FireflyIII\Http\Controllers\JsonController::categories */ public function testCategories() { // mock stuff $category = factory(Category::class)->make(); $categoryRepos = $this->mock(CategoryRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $categoryRepos->shouldReceive('getCategories')->andReturn(new Collection([$category])); $this->be($this->user()); $response = $this->get(route('json.categories')); $response->assertStatus(200); $response->assertExactJson([$category->name]); } /** * @covers \FireflyIII\Http\Controllers\JsonController::endTour */ public function testEndTour() { // mock stuff $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $this->be($this->user()); $response = $this->post(route('json.end-tour')); $response->assertStatus(200); $response->assertExactJson(['true']); } /** * @covers \FireflyIII\Http\Controllers\JsonController::expenseAccounts */ public function testExpenseAccounts() { // mock stuff $account = factory(Category::class)->make(); $accountRepos = $this->mock(AccountRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $accountRepos->shouldReceive('getAccountsByType')->withArgs([[AccountType::EXPENSE, AccountType::BENEFICIARY]])->once()->andReturn( new Collection([$account]) ); $this->be($this->user()); $response = $this->get(route('json.expense-accounts')); $response->assertStatus(200); $response->assertExactJson([$account->name]); } /** * @covers \FireflyIII\Http\Controllers\JsonController::revenueAccounts */ public function testRevenueAccounts() { // mock stuff $account = factory(Category::class)->make(); $accountRepos = $this->mock(AccountRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $accountRepos->shouldReceive('getAccountsByType')->withArgs([[AccountType::REVENUE]])->once()->andReturn( new Collection([$account]) ); $this->be($this->user()); $response = $this->get(route('json.revenue-accounts')); $response->assertStatus(200); $response->assertExactJson([$account->name]); } /** * @covers \FireflyIII\Http\Controllers\JsonController::tags */ public function testTags() { // mock stuff $tag = factory(Tag::class)->make(); $tagRepos = $this->mock(TagRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $tagRepos->shouldReceive('get')->andReturn(new Collection([$tag]))->once(); $this->be($this->user()); $response = $this->get(route('json.tags')); $response->assertStatus(200); $response->assertExactJson([$tag->tag]); } /** * @covers \FireflyIII\Http\Controllers\JsonController::tour */ public function testTour() { // mock stuff $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $this->be($this->user()); $response = $this->get(route('json.tour')); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\JsonController::transactionJournals */ public function testTransactionJournals() { // mock stuff $collector = $this->mock(JournalCollectorInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $collector->shouldReceive('setTypes')->andReturnSelf(); $collector->shouldReceive('setLimit')->andReturnSelf(); $collector->shouldReceive('setPage')->andReturnSelf(); $collector->shouldReceive('getJournals')->andReturn(new Collection); $this->be($this->user()); $response = $this->get(route('json.transaction-journals', ['deposit'])); $response->assertStatus(200); $response->assertExactJson([]); } /** * @covers \FireflyIII\Http\Controllers\JsonController::trigger */ public function testTrigger() { // mock stuff $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $this->be($this->user()); $response = $this->get(route('json.trigger')); $response->assertStatus(200); } }