mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 18:37:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Unit;
 | |
| 
 | |
| use App\DataMapper\ClientSettings;
 | |
| use App\DataMapper\CompanySettings;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  * @covers  App\Utils\Traits\MakesHash
 | |
|  */
 | |
| class PrimaryKeyTransformationTest extends TestCase
 | |
| {
 | |
| 	use MakesHash;
 | |
| 
 | |
|     public function setUp() :void
 | |
|     {
 | |
|     
 | |
|     parent::setUp();
 | |
| 	
 | |
| 	}
 | |
| 
 | |
| 	public function testTransformationArray()
 | |
| 	{
 | |
| 
 | |
| 		$keys = [
 | |
| 			'gl9avZgaG1', '7LDdwrmb1Y'
 | |
| 		];
 | |
| 
 | |
| 		$transformed_keys = $this->transformKeys($keys);
 | |
| 
 | |
| 		$this->assertEquals(310, $transformed_keys[0]);
 | |
| 
 | |
| 		$this->assertEquals(311, $transformed_keys[1]);
 | |
| 
 | |
| 		
 | |
| 	}
 | |
| 
 | |
| 	public function testTransformation()
 | |
| 	{
 | |
| 		$keys = 'gl9avZgaG1';
 | |
| 
 | |
| 		$this->assertEquals(310, $this->transformKeys($keys));
 | |
| 	}
 | |
| 
 | |
| }
 |