我是Laravel的新手,并且正在跟随Pluralsight中的Play by Play: Getting Started with Laravel 5 with Steven Maguire视频。这是Vagrant中lavarvel/laravel
框的干净安装。 Laravel版本为5.4.15,PHPUnit版本为5.7.16。
然而,当我添加组和控制器时,我似乎无法让我的路由测试失败。
这是我的routes/web.php
文件:
<?php
Route::get('products', ['as' => 'products', function(){
return App\Product::all();
}]);
这是我的tests/Unit/ExampleTest.php
:
<?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Http\Response;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
public function testProductsList(){
$this->get(route('products'))
->assertResponseOk();
}
}
只有这个基本设置,当我运行测试时,我得到了这个回复:Error: Call to undefined method Illuminate\Http\Response::assertResponseOk()
阅读后,我将测试重组为:
public function testProductsList(){
$response = $this->get(route('products'));
$this->assertEquals(200, $response->status());
}
这个新结构成功,所以我继续播放视频,然后我们添加了一个路由组。这是routes\web.php
文件中的路由组:
Route::group(['prefix' => 'api'], function(){
Route::get('products', ['as' => 'products', function(){
return App\Product::all();
}]);
});
这也成功了。当我将Route::resource
引入流程时,问题就开始了。测试开始失败。这是新的routes\web.php
文件:
Route::group(['prefix' => 'api'], function(){
Route::resource('products', 'ProductController', ['only' => ['index', 'store', 'update']]);
});
以下是此文件ProductController
中的app/Http/Controllers/ProductController.php
类:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProductController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
}
我用php artisan make:controller ProductController
创建了这个控制器。这是我现在收到的错误:InvalidArgumentException: Route [products] not defined.
我尝试将调整后的testProductsList()
方法更改回原始代码,但仍无效。
有关如何解决这些错误的任何见解?我宁愿保留原始的testProductsList()
方法代码,但是,如果这不再是它的工作方式,那么只要我能让它工作,我就没事了。提前感谢您的帮助和见解!
编辑
根据评论,我使用命令ProductController
删除并重新创建了php artisan make:controller ProductController --resource
类。我已在文件app/Http/Controllers/ProductController.php
中编辑了上述内容以反映更改。但是,测试仍然失败。在Alex的回答中,我也将testProductsList
方法改为此,但没有改变:
public function testProductsList(){
/*
* I tried just `products` for the route
* and still receive the error.
*/
$this->get(route('api.products'));
$this->assertResponseOk();
}
还有其他想法吗?
答案 0 :(得分:1)
您错过了$this
:
public function testProductsList(){
$this->get(route('products'));
$this->assertResponseOk();
}
不过,这不是一个单位测试。见What's the difference between unit, functional, acceptance, and integration tests?
答案 1 :(得分:1)
尝试php artisan route:list
获取路线的名称
我怀疑路线的名称不是products
(可能是products.index
或api.products.index
),因此错误。
有三种方法可以解决这个问题:
$this->get(route('products'));
(例如$this->get(route('products.index'));
)route
辅助函数,请直接参考路径:$this->get('/api/products/index');
使用自定义名称重命名路径,如下所示:
Route::resource('products', 'ProductController',
['names' => ['index' => 'products.list', // etc...]]);
然后使用$this->get(route('products.list'));
答案 2 :(得分:0)
您可以像这样编辑Route :: group:
Route::group(['prefix' => 'api', 'as' => 'api.'], function(){
Route::resource('products', 'ProductController', ['only' => ['index', 'store', 'update']]);
});