mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
104 lines
3.3 KiB
PHP
104 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* CallbackControllerTest.php
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature\Controllers\Import;
|
|
|
|
|
|
use FireflyIII\Models\ImportJob;
|
|
use FireflyIII\Repositories\ImportJob\ImportJobRepositoryInterface;
|
|
use Tests\TestCase;
|
|
use Log;
|
|
use Mockery;
|
|
|
|
/**
|
|
*
|
|
* Class CallbackControllerTest
|
|
*/
|
|
class CallbackControllerTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\Import\CallbackController
|
|
*/
|
|
public function testYnabBasic(): void {
|
|
$repository = $this->mock(ImportJobRepositoryInterface::class);
|
|
|
|
// config for job:
|
|
$config = [];
|
|
$newConfig = ['auth_code' => 'abc'];
|
|
|
|
// mock calls.
|
|
$repository->shouldReceive('findByKey')->andReturn(new ImportJob)->once();
|
|
$repository->shouldReceive('getConfiguration')->andReturn($config)->once();
|
|
$repository->shouldReceive('setConfiguration')->once()->withArgs([Mockery::any(), $newConfig]);
|
|
|
|
$repository->shouldReceive('setStatus')->once()->withArgs([Mockery::any(), 'ready_to_run']);
|
|
$repository->shouldReceive('setStage')->once()->withArgs([Mockery::any(), 'get_access_token']);
|
|
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('import.callback.ynab') . '?code=abc&state=def');
|
|
$response->assertStatus(302);
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\Import\CallbackController
|
|
*/
|
|
public function testYnabBasicBadJob(): void {
|
|
$repository = $this->mock(ImportJobRepositoryInterface::class);
|
|
|
|
// mock calls.
|
|
$repository->shouldReceive('findByKey')->andReturnNull()->once();
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('import.callback.ynab') . '?code=abc&state=def');
|
|
$response->assertStatus(200);
|
|
$response->assertSee('You Need A Budget did not reply with the correct state identifier. Firefly III cannot continue.');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\Import\CallbackController
|
|
*/
|
|
public function testYnabBasicNoCode(): void {
|
|
$repository = $this->mock(ImportJobRepositoryInterface::class);
|
|
|
|
// config for job:
|
|
$config = [];
|
|
$newConfig = ['auth_code' => 'abc'];
|
|
|
|
// mock calls.
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('import.callback.ynab') . '?code=&state=def');
|
|
$response->assertStatus(200);
|
|
$response->assertSee('You Need A Budget did not reply with a valid authorization code. Firefly III cannot continue.');
|
|
}
|
|
} |