如何使用laravel和phpunit测试文件上传?
我正在尝试在我的laravel控制器上运行此功能测试。我想测试图像处理,但要这样做,我想伪造图像上传。我该怎么做?我在网上找到了一些例子,但似乎没有一个适合我。以下是我所拥有的:
public function testResizeMethod()
{
$this->prepareCleanDB();
$this->_createAccessableCompany();
$local_file = __DIR__ . '/test-files/large-avatar.jpg';
$uploadedFile = new Symfony\Component\HttpFoundation\File\UploadedFile(
$local_file,
'large-avatar.jpg',
'image/jpeg',
null,
null,
true
);
$values = array(
'company_id' => $this->company->id
);
$response = $this->action(
'POST',
'FileStorageController@store',
$values,
['file' => $uploadedFile]
);
$readable_response = $this->getReadableResponseObject($response);
}
但控制器不会通过此检查:
elseif (!Input::hasFile('file'))
{
return Response::error('No file uploaded');
}
因此,不知何故,文件未正确传递。我该怎么做?