function DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy

Same name in other branches
  1. 8.9.x core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()
  2. 10 core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()
  3. 11.x core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()

Provides data and expected results for the test method.

Return value

array Data and expected results.

File

core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php, line 76

Class

DenyPrivateImageStyleDownloadTest
@coversDefaultClass \Drupal\image\PageCache\DenyPrivateImageStyleDownload @group image

Namespace

Drupal\Tests\image\Unit\PageCache

Code

public function providerPrivateImageStyleDownloadPolicy() {
    return [
        [
            ResponsePolicyInterface::DENY,
            'image.style_private',
        ],
        [
            NULL,
            'some.other.route',
        ],
        [
            NULL,
            NULL,
        ],
        [
            NULL,
            FALSE,
        ],
        [
            NULL,
            TRUE,
        ],
        [
            NULL,
            new \StdClass(),
        ],
        [
            NULL,
            [
                1,
                2,
                3,
            ],
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.