mock(ExportJobRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $repository->shouldReceive('exists')->once()->andReturn(true); $repository->shouldReceive('getContent')->once()->andReturn('Some content beep boop'); $this->be($this->user()); $response = $this->get(route('export.download', ['testExport'])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\ExportController::download * @expectedExceptionMessage Against all expectations */ public function testDownloadFailed() { // mock stuff $repository = $this->mock(ExportJobRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $repository->shouldReceive('exists')->once()->andReturn(false); $this->be($this->user()); $response = $this->get(route('export.download', ['testExport'])); $response->assertStatus(500); } /** * @covers \FireflyIII\Http\Controllers\ExportController::getStatus */ public function testGetStatus() { // mock stuff $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $this->be($this->user()); $response = $this->get(route('export.status', ['testExport'])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\ExportController::index * @covers \FireflyIII\Http\Controllers\ExportController::__construct */ public function testIndex() { // mock stuff $repository = $this->mock(ExportJobRepositoryInterface::class); $accountRepos = $this->mock(AccountRepositoryInterface::class); $journalRepos = $this->mock(JournalRepositoryInterface::class); $journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal); $repository->shouldReceive('create')->andReturn(new ExportJob); $repository->shouldReceive('cleanup'); $accountRepos->shouldReceive('getAccountsByType')->withArgs([[AccountType::DEFAULT, AccountType::ASSET]])->andReturn(new Collection); $this->be($this->user()); $response = $this->get(route('export.index')); $response->assertStatus(200); // has bread crumb $response->assertSee('