无法在Laravel 5.5中测试授权策略

时间:2018-10-22 10:17:33

标签: php laravel phpunit

我在测试授权策略时遇到麻烦,它表明测试存在风险,我不知道该如何解决。这是新安装的laravel 5.5

PHPUnit 6.5.13 by Sebastian Bergmann and contributors.

R.                                                                  2 / 2 (100%)

Time: 99 ms, Memory: 16.00MB

There was 1 risky test:

1) Tests\Feature\ExampleTest::testBasicTest
Test code or tested code did not (only) close its own output buffers

OK, but incomplete, skipped, or risky tests!
Tests: 2, Assertions: 2, Risky: 1.

这是我的测试代码:

public function testBasicTest()
{
    $this->get('/home')
        ->assertStatus(403);
}

当我使用dd($this->get('/home')->getContent());时,出现类似这样的错误。

file_get_contents([internal]): failed to open stream: No such file or directory
in Frame.php line 122

这是我的家庭管理员

<?php

namespace App\Http\Controllers;

use App\User;
use Illuminate\Http\Request;

class HomeController extends Controller
{
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        $this->authorize('create', User::class);
        return view('home');
    }
}

这是我的UserPolicy.php

<?php

namespace App\Policies;

use App\User;
use Illuminate\Auth\Access\HandlesAuthorization;

class UserPolicy
{
    use HandlesAuthorization;

    /**
     * Create a new policy instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    public function create(User $user)
    {
        return true;
    }
}

这是我的AuthServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use App\User;
use App\Policies\UserPolicy;

class AuthServiceProvider extends ServiceProvider
{
    /**
     * The policy mappings for the application.
     *
     * @var array
     */
    protected $policies = [
        User::class => UserPolicy::class,
    ];

    /**
     * Register any authentication / authorization services.
     *
     * @return void
     */
    public function boot()
    {
        $this->registerPolicies();

        //
    }
}

其他: 我看到了:https://phpunit.readthedocs.io/en/7.4/risky-tests.html 我尝试将所有这些都设置为false,但风险仍然存在。

1 个答案:

答案 0 :(得分:3)

设法自己解决问题,我刚跑composer update

似乎问题出在软件包filp/whoops v2.3.0中,这引起异常。他们设法在v2.3.1。中修复了该问题。