如何测试将伪造的文件上传到验证Laravel中文件的路由?

时间:2019-04-01 13:13:09

标签: laravel file unit-testing testing

我试图在控制器中为路由“存储”编写一个测试单元,也通过我的方法的验证器传递一个要测试的假文件,但我得到的只是数据不是文件:

Illuminate\Foundation\Testing\TestResponse {
  +baseResponse: Illuminate\Http\JsonResponse {
    #data: "{
              "message":"The given data was invalid.",
              "errors":{"invoice":["The invoice must be a file."]}
           }"

代码:

  • 测试:
        $data = factory('App\Domain\X\X')->raw(['creator_id' => $user->id]);
        $data['invoice'] = UploadedFile::fake()->create('invoice.xlsx');
        $response = $this->json('POST', route('x.store', $data));
  • 控制器:
 public function store(XXXRequest $request)
    {
        ...
  • 请求:
class XXXRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'name' => 'required',
            'invoice' => 'nullable|file',
        ];
    }

2 个答案:

答案 0 :(得分:1)

尝试一下:

测试:

.find(".custom-select-trigger").html($(this).html());

答案 1 :(得分:0)

只需从本地文件创建一个UploadedFile并将其添加到您的请求中即可:

    use Illuminate\Http\UploadedFile;

    $filename = public_path('tests/invoice.pdf');
    $file = new UploadedFile($filename, 'invoice.pdf', 'application/pdf', filesize($filename), null, true);

    $this->post('/', [
        'invoice' => $file,
    ]);