PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
tests
/
Unit
/
Asset
<?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\Asset; use Cloudinary\Asset\DeliveryType; use Cloudinary\Asset\File; use InvalidArgumentException; use Monolog\Logger as Monolog; use ReflectionException; /** * Class FileTest */ final class FileTest extends AssetTestCase { public function testFile() { $f = new File(self::FILE_NAME); self::assertFileUrl( self::FILE_NAME, (string)$f ); } public function testFileSEO() { $f = new File(self::FILE_NAME); $f->asset->suffix = 'my_favorite_sample'; self::assertAssetUrl( 'files/sample/my_favorite_sample.bin', (string)$f ); $fNoFormat = new File(pathinfo(self::FILE_NAME, PATHINFO_FILENAME)); $fNoFormat->asset->suffix = 'my_favorite_sample'; self::assertAssetUrl( 'files/sample/my_favorite_sample', (string)$fNoFormat ); $fNoFormat->deliveryType(DeliveryType::FETCH); self::assertErrorThrowing( static function () use ($fNoFormat) { return $fNoFormat->toUrl(); } ); } /** * @throws ReflectionException */ public function testInvalidFileImportJson() { $file = new File(self::FILE_NAME, self::TEST_LOGGING); $message = null; $expectedLogMessage = 'Error importing JSON'; $expectedExceptionMessage = 'JsonException :'; try { $file->importJson('{NOT_A_JSON}'); } catch (InvalidArgumentException $e) { $message = $e->getMessage(); } self::assertStringStartsWith($expectedExceptionMessage, $message); self::assertObjectLoggedMessage($file, $expectedLogMessage, Monolog::CRITICAL); } }
[-] VideoTest.php
[edit]
[-] AuthTokenTestCase.php
[edit]
[-] MediaFromParamsTest.php
[edit]
[+]
..
[-] AuthTokenTest.php
[edit]
[-] AssetTestCase.php
[edit]
[-] FileTest.php
[edit]
[-] AssetTransformationTest.php
[edit]
[-] MediaTest.php
[edit]
[-] ImageTest.php
[edit]
[-] DistributionTest.php
[edit]
[-] AssetAuthTokenTest.php
[edit]
[-] AnalyticsTest.php
[edit]