mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:57:31 -05:00 
			
		
		
		
	* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
		
			
				
	
	
		
			202 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			202 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(200);
 | 
						|
    }
 | 
						|
 | 
						|
    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));
 | 
						|
    }
 | 
						|
}
 |