hallodanny/laravel-virtual-storage

Virtual Filesystem Storage Adapter for Laravel

Downloads

7

Stars

0

Version

v1.0.1

This package has been archived

Laravel Virtual Storage Filesystem Adapter

Sometimes, when we are testing, it would be very nice to just easily swap out the various Storage:disk() calls with a virtual files system like mikey179/vfsStream.

Installation

composer require --dev hallodanny/laravel-virtual-storage

Then register the provider in your App\Providers\AppServiceProvider like so:

public function register()
{
    if ($this->app->environment('testing')) {
        if (class_exists(VirtualFilesystemServiceProvider::class)) {
            $this->app->register(VirtualFilesystemServiceProvider::class);
        }
    }
}

This assumes you stick with the default APP_ENV=testing settings that Laravel comes with out of the box. Of course, you may also register the provider in the more traditional manner if you want the virtual file system adapter available in other environments, of it you just don't like the way we do it.

Configuration

All configuration can be done in a combination of your .env, phpunit.xml, and config/filesystems.php.

Suppose you had a config/filesystems.php that looked something like this:

return [
    ....

    'disks' => [
        'data' => [
            'driver' => 'local',
            'root'   => env('STORAGE_DATA_DIR'),
        ],

        'archive' => [
            'driver'   => 's3'
            'key'      => env('S3_KEY'),
            'secret'   => env('S3_SECRET'),
            'region'   => env('S3_REGION'),
            'bucket'   => env('S3_DEVELOP_BUCKET')
        ]
    ],
];

Simply make a modification to the driver property:

return [
    ....

    'disks' => [

        'data' => [
            'driver'  => env('STORAGE_DATA_DRIVER', 'local'),
            'root'    => env('STORAGE_DATA_DIR')
        ],

        'archive' => [
            'driver'   => env('S3_ARCHIVE_DRIVER', 's3')
            'key'      => env('S3_KEY'),
            'secret'   => env('S3_SECRET'),
            'region'   => env('S3_REGION'),
            'bucket'   => env('S3_DEVELOP_BUCKET')
        ]
    ],
];

Setting up the driver with env() allows us to default to our standard drivers or allow us to override that in phpunit.xml to switch over to the virtual filesystem driver.

Now, in your phpunit.xml add:

<env name="STORAGE_DATA_DRIVER" value="vfs"/>
<env name="S3_ARCHIVE_DRIVER" value="vfs"/>

That is all there is to it, those drives will now use the virtual filesystem adapter.

hallodanny

Author

hallodanny