mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
69 lines
1.7 KiB
PHP
69 lines
1.7 KiB
PHP
|
<?php namespace Tests\Uploads;
|
||
|
|
||
|
|
||
|
trait UsesImages
|
||
|
{
|
||
|
/**
|
||
|
* Get the path to our basic test image.
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function getTestImageFilePath()
|
||
|
{
|
||
|
return base_path('tests/test-data/test-image.png');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get a test image that can be uploaded
|
||
|
* @param $fileName
|
||
|
* @return \Illuminate\Http\UploadedFile
|
||
|
*/
|
||
|
protected function getTestImage($fileName)
|
||
|
{
|
||
|
return new \Illuminate\Http\UploadedFile($this->getTestImageFilePath(), $fileName, 'image/png', 5238);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the raw file data for the test image.
|
||
|
* @return false|string
|
||
|
*/
|
||
|
protected function getTestImageContent()
|
||
|
{
|
||
|
return file_get_contents($this->getTestImageFilePath());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the path for a test image.
|
||
|
* @param $type
|
||
|
* @param $fileName
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function getTestImagePath($type, $fileName)
|
||
|
{
|
||
|
return '/uploads/images/' . $type . '/' . Date('Y-m-M') . '/' . $fileName;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Uploads an image with the given name.
|
||
|
* @param $name
|
||
|
* @param int $uploadedTo
|
||
|
* @return \Illuminate\Foundation\Testing\TestResponse
|
||
|
*/
|
||
|
protected function uploadImage($name, $uploadedTo = 0)
|
||
|
{
|
||
|
$file = $this->getTestImage($name);
|
||
|
return $this->call('POST', '/images/gallery/upload', ['uploaded_to' => $uploadedTo], [], ['file' => $file], []);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Delete an uploaded image.
|
||
|
* @param $relPath
|
||
|
*/
|
||
|
protected function deleteImage($relPath)
|
||
|
{
|
||
|
$path = public_path($relPath);
|
||
|
if (file_exists($path)) {
|
||
|
unlink($path);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|