firefly-iii/tests/Api/V1/Controllers/BillControllerTest.php

247 lines
8.1 KiB
PHP
Raw Normal View History

2018-02-18 03:31:15 -06:00
<?php
/**
* BillControllerTest.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\Api\V1\Controllers;
use FireflyIII\Models\Bill;
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
use Illuminate\Pagination\LengthAwarePaginator;
use Laravel\Passport\Passport;
2018-02-28 13:18:47 -06:00
use Log;
2018-02-18 03:31:15 -06:00
use Tests\TestCase;
/**
* Class BillControllerTest
*/
class BillControllerTest extends TestCase
{
/**
*
*/
public function setUp()
{
parent::setUp();
Passport::actingAs($this->user());
Log::debug(sprintf('Now in %s.', \get_class($this)));
2018-02-18 03:31:15 -06:00
}
/**
* Send delete
*
2018-04-15 12:20:24 -05:00
* @covers \FireflyIII\Api\V1\Controllers\BillController
2018-02-18 03:31:15 -06:00
*/
2018-05-11 12:58:10 -05:00
public function testDelete(): void
2018-02-18 03:31:15 -06:00
{
// mock stuff:
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
$repository->shouldReceive('destroy')->once()->andReturn(true);
// get account:
$bill = $this->user()->bills()->first();
// call API
$response = $this->delete('/api/v1/bills/' . $bill->id);
$response->assertStatus(204);
}
/**
* @covers \FireflyIII\Api\V1\Controllers\BillController::__construct
* @covers \FireflyIII\Api\V1\Controllers\BillController::index
*/
2018-05-11 12:58:10 -05:00
public function testIndex(): void
2018-02-18 03:31:15 -06:00
{
// create stuff
$bills = factory(Bill::class, 10)->create();
$paginator = new LengthAwarePaginator($bills, 10, 50, 1);
// mock stuff:
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
$repository->shouldReceive('getPaginator')->withAnyArgs()->andReturn($paginator)->once();
// test API
$response = $this->get('/api/v1/bills');
$response->assertStatus(200);
$response->assertJson(['data' => [],]);
$response->assertJson(['meta' => ['pagination' => ['total' => 10, 'count' => 10, 'per_page' => 50, 'current_page' => 1, 'total_pages' => 1]],]);
$response->assertJson(
['links' => ['self' => true, 'first' => true, 'last' => true,],]
);
$response->assertHeader('Content-Type', 'application/vnd.api+json');
}
/**
* @covers \FireflyIII\Api\V1\Controllers\BillController::show
*/
2018-05-11 12:58:10 -05:00
public function testShow(): void
2018-02-18 03:31:15 -06:00
{
// create stuff
$bill = $this->user()->bills()->first();
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
// test API
$response = $this->get('/api/v1/bills/' . $bill->id);
$response->assertStatus(200);
$response->assertJson(
['data' => [
'type' => 'bills',
'id' => $bill->id,
],]
);
$response->assertHeader('Content-Type', 'application/vnd.api+json');
}
/**
* @covers \FireflyIII\Api\V1\Controllers\BillController::store
* @covers \FireflyIII\Api\V1\Requests\BillRequest::rules
* @covers \FireflyIII\Api\V1\Requests\BillRequest::authorize
* @covers \FireflyIII\Api\V1\Requests\BillRequest::getAll
* @covers \FireflyIII\Api\V1\Requests\BillRequest::withValidator
*/
2018-05-11 12:58:10 -05:00
public function testStoreMinOverMax(): void
2018-02-18 03:31:15 -06:00
{
// create stuff
$bill = $this->user()->bills()->first();
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
$repository->shouldReceive('store')->andReturn($bill);
// data to submit:
$data = [
2018-03-28 12:38:20 -05:00
'name' => 'New bill #' . random_int(1, 1000),
'match' => 'some,words,' . random_int(1, 1000),
2018-02-18 03:31:15 -06:00
'amount_min' => '66.34',
'amount_max' => '45.67',
'date' => '2018-01-01',
2018-04-27 04:29:09 -05:00
'currency_id' => 1,
2018-02-18 03:31:15 -06:00
'repeat_freq' => 'monthly',
'skip' => 0,
'automatch' => 1,
'active' => 1,
];
// test API
$response = $this->post('/api/v1/bills', $data, ['Accept' => 'application/json']);
$response->assertStatus(422);
$response->assertExactJson(
[
'message' => 'The given data was invalid.',
'errors' => [
'amount_min' => ['The minimum amount cannot be larger than the maximum amount.'],
],
]
);
$response->assertHeader('Content-Type', 'application/json');
}
/**
* @covers \FireflyIII\Api\V1\Controllers\BillController::store
* @covers \FireflyIII\Api\V1\Requests\BillRequest::rules
* @covers \FireflyIII\Api\V1\Requests\BillRequest::authorize
* @covers \FireflyIII\Api\V1\Requests\BillRequest::getAll
*/
2018-05-11 12:58:10 -05:00
public function testStoreValid(): void
2018-02-18 03:31:15 -06:00
{
// create stuff
$bill = $this->user()->bills()->first();
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
$repository->shouldReceive('store')->andReturn($bill);
// data to submit:
$data = [
2018-03-28 12:38:20 -05:00
'name' => 'New bill #' . random_int(1, 1000),
'match' => 'some,words,' . random_int(1, 1000),
2018-02-18 03:31:15 -06:00
'amount_min' => '12.34',
'amount_max' => '45.67',
'date' => '2018-01-01',
'repeat_freq' => 'monthly',
'skip' => 0,
'automatch' => 1,
'active' => 1,
2018-04-27 04:29:09 -05:00
'currency_id' => 1,
2018-02-18 03:31:15 -06:00
];
// test API
$response = $this->post('/api/v1/bills', $data, ['Accept' => 'application/json']);
$response->assertStatus(200);
$response->assertJson(['data' => ['type' => 'bills', 'links' => true],]);
$response->assertHeader('Content-Type', 'application/vnd.api+json');
$response->assertSee($bill->name);
}
/**
* @covers \FireflyIII\Api\V1\Controllers\BillController::update
* @covers \FireflyIII\Api\V1\Requests\BillRequest::rules
* @covers \FireflyIII\Api\V1\Requests\BillRequest::authorize
* @covers \FireflyIII\Api\V1\Requests\BillRequest::getAll
*/
2018-05-11 12:58:10 -05:00
public function testUpdateValid(): void
2018-02-18 03:31:15 -06:00
{
// create stuff
$bill = $this->user()->bills()->first();
$repository = $this->mock(BillRepositoryInterface::class);
// mock calls:
$repository->shouldReceive('setUser')->once();
$repository->shouldReceive('update')->andReturn($bill);
// data to submit:
$data = [
2018-03-28 12:38:20 -05:00
'name' => 'New bill #' . random_int(1, 1000),
'match' => 'some,words,' . random_int(1, 1000),
2018-02-18 03:31:15 -06:00
'amount_min' => '12.34',
'amount_max' => '45.67',
'date' => '2018-01-01',
'repeat_freq' => 'monthly',
'skip' => 0,
'automatch' => 1,
'active' => 1,
2018-04-27 04:29:09 -05:00
'currency_id' => 1,
2018-02-18 03:31:15 -06:00
];
// test API
$response = $this->put('/api/v1/bills/' . $bill->id, $data, ['Accept' => 'application/json']);
$response->assertStatus(200);
$response->assertJson(['data' => ['type' => 'bills', 'links' => true],]);
$response->assertHeader('Content-Type', 'application/vnd.api+json');
$response->assertSee($bill->name);
}
2018-03-04 08:14:29 -06:00
}