2020-05-23 05:28:24 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
use App\Factory\PaymentTermFactory;
|
|
|
|
use App\Models\PaymentTerm;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2020-11-25 15:19:52 +01:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2020-05-23 05:28:24 +02:00
|
|
|
use Illuminate\Support\Facades\Session;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Http\Controllers\PaymentTermController
|
|
|
|
*/
|
|
|
|
class PaymentTermsApiTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2020-05-23 05:28:24 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
2020-10-22 12:14:14 +02:00
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
2020-05-23 05:28:24 +02:00
|
|
|
}
|
|
|
|
|
2023-01-19 01:24:40 +01:00
|
|
|
public function testPaymentTermsGetWithFilter()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/payment_terms?filter=hey');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
public function testPaymentTermsGet()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/payment_terms');
|
2020-05-23 05:28:24 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
2021-12-21 00:35:20 +01:00
|
|
|
public function testPaymentTermsGetStatusActive()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/payment_terms?status=active');
|
2021-12-21 00:35:20 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPaymentTermsGetStatusArchived()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/payment_terms?status=archived');
|
2021-12-21 00:35:20 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPaymentTermsGetStatusDeleted()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/payment_terms?status=deleted');
|
2021-12-21 00:35:20 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
public function testPostPaymentTerm()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/payment_terms', ['num_days' => 50]);
|
2020-05-23 05:28:24 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$data = $response->json();
|
|
|
|
|
|
|
|
$this->hashed_id = $data['data']['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPutPaymentTerms()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
$payment_term = PaymentTermFactory::create($this->company->id, $this->user->id);
|
2020-05-23 05:28:24 +02:00
|
|
|
$payment_term->num_days = 500;
|
|
|
|
$payment_term->save();
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->put('/api/v1/payment_terms/'.$this->encodePrimaryKey($payment_term->id), ['num_days' => 5000]);
|
2020-05-23 05:28:24 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeletePaymentTerm()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
$payment_term = PaymentTermFactory::create($this->company->id, $this->user->id);
|
2020-05-23 05:28:24 +02:00
|
|
|
$payment_term->num_days = 500;
|
|
|
|
$payment_term->save();
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->delete('/api/v1/payment_terms/'.$this->encodePrimaryKey($payment_term->id));
|
2020-05-23 05:28:24 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$response->assertStatus(200);
|
2020-05-23 05:28:24 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$payment_term = PaymentTerm::find($payment_term->id);
|
2020-05-23 05:28:24 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->assertNull($payment_term);
|
2020-05-23 05:28:24 +02:00
|
|
|
}
|
|
|
|
}
|