196 lines
5.5 KiB
PHP
196 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Banking;
|
|
|
|
use App\Exports\Banking\Transactions as Export;
|
|
use App\Jobs\Banking\CreateTransaction;
|
|
use App\Models\Banking\Transaction;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Facades\File;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
use Tests\Feature\FeatureTestCase;
|
|
|
|
class TransactionsTest extends FeatureTestCase
|
|
{
|
|
public function testItShouldSeeTransactionListPage()
|
|
{
|
|
$this->loginAs()
|
|
->get(route('transactions.index'))
|
|
->assertStatus(200)
|
|
->assertSeeText(trans_choice('general.transactions', 2));
|
|
}
|
|
|
|
public function testItShouldSeeTransactionShowPage()
|
|
{
|
|
$request = $this->getRequest();
|
|
|
|
$transaction = $this->dispatch(new CreateTransaction($request));
|
|
|
|
$this->loginAs()
|
|
->get(route('transactions.show', $transaction->id))
|
|
->assertStatus(200)
|
|
->assertSee($transaction->contact->email);
|
|
}
|
|
|
|
public function testItShouldSeeTransactionCreatePage()
|
|
{
|
|
$this->loginAs()
|
|
->get(route('transactions.create', ['type' => 'income']))
|
|
->assertStatus(200)
|
|
->assertSeeText(trans('general.title.new', ['type' => trans_choice('general.incomes', 1)]));
|
|
}
|
|
|
|
public function testItShouldCreateTransaction()
|
|
{
|
|
$request = $this->getRequest();
|
|
|
|
$this->loginAs()
|
|
->post(route('transactions.store'), $request)
|
|
->assertStatus(200);
|
|
|
|
$this->assertFlashLevel('success');
|
|
|
|
$this->assertDatabaseHas('transactions', $request);
|
|
}
|
|
|
|
public function testItShouldCreateTransactionWithRecurring()
|
|
{
|
|
$request = $this->getRequest(true);
|
|
|
|
$this->loginAs()
|
|
->post(route('recurring-transactions.store'), $request)
|
|
->assertStatus(200);
|
|
|
|
$this->assertFlashLevel('success');
|
|
|
|
$this->assertDatabaseHas('transactions', [
|
|
'type' => 'income-recurring',
|
|
'paid_at' => $request['recurring_started_at'],
|
|
'amount' => $request['amount'],
|
|
]);
|
|
}
|
|
|
|
public function testItShouldSeeTransactionUpdatePage()
|
|
{
|
|
$request = $this->getRequest();
|
|
|
|
$transaction = $this->dispatch(new CreateTransaction($request));
|
|
|
|
$this->loginAs()
|
|
->get(route('transactions.edit', $transaction->id))
|
|
->assertStatus(200)
|
|
->assertSee($transaction->amount);
|
|
}
|
|
|
|
public function testItShouldUpdateTransaction()
|
|
{
|
|
$request = $this->getRequest();
|
|
|
|
$transaction = $this->dispatch(new CreateTransaction($request));
|
|
|
|
$request['amount'] = $this->faker->randomFloat(2, 1, 1000);
|
|
|
|
$this->loginAs()
|
|
->patch(route('transactions.update', $transaction->id), $request)
|
|
->assertStatus(200)
|
|
->assertSee($request['amount']);
|
|
|
|
$this->assertFlashLevel('success');
|
|
|
|
$this->assertDatabaseHas('transactions', $request);
|
|
}
|
|
|
|
public function testItShouldDeleteTransaction()
|
|
{
|
|
$request = $this->getRequest();
|
|
|
|
$transaction = $this->dispatch(new CreateTransaction($request));
|
|
|
|
$this->loginAs()
|
|
->delete(route('transactions.destroy', $transaction->id))
|
|
->assertStatus(200);
|
|
|
|
$this->assertFlashLevel('success');
|
|
|
|
$this->assertSoftDeleted('transactions', $request);
|
|
}
|
|
|
|
public function testItShouldExportTransactions()
|
|
{
|
|
$count = 5;
|
|
Transaction::factory()->income()->count($count)->create();
|
|
|
|
Excel::fake();
|
|
|
|
$this->loginAs()
|
|
->get(route('transactions.export'))
|
|
->assertStatus(200);
|
|
|
|
Excel::matchByRegex();
|
|
|
|
Excel::assertDownloaded(
|
|
'/' . str()->filename(trans_choice('general.transactions', 2)) . '-\d{10}\.xlsx/',
|
|
function (Export $export) use ($count) {
|
|
// Assert that the correct export is downloaded.
|
|
return $export->collection()->count() === $count;
|
|
}
|
|
);
|
|
}
|
|
|
|
public function testItShouldExportSelectedTransactions()
|
|
{
|
|
$create_count = 5;
|
|
$select_count = 3;
|
|
|
|
$transactions = Transaction::factory()->income()->count($create_count)->create();
|
|
|
|
Excel::fake();
|
|
|
|
$this->loginAs()
|
|
->post(
|
|
route('bulk-actions.action', ['group' => 'banking', 'type' => 'transactions']),
|
|
['handle' => 'export', 'selected' => $transactions->take($select_count)->pluck('id')->toArray()]
|
|
)
|
|
->assertStatus(200);
|
|
|
|
Excel::matchByRegex();
|
|
|
|
Excel::assertDownloaded(
|
|
'/' . str()->filename(trans_choice('general.transactions', 2)) . '-\d{10}\.xlsx/',
|
|
function (Export $export) use ($select_count) {
|
|
return $export->collection()->count() === $select_count;
|
|
}
|
|
);
|
|
}
|
|
|
|
public function testItShouldImportTransactions()
|
|
{
|
|
Excel::fake();
|
|
|
|
$this->loginAs()
|
|
->post(
|
|
route('transactions.import'),
|
|
[
|
|
'import' => UploadedFile::fake()->createWithContent(
|
|
'transactions.xlsx',
|
|
File::get(public_path('files/import/transactions.xlsx'))
|
|
),
|
|
]
|
|
)
|
|
->assertStatus(200);
|
|
|
|
Excel::assertImported('transactions.xlsx');
|
|
|
|
$this->assertFlashLevel('success');
|
|
}
|
|
|
|
public function getRequest($recurring = false)
|
|
{
|
|
$factory = Transaction::factory();
|
|
|
|
$factory = $recurring ? $factory->income()->recurring() : $factory->income();
|
|
|
|
return $factory->raw();
|
|
}
|
|
}
|