Improve transformers and tests

This commit is contained in:
James Cole
2018-12-19 06:06:01 +01:00
parent 06c3362332
commit 03b4a50317
5 changed files with 137 additions and 86 deletions

View File

@@ -0,0 +1,59 @@
<?php
/**
* AvailableBudgetTransformerTest.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\Unit\Transformers;
use FireflyIII\Models\AvailableBudget;
use FireflyIII\Transformers\AvailableBudgetTransformer;
use Symfony\Component\HttpFoundation\ParameterBag;
use Tests\TestCase;
/**
* Class AvailableBudgetTransformerTest
*/
class AvailableBudgetTransformerTest extends TestCase
{
/**
* Test basic transformer
*
* @covers \FireflyIII\Transformers\AvailableBudgetTransformer
*/
public function testBasic(): void
{
/** @var AvailableBudget $availableBudget */
$availableBudget = AvailableBudget::first();
$currency = $availableBudget->transactionCurrency;
// make transformer
$transformer = app(AvailableBudgetTransformer::class);
$transformer->setParameters(new ParameterBag);
$result = $transformer->transform($availableBudget);
// test results
$this->assertEquals($availableBudget->id, $result['id']);
$this->assertEquals($currency->id, $result['currency_id']);
$this->assertEquals($availableBudget->start_date->format('Y-m-d'), $result['start']);
$this->assertEquals(round($availableBudget->amount, 2), $result['amount']);
}
}

View File

@@ -43,66 +43,65 @@ class BillTransformerTest extends TestCase
*/
public function testBasic(): void
{
$repository = $this->mock(BillRepositoryInterface::class);
$repository->shouldReceive('setUser')->atLeast()->once();
$repository->shouldReceive('getNoteText')->atLeast()->once()->andReturn('');
$bill = Bill::create(
[
'user_id' => $this->user()->id,
'name' => 'Some bill ' . random_int(1, 10000),
'match' => 'word,' . random_int(1, 10000),
'amount_min' => 12.34,
'amount_max' => 45.67,
'transaction_currency_id' => 1,
'date' => '2018-01-02',
'repeat_freq' => 'weekly',
'skip' => 0,
'active' => 1,
]
);
$transformer = new BillTransformer(new ParameterBag);
$result = $transformer->transform($bill);
/** @var Bill $bill */
$bill = Bill::first();
$transformer = app(BillTransformer::class);
$transformer->setParameters(new ParameterBag);
$result = $transformer->transform($bill);
// assert fields.
$this->assertEquals($bill->name, $result['name']);
$this->assertTrue($result['active']);
$this->assertEquals($bill->transactionCurrency->decimal_places, $result['currency_decimal_places']);
$this->assertEquals($bill->active, $result['active']);
$this->assertNull($result['notes']);
}
/**
* Coverage for dates.
* Basic coverage
*
* @covers \FireflyIII\Transformers\BillTransformer
*/
public function testWithDates(): void
{
// mock stuff
$repository = $this->mock(BillRepositoryInterface::class);
$repository->shouldReceive('setUser')->andReturnSelf();
$repository->shouldReceive('getNoteText')->andReturn('Hi there');
$repository->shouldReceive('getPaidDatesInRange')->andReturn(new Collection([new Carbon('2018-01-02')]));
$bill = Bill::create(
[
'user_id' => $this->user()->id,
'name' => 'Some bill ' . random_int(1, 10000),
'match' => 'word,' . random_int(1, 10000),
'amount_min' => 12.34,
'amount_max' => 45.67,
'date' => '2018-01-02',
'transaction_currency_id' => 1,
'repeat_freq' => 'monthly',
'skip' => 0,
'active' => 1,
$repository->shouldReceive('setUser')->atLeast()->once();
$repository->shouldReceive('getNoteText')->atLeast()->once()->andReturn('');
// repos should also receive call for dates:
$list = new Collection(
[new Carbon('2018-01-02'), new Carbon('2018-01-09'), new Carbon('2018-01-16'),
new Carbon('2018-01-21'), new Carbon('2018-01-30'),
]
);
$parameters = new ParameterBag();
$repository->shouldReceive('getPaidDatesInRange')->atLeast()->once()->andReturn($list);
$parameters = new ParameterBag;
$parameters->set('start', new Carbon('2018-01-01'));
$parameters->set('end', new Carbon('2018-01-31'));
$transformer = new BillTransformer($parameters);
$result = $transformer->transform($bill);
/** @var Bill $bill */
$bill = Bill::first();
$transformer = app(BillTransformer::class);
$transformer->setParameters($parameters);
$result = $transformer->transform($bill);
// assert fields.
$this->assertEquals($bill->name, $result['name']);
$this->assertTrue($result['active']);
$this->assertCount(1, $result['pay_dates']);
$this->assertEquals('2018-01-02', $result['pay_dates'][0]);
$this->assertCount(1, $result['paid_dates']);
$this->assertEquals('2018-01-02', $result['paid_dates'][0]);
$this->assertEquals($bill->transactionCurrency->decimal_places, $result['currency_decimal_places']);
$this->assertEquals($bill->active, $result['active']);
$this->assertNull($result['notes']);
$this->assertEquals('2018-03-01', $result['next_expected_match']);
$this->assertEquals(['2018-01-01'], $result['pay_dates']);
$this->assertEquals(
['2018-01-02', '2018-01-09', '2018-01-16', '2018-01-21', '2018-01-30',]
, $result['paid_dates']
);
}
}