mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 05:07:31 -05:00 
			
		
		
		
	* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit;
 | 
						|
 | 
						|
use App\DataMapper\ClientSettings;
 | 
						|
use App\DataMapper\CompanySettings;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseTransactions;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
class EncryptionSettingsTest extends TestCase
 | 
						|
{
 | 
						|
    public function setUp() :void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
        
 | 
						|
        $this->settings = '{"publishable_key":"publish","23_apiKey":"client","enable_ach":"1","enable_sofort":"1","enable_apple_pay":"1","enable_alipay":"1"}';
 | 
						|
    }
 | 
						|
 | 
						|
    public function testDecryption()
 | 
						|
    {
 | 
						|
        $this->settings = encrypt($this->settings);
 | 
						|
 | 
						|
        $this->assertEquals('publish', $this->getConfigField('publishable_key'));
 | 
						|
        $this->assertEquals('client', $this->getConfigField('23_apiKey'));
 | 
						|
        $this->assertEquals(1, $this->getConfigField('enable_ach'));
 | 
						|
        $this->assertEquals(1, $this->getConfigField('enable_sofort'));
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function getConfig()
 | 
						|
    {
 | 
						|
        return json_decode(decrypt($this->settings));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param $field
 | 
						|
     *
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function getConfigField($field)
 | 
						|
    {
 | 
						|
        return object_get($this->getConfig(), $field, false);
 | 
						|
    }
 | 
						|
}
 |