2019-10-02 12:22:10 +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
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-10-02 12:22:10 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2021-11-01 04:09:41 +01:00
|
|
|
use App\Models\Country;
|
2019-10-02 12:22:10 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Illuminate\Support\Facades\Session;
|
2021-11-01 04:09:41 +01:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2019-10-02 12:22:10 +02:00
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2019-11-16 04:12:29 +01:00
|
|
|
* @covers App\Http\Controllers\ClientController
|
2019-10-02 12:22:10 +02:00
|
|
|
*/
|
|
|
|
class ClientApiTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
}
|
|
|
|
|
2021-11-01 04:09:41 +01:00
|
|
|
public function testClientCountryCodeValidationTrue()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
'country_code' => 'AM'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = false;
|
|
|
|
|
|
|
|
try{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
} catch (ValidationException $e) {
|
|
|
|
$message = json_decode($e->validator->getMessageBag(), 1);
|
|
|
|
nlog($message);
|
|
|
|
}
|
2022-01-14 11:24:20 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testClientNoneValidation()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'number' => '',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = false;
|
|
|
|
|
|
|
|
try{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
} catch (ValidationException $e) {
|
|
|
|
$message = json_decode($e->validator->getMessageBag(), 1);
|
|
|
|
nlog($message);
|
|
|
|
}
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testClientNullValidation()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'number' => null,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = false;
|
|
|
|
|
|
|
|
try{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
} catch (ValidationException $e) {
|
|
|
|
$message = json_decode($e->validator->getMessageBag(), 1);
|
|
|
|
nlog($message);
|
|
|
|
}
|
2021-11-01 04:09:41 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testClientCountryCodeValidationTrueIso3()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
'country_code' => 'ARM'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = false;
|
|
|
|
|
|
|
|
try{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
} catch (ValidationException $e) {
|
|
|
|
$message = json_decode($e->validator->getMessageBag(), 1);
|
|
|
|
nlog($message);
|
|
|
|
}
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testClientCountryCodeValidationFalse()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
'country_code' => 'AdfdfdfM'
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(302);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-02 12:22:10 +02:00
|
|
|
public function testClientPost()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-10-02 12:22:10 +02:00
|
|
|
])->post('/api/v1/clients', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
2021-03-20 00:06:44 +01:00
|
|
|
public function testDuplicateNumberCatch()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'number' => 'iamaduplicate',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(302);
|
|
|
|
}
|
|
|
|
|
2019-10-02 12:22:10 +02:00
|
|
|
public function testClientPut()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-10-02 12:22:10 +02:00
|
|
|
])->put('/api/v1/clients/'.$this->encodePrimaryKey($this->client->id), $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
2021-03-20 00:06:44 +01:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->put('/api/v1/clients/'.$this->encodePrimaryKey($this->client->id), $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(302);
|
2019-10-02 12:22:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testClientGet()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-10-02 12:22:10 +02:00
|
|
|
])->get('/api/v1/clients/'.$this->encodePrimaryKey($this->client->id));
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
|
|
|
public function testClientNotArchived()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-11-16 04:12:29 +01:00
|
|
|
])->get('/api/v1/clients/'.$this->encodePrimaryKey($this->client->id));
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
2020-01-29 03:03:47 +01:00
|
|
|
$this->assertEquals(0, $arr['data']['archived_at']);
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testClientArchived()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->encodePrimaryKey($this->client->id)],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-11-16 04:12:29 +01:00
|
|
|
])->post('/api/v1/clients/bulk?action=archive', $data);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
2020-01-20 11:10:33 +01:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
$this->assertNotNull($arr['data'][0]['archived_at']);
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
public function testClientRestored()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->encodePrimaryKey($this->client->id)],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-11-16 04:12:29 +01:00
|
|
|
])->post('/api/v1/clients/bulk?action=restore', $data);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
2020-01-29 03:03:47 +01:00
|
|
|
$this->assertEquals(0, $arr['data'][0]['archived_at']);
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testClientDeleted()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->encodePrimaryKey($this->client->id)],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-11-16 04:12:29 +01:00
|
|
|
])->post('/api/v1/clients/bulk?action=delete', $data);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertTrue($arr['data'][0]['is_deleted']);
|
|
|
|
}
|
2021-11-01 04:09:41 +01:00
|
|
|
|
|
|
|
public function testClientCurrencyCodeValidationTrue()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
'currency_code' => 'USD'
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testClientCurrencyCodeValidationFalse()
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $this->faker->firstName,
|
|
|
|
'id_number' => 'Coolio',
|
|
|
|
'currency_code' => 'R'
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/clients/', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(302);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|