sandyandi / test-uploadedfile-factory
UploadedFile Factory for Testing
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sandyandi/test-uploadedfile-factory
Requires
- symfony/http-foundation: 2.7.*
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2026-01-18 00:20:15 UTC
README
A simple Symfony\Component\HttpFoundation\File\UploadedFile factory for testing
Installation
Run the following:
composer require sandyandi/test-uploadedfile-factory:1.0.*
Usage
Instantiation
use Sandyandi\TestUploadedFileFactory\TestUploadedFileFactory; $testUploadedFileFactory = new TestUploadedFileFactory;
By default, it will use the /tmp directory located in vendor/sandyandi/test-uploadedfile-factory as its working directory. You can specify a different directory by specifying the directory path during instantiation:
$workDir = 'path/to/your/work/dir'; $testUploadedFileFactory = new TestUploadedFileFactory($workDir);
Note: make sure the working directory is writeable.
Object creation
Once the factory has been instantiated, you can create an UploadedFile instance by doing the following:
$pathToFile = 'path/to/your/file'; $uploadedFile = $testUploadedFileFactory->create($pathTofile);
The factory will create a copy of your file and put it in the working directory.
tearDown()
Be sure to call $testUploadedFileFactory->tearDown(); in your test's tearDown() method to delete all created/moved files.