2019-06-12 06:22:05 +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-06-12 06:22:05 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2019-09-11 08:54:14 +02:00
|
|
|
* @covers App\Utils\Traits\MakesHash
|
2019-06-12 06:22:05 +02:00
|
|
|
*/
|
|
|
|
class PrimaryKeyTransformationTest extends TestCase
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
use MakesHash;
|
2019-06-12 06:22:05 +02:00
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
parent::setUp();
|
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testTransformationArray()
|
|
|
|
{
|
|
|
|
$keys = [
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->encodePrimaryKey(310), $this->encodePrimaryKey(311),
|
2020-03-21 06:37:30 +01:00
|
|
|
];
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$transformed_keys = $this->transformKeys($keys);
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->assertEquals(310, $transformed_keys[0]);
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->assertEquals(311, $transformed_keys[1]);
|
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testTransformation()
|
|
|
|
{
|
2020-03-24 10:15:30 +01:00
|
|
|
$keys = $this->encodePrimaryKey(310);
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->assertEquals(310, $this->transformKeys($keys));
|
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
}
|