mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
e4c18e734a
* Add ability to remove group settings level company logo * Company Gateway Fees and Limits * Validation tests for FeesAndLimits * Working on company gateways * Working on transforming fees_and_limits in transformer * Implement fees and limits map for company gateways
209 lines
5.1 KiB
PHP
209 lines
5.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\DataMapper\DefaultSettings;
|
|
use App\DataMapper\FeesAndLimits;
|
|
use App\Models\Account;
|
|
use App\Models\Client;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Company;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Faker\Factory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Tests\MockAccountData;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
class CompanyGatewayApiTest extends TestCase
|
|
{
|
|
use MakesHash;
|
|
use DatabaseTransactions;
|
|
use MockAccountData;
|
|
use CompanyGatewayFeesAndLimitsSaver;
|
|
|
|
public function setUp() :void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->makeTestData();
|
|
|
|
Session::start();
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
Model::reguard();
|
|
|
|
}
|
|
|
|
|
|
public function testCompanyGatewayEndPoints()
|
|
{
|
|
$data = [
|
|
'config' => 'random config',
|
|
'gateway_key' => '3b6621f970ab18887c4f6dca78d3f8bb',
|
|
];
|
|
|
|
/* POST */
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->post('/api/v1/company_gateways', $data);
|
|
|
|
$cg = $response->json();
|
|
|
|
$cg_id = $cg['data']['id'];
|
|
|
|
$this->assertNotNull($cg_id);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
/* GET */
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->get("/api/v1/company_gateways/{$cg_id}");
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
/* GET CREATE */
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->get('/api/v1/company_gateways/create');
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
/* PUT */
|
|
$data = [
|
|
'config' => 'changed',
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->put("/api/v1/company_gateways/".$cg_id, $data);
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->delete("/api/v1/company_gateways/{$cg_id}", $data);
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
public function testCompanyGatewayFeesAndLimitsSuccess()
|
|
{
|
|
$fee = new FeesAndLimits;
|
|
|
|
$fee = (array)$fee;
|
|
|
|
$fee_and_limit['1'] = ['min_limit' => 1];
|
|
$fee_and_limit['2'] = ['min_limit' => 1];
|
|
$fee_and_limit['3'] = ['min_limit' => 1];
|
|
$fee_and_limit['4'] = ['min_limit' => 1];
|
|
$fee_and_limit['5'] = ['min_limit' => 1];
|
|
|
|
$data = [
|
|
'config' => 'random config',
|
|
'gateway_key' => '3b6621f970ab18887c4f6dca78d3f8bb',
|
|
'fees_and_limits' => $fee_and_limit,
|
|
];
|
|
|
|
/* POST */
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->post('/api/v1/company_gateways', $data);
|
|
|
|
$cg = $response->json();
|
|
|
|
$cg_id = $cg['data']['id'];
|
|
|
|
$this->assertNotNull($cg_id);
|
|
|
|
$cg_fee = $cg['data']['fees_and_limits'];
|
|
|
|
$this->assertNotNull($cg_fee);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->get('/api/v1/company_gateways/'.$this->encodePrimaryKey($cg['data']['id']));
|
|
|
|
$cg = $response->json();
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
}
|
|
|
|
|
|
public function testCompanyGatewayFeesAndLimitsFails()
|
|
{
|
|
$fee_and_limit['bank_transfer'] = new FeesAndLimits;
|
|
|
|
$fee_and_limit['bank_transfer']->adjust_fee_percent = 10;
|
|
|
|
$data = [
|
|
'config' => 'random config',
|
|
'gateway_key' => '3b6621f970ab18887c4f6dca78d3f8bb',
|
|
'fees_and_limits' => $fee_and_limit,
|
|
];
|
|
|
|
/* POST */
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token
|
|
])->post('/api/v1/company_gateways', $data);
|
|
|
|
|
|
$response->assertStatus(302);
|
|
|
|
}
|
|
|
|
public function testCompanyGatewayArrayBuilder()
|
|
{
|
|
$arr = [
|
|
'min_limit' => 1,
|
|
'max_limit' => 2
|
|
];
|
|
|
|
$fal = (array)new FeesAndLimits;
|
|
|
|
$new_arr = array_replace($fal, $arr);
|
|
|
|
$this->assertEquals($arr['min_limit'], $new_arr['min_limit']);
|
|
$this->assertTrue(array_key_exists('fee_amount', $new_arr));
|
|
|
|
}
|
|
} |