Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * F..

Decoded Output download

<?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\Search;

use Cloudinary\Api\Exception\GeneralError;
use Cloudinary\Asset\SearchAsset;
use Cloudinary\Configuration\Configuration;
use Cloudinary\Test\Helpers\MockSearchFoldersApi;
use Cloudinary\Test\Helpers\MockSearchApi;
use Cloudinary\Test\Helpers\RequestAssertionsTrait;
use Cloudinary\Test\Unit\UnitTestCase;

/**
 * Class SearchApiTest
 */
final class SearchApiTest extends UnitTestCase
{
    use RequestAssertionsTrait;

    /**
     * Finds assets by multiple parameters.
     *
     * @throws GeneralError
     */
    public function testExecuteWithParams()
    {
        $mockSearchApi = new MockSearchApi();
        $mockSearchApi
            ->expression('format:png')
            ->maxResults(10)
            ->nextCursor(self::NEXT_CURSOR)
            ->sortBy('created_at', 'asc')
            ->sortBy('updated_at')
            ->aggregate('format')
            ->aggregate('resource_type')
            ->withField('tags')
            ->withField('image_metadata')
            ->fields(['tags', 'context'])
            ->fields('metadata')
            ->fields('tags')
            ->execute();
        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'sort_by'     => [
                    ['created_at' => 'asc'],
                    ['updated_at' => 'desc'],
                ],
                'aggregate'   => ['format', 'resource_type'],
                'with_field'  => ['tags', 'image_metadata'],
                'fields'      => ['tags', 'context', 'metadata'],
                'expression'  => 'format:png',
                'max_results' => 10,
                'next_cursor' => self::NEXT_CURSOR,
            ],
            'Should use right headers for execution of advanced search api'
        );
    }

    /**
     * Duplicates in `aggregate` and `with_field` fields should be deleted.
     * Duplicates in a `sort_by` field should be deleted, and if a duplicate exists, the value (asc/desc) should be
     * updated.
     *
     * @throws GeneralError
     */
    public function testShouldNotDuplicateValues()
    {
        $mockSearchApi = new MockSearchApi();
        $mockSearchApi
            ->sortBy('created_at', 'asc')
            ->sortBy('created_at')
            ->sortBy('public_id', 'asc')
            ->aggregate('format')
            ->aggregate('format')
            ->aggregate('resource_type')
            ->withField('context')
            ->withField('context')
            ->withField('tags')
            ->fields(['tags', 'context'])
            ->fields('tags')
            ->execute();
        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'sort_by'    => [
                    ['created_at' => 'desc'],
                    ['public_id' => 'asc'],
                ],
                'aggregate'  => ['format', 'resource_type'],
                'with_field' => ['context', 'tags'],
                'fields'     => ['tags', 'context'],
            ]
        );
    }

    public function testShouldSearchFolders()
    {
        $mockSearchApi = new MockSearchFoldersApi();
        $mockSearchApi->expression('parent=folder_name')->execute();

        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertStringEndsWith('folders/search', $lastRequest->getRequestTarget());
        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'expression' => 'parent=folder_name',
            ]
        );
    }

    public function testShouldBuildSearchUrl()
    {
        $config = Configuration::instance();
        $config->url->privateCdn();

        $mockSearchApi = new MockSearchApi($config);
        $mockSearchApi->expression("resource_type:image AND tags=kitten AND uploaded_at>1d AND bytes>1m")
                      ->sortBy("public_id", "desc")
                      ->maxResults(30)->ttl(1000)->nextCursor(self::NEXT_CURSOR);

        $searchAsset = new SearchAsset($config);
        $searchAsset->expression("resource_type:image AND tags=kitten AND uploaded_at>1d AND bytes>1m")
                    ->sortBy("public_id", "desc")
                    ->maxResults(30)->ttl(1000)->nextCursor(self::NEXT_CURSOR);

        self::assertStrEquals(
            $searchAsset,
            $mockSearchApi->toUrl()
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?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\Search;

use Cloudinary\Api\Exception\GeneralError;
use Cloudinary\Asset\SearchAsset;
use Cloudinary\Configuration\Configuration;
use Cloudinary\Test\Helpers\MockSearchFoldersApi;
use Cloudinary\Test\Helpers\MockSearchApi;
use Cloudinary\Test\Helpers\RequestAssertionsTrait;
use Cloudinary\Test\Unit\UnitTestCase;

/**
 * Class SearchApiTest
 */
final class SearchApiTest extends UnitTestCase
{
    use RequestAssertionsTrait;

    /**
     * Finds assets by multiple parameters.
     *
     * @throws GeneralError
     */
    public function testExecuteWithParams()
    {
        $mockSearchApi = new MockSearchApi();
        $mockSearchApi
            ->expression('format:png')
            ->maxResults(10)
            ->nextCursor(self::NEXT_CURSOR)
            ->sortBy('created_at', 'asc')
            ->sortBy('updated_at')
            ->aggregate('format')
            ->aggregate('resource_type')
            ->withField('tags')
            ->withField('image_metadata')
            ->fields(['tags', 'context'])
            ->fields('metadata')
            ->fields('tags')
            ->execute();
        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'sort_by'     => [
                    ['created_at' => 'asc'],
                    ['updated_at' => 'desc'],
                ],
                'aggregate'   => ['format', 'resource_type'],
                'with_field'  => ['tags', 'image_metadata'],
                'fields'      => ['tags', 'context', 'metadata'],
                'expression'  => 'format:png',
                'max_results' => 10,
                'next_cursor' => self::NEXT_CURSOR,
            ],
            'Should use right headers for execution of advanced search api'
        );
    }

    /**
     * Duplicates in `aggregate` and `with_field` fields should be deleted.
     * Duplicates in a `sort_by` field should be deleted, and if a duplicate exists, the value (asc/desc) should be
     * updated.
     *
     * @throws GeneralError
     */
    public function testShouldNotDuplicateValues()
    {
        $mockSearchApi = new MockSearchApi();
        $mockSearchApi
            ->sortBy('created_at', 'asc')
            ->sortBy('created_at')
            ->sortBy('public_id', 'asc')
            ->aggregate('format')
            ->aggregate('format')
            ->aggregate('resource_type')
            ->withField('context')
            ->withField('context')
            ->withField('tags')
            ->fields(['tags', 'context'])
            ->fields('tags')
            ->execute();
        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'sort_by'    => [
                    ['created_at' => 'desc'],
                    ['public_id' => 'asc'],
                ],
                'aggregate'  => ['format', 'resource_type'],
                'with_field' => ['context', 'tags'],
                'fields'     => ['tags', 'context'],
            ]
        );
    }

    public function testShouldSearchFolders()
    {
        $mockSearchApi = new MockSearchFoldersApi();
        $mockSearchApi->expression('parent=folder_name')->execute();

        $lastRequest = $mockSearchApi->getMockHandler()->getLastRequest();

        self::assertStringEndsWith('folders/search', $lastRequest->getRequestTarget());
        self::assertRequestJsonBodySubset(
            $lastRequest,
            [
                'expression' => 'parent=folder_name',
            ]
        );
    }

    public function testShouldBuildSearchUrl()
    {
        $config = Configuration::instance();
        $config->url->privateCdn();

        $mockSearchApi = new MockSearchApi($config);
        $mockSearchApi->expression("resource_type:image AND tags=kitten AND uploaded_at>1d AND bytes>1m")
                      ->sortBy("public_id", "desc")
                      ->maxResults(30)->ttl(1000)->nextCursor(self::NEXT_CURSOR);

        $searchAsset = new SearchAsset($config);
        $searchAsset->expression("resource_type:image AND tags=kitten AND uploaded_at>1d AND bytes>1m")
                    ->sortBy("public_id", "desc")
                    ->maxResults(30)->ttl(1000)->nextCursor(self::NEXT_CURSOR);

        self::assertStrEquals(
            $searchAsset,
            $mockSearchApi->toUrl()
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 d5eedfeff10c0438c491dd746145d158
Eval Count 0
Decode Time 106 ms