Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-laravel.blunetdev.com/tests/unit/system/classes/
Upload File :
Current File : /var/www/html/dyna-laravel.blunetdev.com/tests/unit/system/classes/MediaLibraryTest.php

<?php

use Illuminate\Filesystem\FilesystemAdapter;
use System\Classes\MediaLibrary;

class MediaLibraryTest extends TestCase // @codingStandardsIgnoreLine
{
    public function setUp(): void
    {
        MediaLibrary::forgetInstance();
        parent::setUp();
    }

    public function tearDown(): void
    {
        $this->removeMedia();
        parent::tearDown();
    }

    public function invalidPathsProvider()
    {
        return [
            ['./file'],
            ['../secret'],
            ['.../secret'],
            ['/../secret'],
            ['/.../secret'],
            ['/secret/..'],
            ['file/../secret'],
            ['file/..'],
            ['......./secret'],
            ['./file'],
        ];
    }

    public function validPathsProvider()
    {
        return [
            ['file'],
            ['folder/file'],
            ['/file'],
            ['/folder/file'],
            ['/.file'],
            ['/..file'],
            ['/...file'],
            ['file.ext'],
            ['file..ext'],
            ['file...ext'],
            ['one,two.ext'],
            ['one(two)[].ext'],
            ['one=(two)[].ext'],
            ['one_(two)[].ext'],
            /*
            Example of a unicode-based filename with a single quote
            @see: https://github.com/octobercms/october/pull/4564
            */
            ['BG中国通讯期刊(Blend\'r)创刊号.pdf'],
        ];
    }

    /**
     * @dataProvider invalidPathsProvider
     */
    public function testInvalidPathsOnValidatePath($path)
    {
        $this->expectException('ApplicationException');
        MediaLibrary::validatePath($path);
    }

    /**
     * @dataProvider validPathsProvider
     */
    public function testValidPathsOnValidatePath($path)
    {
        $result = MediaLibrary::validatePath($path);
        $this->assertIsString($result);
    }

    public function testListFolderContents()
    {
        $this->setUpStorage();
        $this->copyMedia();

        $contents = MediaLibrary::instance()->listFolderContents();
        $this->assertNotEmpty($contents, 'Media library item is not discovered');
        $this->assertCount(3, $contents);

        $this->assertEquals('file', $contents[2]->type, 'Media library item does not have the right type');
        $this->assertEquals('/winter.png', $contents[2]->path, 'Media library item does not have the right path');
        $this->assertNotEmpty($contents[2]->lastModified, 'Media library item last modified is empty');
        $this->assertNotEmpty($contents[2]->size, 'Media library item size is empty');

        $this->assertEquals('file', $contents[0]->type, 'Media library item does not have the right type');
        $this->assertEquals('/text.txt', $contents[0]->path, 'Media library item does not have the right path');
        $this->assertNotEmpty($contents[0]->lastModified, 'Media library item last modified is empty');
        $this->assertNotEmpty($contents[0]->size, 'Media library item size is empty');
    }

    public function testListAllDirectories()
    {
        $disk = $this->createConfiguredMock(FilesystemAdapter::class, [
            'allDirectories' => [
                '/media/.ignore1',
                '/media/.ignore2',
                '/media/dir',
                '/media/dir/sub',
                '/media/exclude',
                '/media/hidden',
                '/media/hidden/sub1',
                '/media/hidden/sub1/deep1',
                '/media/hidden/sub2',
                '/media/hidden but not really',
                '/media/name'
            ]
        ]);

        $this->app['config']->set('cms.storage.media.folder', 'media');
        $this->app['config']->set('cms.storage.media.ignore', ['hidden']);
        $this->app['config']->set('cms.storage.media.ignorePatterns', ['^\..*']);
        $instance = MediaLibrary::instance();
        $this->setProtectedProperty($instance, 'storageDisk', $disk);

        $this->assertEquals(['/', '/dir', '/dir/sub', '/hidden but not really', '/name'], $instance->listAllDirectories(['/exclude']));
    }

    protected function setUpStorage()
    {
        $this->app->useStoragePath(base_path('storage/temp'));

        config(['filesystems.disks.test_local' => [
            'driver' => 'local',
            'root'   => storage_path('app'),
        ]]);

        config(['cms.storage.media' => [
            'disk'   => 'test_local',
            'folder' => 'media',
            'path'   => '/storage/app/media',
        ]]);
    }

    protected function copyMedia()
    {
        $mediaPath = storage_path('app/media');

        if (!is_dir($mediaPath)) {
            mkdir($mediaPath, 0777, true);
        }

        foreach (glob(base_path('tests/fixtures/media/*')) as $file) {
            $path = pathinfo($file);
            copy($file, $mediaPath . DIRECTORY_SEPARATOR . $path['basename']);
        }
    }

    protected function removeMedia()
    {
        if ($this->app->storagePath() !== base_path('storage/temp')) {
            return;
        }

        foreach (glob(storage_path('app/media/*')) as $file) {
            unlink($file);
        }

        rmdir(storage_path('app/media'));
        rmdir(storage_path('app'));
    }
}