У меня проблемы с проверкой политики авторизации, она показывает рискованный тест, я не знаю, как это исправить.Это недавно установленный 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
, но рисковый по-прежнему показывает.