PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
tests
/
Integration
/
Admin
<?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\Integration\Admin; use Cloudinary\Api\Exception\ApiError; use Cloudinary\Test\Integration\IntegrationTestCase; use PHPUnit_Framework_Constraint_IsType as IsType; /** * Class TagsTest */ final class TagsTest extends IntegrationTestCase { private static $PREFIX_TAG; private static $TAG_WITH_PREFIX; /** * @throws ApiError */ public static function setUpBeforeClass() { parent::setUpBeforeClass(); self::$PREFIX_TAG = 'tags_prefix_tag_' . self::$UNIQUE_TEST_TAG; self::$TAG_WITH_PREFIX = self::$PREFIX_TAG . self::$UNIQUE_TEST_TAG; self::uploadTestAssetImage(['tags' => [self::$TAG_WITH_PREFIX]]); } public static function tearDownAfterClass() { self::cleanupTestAssets(); parent::tearDownAfterClass(); } /** * List tags of images * * @throws ApiError */ public function testListTagsOfImages() { $result = self::$adminApi->tags(['max_results' => 2]); self::assertObjectStructure($result, ['tags' => IsType::TYPE_ARRAY]); self::assertCount(2, $result['tags']); self::assertInternalType(IsType::TYPE_STRING, $result['tags'][0]); } /** * List all tags with a given prefix */ public function testListTagsWithPrefix() { $result = self::$adminApi->tags(['prefix' => self::$PREFIX_TAG]); self::assertObjectStructure($result, ['tags' => IsType::TYPE_ARRAY]); self::assertCount(1, $result['tags']); self::assertContains(self::$TAG_WITH_PREFIX, $result['tags']); } }
[-] PingTest.php
[edit]
[-] TagsTest.php
[edit]
[-] AssetTest.php
[edit]
[-] OAuthTest.php
[edit]
[-] UploadPresetsTest.php
[edit]
[+]
..
[-] MetadataFieldsTest.php
[edit]
[-] TransformationsTest.php
[edit]
[-] FoldersTest.php
[edit]
[-] UploadMappingsTest.php
[edit]
[-] AdaptiveStreamingProfilesTest.php
[edit]
[+]
Assets
[-] UsageTest.php
[edit]