PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
tests
/
Unit
/
Utils
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Test\Unit\Utils; use Cloudinary\ArrayUtils; use PHPUnit\Framework\TestCase; /** * Class ArrayUtilsTest */ final class ArrayUtilsTest extends TestCase { public function testSortByArray() { $array = ['y' => 'y', 'z' => 'z', 'b' => 'b', 'a' => 'a']; $sortedArray = ['a' => 'a', 'b' => 'b', 'y' => 'y', 'z' => 'z']; $testOrder = ['z', 'b', 'y', 'a']; self::assertSame( ['z' => 'z', 'b' => 'b', 'y' => 'y', 'a' => 'a'], ArrayUtils::sortByArray($array, $testOrder) ); $testOrderExtra = ['z', 'b', 'y', 'a', 'c', 'x']; self::assertSame( ['z' => 'z', 'b' => 'b', 'y' => 'y', 'a' => 'a'], ArrayUtils::sortByArray($array, $testOrderExtra) ); $testOrderMissing = ['z', 'b']; self::assertSame( ['z' => 'z', 'b' => 'b', 'a' => 'a', 'y' => 'y'], ArrayUtils::sortByArray($array, $testOrderMissing) ); $testOrderMissingWithExtra = ['z', 'b', 'c', 'x']; self::assertSame( ['z' => 'z', 'b' => 'b', 'a' => 'a', 'y' => 'y'], ArrayUtils::sortByArray($array, $testOrderMissingWithExtra) ); $testEmptyOrder = []; self::assertSame( $sortedArray, ArrayUtils::sortByArray($array, $testEmptyOrder) ); $testIrrelevantOrder = ['i', 'j', 'k']; self::assertSame( $sortedArray, ArrayUtils::sortByArray($array, $testIrrelevantOrder) ); } public function testSafeImplode() { self::assertEquals( 's,1,1.0,1.1,1.0', ArrayUtils::safeImplode(',', ['s', 1, 1.0, 1.1, '1.0']) ); self::assertEquals( 's,1,1.0,1.1,1.0', ArrayUtils::implodeFiltered(',', ['s', 1, 1.0, 1.1, '1.0', null]) ); } }
[+]
..
[-] UtilsTest.php
[edit]
[-] ArrayUtilsTest.php
[edit]
[-] SignatureVerifierTest.php
[edit]
[-] FileUtilsTest.php
[edit]
[-] ClassUtilsTest.php
[edit]
[-] ApiUtilsTest.php
[edit]
[-] JsonUtilsTest.php
[edit]
[-] StringUtilsTest.php
[edit]