2022-09-15 06:15:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Feature\Bank;
|
|
|
|
|
2024-04-14 23:57:24 +02:00
|
|
|
use Tests\TestCase;
|
2023-11-26 08:41:42 +01:00
|
|
|
use App\Models\Expense;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use Tests\MockAccountData;
|
2024-04-14 23:57:24 +02:00
|
|
|
use App\Factory\InvoiceFactory;
|
|
|
|
use App\Models\BankTransaction;
|
|
|
|
use App\Factory\InvoiceItemFactory;
|
|
|
|
use App\Factory\BankIntegrationFactory;
|
|
|
|
use App\Factory\BankTransactionFactory;
|
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2022-09-15 06:15:02 +02:00
|
|
|
|
|
|
|
class BankTransactionTest extends TestCase
|
|
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
|
|
|
protected function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-06-14 06:31:26 +02:00
|
|
|
public function testBankIntegrationFilters()
|
|
|
|
{
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->bank_account_name = "Bank1";
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
|
|
|
|
$bi2 = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi2->bank_account_name = "Bank2";
|
|
|
|
$bi2->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi2->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 20;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->getJson('/api/v1/bank_transactions');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$transaction_count = count($arr['data']);
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $transaction_count);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->getJson('/api/v1/bank_transactions?bank_integration_ids='.$bi->hashed_id);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$transaction_count = count($arr['data']);
|
|
|
|
|
|
|
|
$this->assertCount(1, $arr['data']);
|
|
|
|
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->getJson('/api/v1/bank_transactions?bank_integration_ids='.$bi2->hashed_id);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$transaction_count = count($arr['data']);
|
|
|
|
|
|
|
|
$this->assertCount(1, $arr['data']);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->getJson('/api/v1/bank_transactions?bank_integration_ids='.$bi2->hashed_id.",".$bi->hashed_id);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$transaction_count = count($arr['data']);
|
|
|
|
|
|
|
|
$this->assertCount(2, $arr['data']);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-04-05 08:13:42 +02:00
|
|
|
public function testLinkMultipleExpensesWithDeleteToTransaction()
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$this->expense->vendor_id = $this->vendor->id;
|
|
|
|
$this->expense->save();
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $this->expense->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals($this->expense->refresh()->transaction_id, $bt->id);
|
|
|
|
$this->assertEquals($this->expense->hashed_id, $bt->refresh()->expense_id);
|
2023-04-10 00:56:55 +02:00
|
|
|
$this->assertEquals($bt->id, $this->expense->transaction_id);
|
2023-04-05 08:13:42 +02:00
|
|
|
$this->assertEquals($this->vendor->id, $bt->vendor_id);
|
|
|
|
$this->assertEquals(BankTransaction::STATUS_CONVERTED, $bt->status_id);
|
|
|
|
|
|
|
|
|
|
|
|
$e = Expense::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $e->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals("{$this->expense->hashed_id},{$e->hashed_id}", $bt->fresh()->expense_id);
|
|
|
|
|
|
|
|
$e2 = Expense::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $e2->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertNotNull($e2->refresh()->transaction_id);
|
|
|
|
|
|
|
|
$this->assertEquals("{$this->expense->hashed_id},{$e->hashed_id},{$e2->hashed_id}", $bt->fresh()->expense_id);
|
|
|
|
|
|
|
|
$expense_repo = app('App\Repositories\ExpenseRepository');
|
|
|
|
|
|
|
|
$expense_repo->delete($e2);
|
|
|
|
|
|
|
|
$this->assertEquals("{$this->expense->hashed_id},{$e->hashed_id}", $bt->fresh()->expense_id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testLinkMultipleExpensesToTransaction()
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$this->expense->vendor_id = $this->vendor->id;
|
|
|
|
$this->expense->save();
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $this->expense->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals($this->expense->refresh()->transaction_id, $bt->id);
|
|
|
|
$this->assertEquals($this->expense->hashed_id, $bt->refresh()->expense_id);
|
|
|
|
$this->assertEquals($this->vendor->id, $bt->vendor_id);
|
|
|
|
$this->assertEquals(BankTransaction::STATUS_CONVERTED, $bt->status_id);
|
|
|
|
|
|
|
|
|
|
|
|
$e = Expense::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $e->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals("{$this->expense->hashed_id},{$e->hashed_id}", $bt->fresh()->expense_id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-01-22 04:49:15 +01:00
|
|
|
|
|
|
|
public function testBankTransactionBulkActions()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->bank_integration->hashed_id],
|
|
|
|
'action' => 'archive'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/bank_transactions/bulk', $data)
|
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->bank_integration->hashed_id],
|
|
|
|
'action' => 'restore'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/bank_transactions/bulk', $data)
|
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->bank_integration->hashed_id],
|
|
|
|
'action' => 'delete'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/bank_transactions/bulk', $data)
|
|
|
|
->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
2022-11-30 08:40:55 +01:00
|
|
|
public function testLinkExpenseToTransaction()
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
2022-12-05 00:07:34 +01:00
|
|
|
$this->expense->vendor_id = $this->vendor->id;
|
|
|
|
$this->expense->save();
|
|
|
|
|
2022-11-30 08:40:55 +01:00
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'expense_id' => $this->expense->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals($this->expense->refresh()->transaction_id, $bt->id);
|
2023-04-05 06:53:48 +02:00
|
|
|
$this->assertEquals($this->expense->hashed_id, $bt->refresh()->expense_id);
|
2022-12-05 00:07:34 +01:00
|
|
|
$this->assertEquals($this->vendor->id, $bt->vendor_id);
|
|
|
|
$this->assertEquals(BankTransaction::STATUS_CONVERTED, $bt->status_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLinkingManuallyPaidInvoices()
|
|
|
|
{
|
|
|
|
$invoice = InvoiceFactory::create($this->company->id, $this->user->id);
|
|
|
|
$invoice->client_id = $this->client->id;
|
|
|
|
$invoice->status_id = Invoice::STATUS_SENT;
|
|
|
|
$invoice->number = "InvoiceMatchingNumber123";
|
|
|
|
$line_items = [];
|
|
|
|
|
|
|
|
$item = InvoiceItemFactory::create();
|
|
|
|
$item->quantity = 1;
|
|
|
|
$item->cost = 325;
|
|
|
|
$item->type_id = 1;
|
|
|
|
|
|
|
|
$line_items[] = $item;
|
|
|
|
|
|
|
|
$invoice->line_items = $line_items;
|
|
|
|
|
|
|
|
$invoice = $invoice->calc()->getInvoice();
|
|
|
|
|
|
|
|
$invoice->service()->markPaid();
|
|
|
|
|
|
|
|
$p = $invoice->payments->first();
|
|
|
|
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'InvoiceMatchingNumber123';
|
|
|
|
$bt->amount = 325;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'CREDIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'payment_id' => $p->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals($p->refresh()->transaction_id, $bt->id);
|
|
|
|
$this->assertEquals($bt->refresh()->payment_id, $p->id);
|
2022-11-30 08:40:55 +01:00
|
|
|
$this->assertEquals(BankTransaction::STATUS_CONVERTED, $bt->status_id);
|
2022-12-05 00:07:34 +01:00
|
|
|
$this->assertEquals($invoice->hashed_id, $bt->invoice_ids);
|
2022-11-30 08:40:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-30 08:39:22 +01:00
|
|
|
public function testLinkPaymentToTransaction()
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->status_id = BankTransaction::STATUS_UNMATCHED;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'CREDIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
|
|
|
'id' => $bt->hashed_id,
|
|
|
|
'payment_id' => $this->payment->hashed_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$this->assertEquals($this->payment->refresh()->transaction_id, $bt->id);
|
|
|
|
$this->assertEquals($bt->refresh()->payment_id, $this->payment->id);
|
|
|
|
$this->assertEquals(BankTransaction::STATUS_CONVERTED, $bt->status_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-15 06:15:02 +02:00
|
|
|
public function testMatchBankTransactionsValidationShouldFail()
|
|
|
|
{
|
2022-10-26 05:03:49 +02:00
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$data['transactions'][] = [
|
2022-09-22 08:20:54 +02:00
|
|
|
'bad_key' => 10,
|
2022-09-15 06:15:02 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(422);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testMatchBankTransactionValidationShouldPass()
|
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
if (config('ninja.testvars.travis') !== false) {
|
|
|
|
$this->markTestSkipped('Skip test for Github Actions');
|
|
|
|
}
|
2022-10-27 04:46:06 +02:00
|
|
|
|
2022-10-26 05:03:49 +02:00
|
|
|
$data = [];
|
|
|
|
|
2022-10-27 03:10:11 +02:00
|
|
|
$bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);
|
|
|
|
$bi->save();
|
|
|
|
|
|
|
|
$bt = BankTransactionFactory::create($this->company->id, $this->user->id);
|
|
|
|
$bt->bank_integration_id = $bi->id;
|
|
|
|
$bt->description = 'Fuel';
|
|
|
|
$bt->amount = 10;
|
|
|
|
$bt->currency_code = $this->client->currency()->code;
|
|
|
|
$bt->date = now()->format('Y-m-d');
|
|
|
|
$bt->transaction_id = 1234567890;
|
|
|
|
$bt->category_id = 10000003;
|
|
|
|
$bt->base_type = 'DEBIT';
|
|
|
|
$bt->save();
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
2022-10-26 05:03:49 +02:00
|
|
|
$data['transactions'][] = [
|
2022-10-27 03:10:11 +02:00
|
|
|
'id' => $bt->hashed_id,
|
2022-09-15 06:15:02 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/bank_transactions/match', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|