mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Test available budget API.
This commit is contained in:
parent
89910031cd
commit
da00179066
@ -27,6 +27,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class AccountMeta.
|
* Class AccountMeta.
|
||||||
|
* @property string $data
|
||||||
*/
|
*/
|
||||||
class AccountMeta extends Model
|
class AccountMeta extends Model
|
||||||
{
|
{
|
||||||
|
@ -121,7 +121,7 @@ class AttachmentControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Download attachment
|
* Download attachment but no file uploaded
|
||||||
*
|
*
|
||||||
* @covers \FireflyIII\Api\V1\Controllers\AttachmentController
|
* @covers \FireflyIII\Api\V1\Controllers\AttachmentController
|
||||||
*/
|
*/
|
||||||
@ -279,6 +279,12 @@ class AttachmentControllerTest extends TestCase
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Upload file for attachment.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AttachmentController
|
||||||
|
*
|
||||||
|
*/
|
||||||
public function testUpload(): void
|
public function testUpload(): void
|
||||||
{
|
{
|
||||||
/** @var Attachment $attachment */
|
/** @var Attachment $attachment */
|
||||||
@ -288,7 +294,7 @@ class AttachmentControllerTest extends TestCase
|
|||||||
$helper = $this->mock(AttachmentHelperInterface::class);
|
$helper = $this->mock(AttachmentHelperInterface::class);
|
||||||
$helper->shouldReceive('saveAttachmentFromApi')->once();
|
$helper->shouldReceive('saveAttachmentFromApi')->once();
|
||||||
|
|
||||||
$response = $this->call('POST', '/api/v1/attachments/' . $attachment->id . '/upload',[],[],[],[], $content);
|
$response = $this->call('POST', '/api/v1/attachments/' . $attachment->id . '/upload', [], [], [], [], $content);
|
||||||
//$response = $this->post('/api/v1/attachments/' . $attachment->id . '/upload',$content, ['Accept' => 'application/json']);
|
//$response = $this->post('/api/v1/attachments/' . $attachment->id . '/upload',$content, ['Accept' => 'application/json']);
|
||||||
$response->assertStatus(204);
|
$response->assertStatus(204);
|
||||||
}
|
}
|
||||||
|
189
tests/Api/V1/Controllers/AvailableBudgetControllerTest.php
Normal file
189
tests/Api/V1/Controllers/AvailableBudgetControllerTest.php
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AvailableBudgetControllerTest.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\AvailableBudget;
|
||||||
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
||||||
|
use Laravel\Passport\Passport;
|
||||||
|
use Log;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Class AvailableBudgetControllerTest
|
||||||
|
*/
|
||||||
|
class AvailableBudgetControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
Passport::actingAs($this->user());
|
||||||
|
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete an available budget.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AvailableBudgetController
|
||||||
|
*/
|
||||||
|
public function testDelete(): void
|
||||||
|
{
|
||||||
|
// mock stuff:
|
||||||
|
$repository = $this->mock(BudgetRepositoryInterface::class);
|
||||||
|
|
||||||
|
// mock calls:
|
||||||
|
$repository->shouldReceive('setUser')->once();
|
||||||
|
$repository->shouldReceive('destroyAvailableBudget')->once()->andReturn(true);
|
||||||
|
|
||||||
|
// get available budget:
|
||||||
|
$availableBudget = $this->user()->availableBudgets()->first();
|
||||||
|
|
||||||
|
// call API
|
||||||
|
$response = $this->delete('/api/v1/available_budgets/' . $availableBudget->id);
|
||||||
|
$response->assertStatus(204);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show all available budgets.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AvailableBudgetController
|
||||||
|
*/
|
||||||
|
public function testIndex(): void
|
||||||
|
{
|
||||||
|
$availableBudgets = $this->user()->availableBudgets()->get();
|
||||||
|
// mock stuff:
|
||||||
|
$repository = $this->mock(BudgetRepositoryInterface::class);
|
||||||
|
|
||||||
|
// mock calls:
|
||||||
|
$repository->shouldReceive('setUser')->once();
|
||||||
|
$repository->shouldReceive('getAvailableBudgets')->once()->andReturn($availableBudgets);
|
||||||
|
|
||||||
|
// call API
|
||||||
|
$response = $this->get('/api/v1/available_budgets');
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee($availableBudgets->first()->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show one available budget.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AvailableBudgetController
|
||||||
|
*/
|
||||||
|
public function testShow(): void
|
||||||
|
{
|
||||||
|
$availableBudget = $this->user()->availableBudgets()->first();
|
||||||
|
// mock stuff:
|
||||||
|
$repository = $this->mock(BudgetRepositoryInterface::class);
|
||||||
|
|
||||||
|
// mock calls:
|
||||||
|
$repository->shouldReceive('setUser')->once();
|
||||||
|
|
||||||
|
// call API
|
||||||
|
$response = $this->get('/api/v1/available_budgets/' . $availableBudget->id);
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee($availableBudget->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store new available budget.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AvailableBudgetController
|
||||||
|
* @covers \FireflyIII\Api\V1\Requests\AvailableBudgetRequest
|
||||||
|
*/
|
||||||
|
public function testStore(): void
|
||||||
|
{
|
||||||
|
/** @var AvailableBudget $availableBudget */
|
||||||
|
$availableBudget = $this->user()->availableBudgets()->first();
|
||||||
|
|
||||||
|
// mock stuff:
|
||||||
|
$repository = $this->mock(BudgetRepositoryInterface::class);
|
||||||
|
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||||
|
|
||||||
|
// mock calls:
|
||||||
|
$repository->shouldReceive('setUser')->once();
|
||||||
|
$repository->shouldReceive('setAvailableBudget')->once()->andReturn($availableBudget);
|
||||||
|
$currencyRepository->shouldReceive('findNull')->andReturn(TransactionCurrency::find(1));
|
||||||
|
|
||||||
|
// data to submit
|
||||||
|
$data = [
|
||||||
|
'transaction_currency_id' => '1',
|
||||||
|
'amount' => '100',
|
||||||
|
'start_date' => '2018-01-01',
|
||||||
|
'end_date' => '2018-01-31',
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
// test API
|
||||||
|
$response = $this->post('/api/v1/available_budgets', $data);
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertJson(['data' => ['type' => 'available_budgets', 'links' => true],]);
|
||||||
|
$response->assertSee($availableBudget->amount); // the amount
|
||||||
|
$response->assertHeader('Content-Type', 'application/vnd.api+json');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update available budget.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AvailableBudgetController
|
||||||
|
* @covers \FireflyIII\Api\V1\Requests\AvailableBudgetRequest
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function testUpdate(): void
|
||||||
|
{
|
||||||
|
// mock repositories
|
||||||
|
$repository = $this->mock(BudgetRepositoryInterface::class);
|
||||||
|
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||||
|
|
||||||
|
/** @var AvailableBudget $availableBudget */
|
||||||
|
$availableBudget = $this->user()->availableBudgets()->first();
|
||||||
|
|
||||||
|
// mock calls:
|
||||||
|
$repository->shouldReceive('setUser');
|
||||||
|
$repository->shouldReceive('updateAvailableBudget')->once()->andReturn($availableBudget);
|
||||||
|
$currencyRepository->shouldReceive('findNull')->andReturn(TransactionCurrency::find(1));
|
||||||
|
|
||||||
|
// data to submit
|
||||||
|
$data = [
|
||||||
|
'transaction_currency_id' => '1',
|
||||||
|
'amount' => '100',
|
||||||
|
'start_date' => '2018-01-01',
|
||||||
|
'end_date' => '2018-01-31',
|
||||||
|
];
|
||||||
|
|
||||||
|
// test API
|
||||||
|
$response = $this->put('/api/v1/available_budgets/' . $availableBudget->id, $data, ['Accept' => 'application/json']);
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertJson(['data' => ['type' => 'available_budgets', 'links' => true],]);
|
||||||
|
$response->assertHeader('Content-Type', 'application/vnd.api+json');
|
||||||
|
$response->assertSee($availableBudget->amount);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user