web-dev-qa-db-ja.com

Laravel 5.2でファイルのアップロードをテストする方法

アップロードAPIをテストしようとしていますが、毎回失敗します:

テストコード:

$JSONResponse = $this->call('POST', '/upload', [], [], [
    'photo' => new UploadedFile(base_path('public/uploads/test') . '/34610974.jpg', '34610974.jpg')
]);

$this->assertResponseOk();
$this->seeJsonStructure(['name']);

$response = json_decode($JSONResponse);
$this->assertTrue(file_exists(base_path('public/uploads') . '/' . $response['name']));

ファイルパスは/public/uploads/test/34610974.jpgです

ここにコントローラーのMy Uploadコードがあります:

$this->validate($request, [
    'photo' => 'bail|required|image|max:1024'
]);

$name = 'adummyname' . '.' . $request->file('photo')->getClientOriginalExtension();

$request->file('photo')->move('/uploads', $name);

return response()->json(['name' => $name]);

Laravel 5.2でファイルのアップロードをテストするにはどうすればよいですか? callメソッドを使用してファイルをアップロードする方法は?

35
Ramin

UploadedFileのインスタンスを作成するとき、最後のパラメーター$testtrueに設定します。

$file = new UploadedFile($path, $name, filesize($path), 'image/png', null, true);
                                                                           ^^^^

動作テストの簡単な例を次に示します。 test.pngフォルダーにスタブtests/stubsファイルがあることを想定しています。

class UploadTest extends TestCase
{
    public function test_upload_works()
    {
        $stub = __DIR__.'/stubs/test.png';
        $name = str_random(8).'.png';
        $path = sys_get_temp_dir().'/'.$name;

        copy($stub, $path);

        $file = new UploadedFile($path, $name, filesize($path), 'image/png', null, true);
        $response = $this->call('POST', '/upload', [], [], ['photo' => $file], ['Accept' => 'application/json']);

        $this->assertResponseOk();
        $content = json_decode($response->getContent());
        $this->assertObjectHasAttribute('name', $content);

        $uploaded = 'uploads'.DIRECTORY_SEPARATOR.$content->name;
        $this->assertFileExists(public_path($uploaded));

        @unlink($uploaded);
    }
}
➔phpunit tests/UploadTest.php 
 PHPUnit 4.8.24、Sebastian Bergmannおよび寄稿者による。
 
。
 
時間: 2.97秒、メモリ:14.00Mb 
 
 OK(1テスト、3アサーション)
50
peterm

Laravel 5.4では、\Illuminate\Http\UploadedFile::fake()も使用できます。以下の簡単な例:

/**
 * @test
 */
public function it_should_allow_to_upload_an_image_attachment()
{
    $this->post(
        action('AttachmentController@store'),
        ['file' => UploadedFile::fake()->image('file.png', 600, 600)]
    );

    /** @var \App\Attachment $attachment */
    $this->assertNotNull($attachment = Attachment::query()->first());
    $this->assertFileExists($attachment->path());
    @unlink($attachment->path());
}

別の種類のファイルを偽造する場合は、使用できます

UploadedFile::fake()->create($name, $kilobytes = 0)

Laravel Documentation に関する詳細情報。

12
MiCc83

このコードはこちらで見つけることができます link

セットアップ

/**
 * @param      $fileName
 * @param      $stubDirPath
 * @param null $mimeType
 * @param null $size
 *
 * @return  \Illuminate\Http\UploadedFile
 */
public static function getTestingFile($fileName, $stubDirPath, $mimeType = null, $size = null)
{
    $file =  $stubDirPath . $fileName;

    return new \Illuminate\Http\UploadedFile\UploadedFile($file, $fileName, $mimeType, $size, $error = null, $testMode = true);
}

使用法

    $fileName = 'orders.csv';
    $filePath = __DIR__ . '/Stubs/';

    $file = $this->getTestingFile($fileName, $filePath, 'text/csv', 2100);

フォルダ構造:

- MyTests
  - TestA.php
  - Stubs
    - orders.csv
0
Mahmoud Zalt