0

我有一个测试用例:

$response = $this->postJson('api/unit/'.$unit->id.'/import',['file' =>Storage::get('file/file.xlsx')]);
    $response->assertJsonFragment(['a'=>'b']);

我的控制器:

public function import(Request $request, Unit $unit)
{

    $this->validate($request, [
        'file' => 'file|required_without:rows',
        'rows' => 'array|required_without:file',
        'dry_run' => 'boolean',
    ]);
    if ($request->has('rows')) {
        //
    } else {
        $results = $request->file('file');
    }

    return "ok";
}

但我认为我的测试用例是错误的,因为当我在控制器中 dd($reuqest->file('file')) 时,它返回 null。那么,我如何将文件请求到我的控制器中。请帮忙

4

2 回答 2

1

您可以像这样使用 UploadFile:

$fileName= 'file.png';
$filePath=sys_get_temp_dir().'/'.$fileName;
$mimeTypeFile=mime_content_type($filePath);
$file=new UploadedFile($filePath, $fileName, $mimeTypeFile, filesize('$filePath'), null, true)
$response = $this->postJson('api/unit/'.$unit->id.'/import',['file' =>$file]);
$response->assertJsonFragment(['a'=>'b']);

其中 null 是上传的错误常量,true 是测试模式 Symfony UploadedFile 的更多详细信息,请阅读

于 2018-11-05T05:12:08.580 回答
0

如本https://laravel.com/docs/5.4/http-tests#testing-file-uploads中所述。

尝试这样的事情。导入 使用 Illuminate\Http\UploadedFile;

UploadedFile::fake()->create('file.xlsx', $size);
Storage::disk('file')->assertExists('file.xlsx');
于 2018-10-12T09:05:41.187 回答