invoiceninja/tests/Unit/PrimaryKeyTransformationTest.php

49 lines
1 KiB
PHP
Raw Normal View History

2019-06-12 14:22:05 +10:00
<?php
2020-09-14 21:11:46 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 21:11:46 +10:00
*
2022-06-08 14:25:44 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 21:11:46 +10:00
*/
2019-06-12 14:22:05 +10:00
namespace Tests\Unit;
use App\Utils\Traits\MakesHash;
use Tests\TestCase;
/**
* @test
2019-09-11 16:54:14 +10:00
* @covers App\Utils\Traits\MakesHash
2019-06-12 14:22:05 +10:00
*/
class PrimaryKeyTransformationTest extends TestCase
{
use MakesHash;
2019-06-12 14:22:05 +10:00
public function setUp() :void
{
parent::setUp();
}
2019-06-12 14:22:05 +10:00
public function testTransformationArray()
{
$keys = [
$this->encodePrimaryKey(310), $this->encodePrimaryKey(311),
];
2019-06-12 14:22:05 +10:00
$transformed_keys = $this->transformKeys($keys);
2019-06-12 14:22:05 +10:00
$this->assertEquals(310, $transformed_keys[0]);
2019-06-12 14:22:05 +10:00
$this->assertEquals(311, $transformed_keys[1]);
}
2019-06-12 14:22:05 +10:00
public function testTransformation()
{
$keys = $this->encodePrimaryKey(310);
2019-06-12 14:22:05 +10:00
$this->assertEquals(310, $this->transformKeys($keys));
}
2019-06-12 14:22:05 +10:00
}