Laravel PHPUnit returning 404(Laravel PHPUnit 返回 404)
问题描述
对于 laravel API,我已经编写了测试用例.但是每当我运行测试用例时,它总是失败并出现以下错误,
1) 测试功能CompanyTest::orgTest预期状态码 200 但收到 404.无法断言 200 与 404 相同.
将 $this->withoutExceptionHandling();
添加到测试用例代码后,它会返回以下错误,
1) 测试功能CompanyTest::orgTestSymfonyComponentHttpKernelExceptionNotFoundHttpException: POST 域名/index.php/api/company/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php:126/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:415/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:113/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:507/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:473/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:332/tests/Feature/CompanyTest.php:21
<块引用>
我在测试文件中的代码是,
公共函数 orgTest(){$requestData = [组织 ID"=>10,offset"=>1,limit"=>10,notificationId"=>""];$response = $this->withoutExceptionHandling();$response->postJson('/index.php/api/company',$requestData);$response->assertStatus(200);}
我已经搜索了错误并尝试了许多解决方案但无法成功.任何人请告诉我是什么问题.
是404错误,所以没有找到你的网页:
SymfonyComponentHttpKernelExceptionNotFoundHttpException: POST 域名/index.php/api/company
不好的方式,发布到 /api/company
或使用 /index.php/api/company
但不是使用域名"!
如果它不起作用,请检查该 api 路由的路由配置.你的控制器和动作声明得好吗?
For laravel API I have write the test cases. But whenever I am running the test cases it always failed with below error,
1) TestsFeatureCompanyTest::orgTest
Expected status code 200 but received 404.
Failed asserting that 200 is identical to 404.
After adding the $this->withoutExceptionHandling();
to testcase code it return the below error,
1) TestsFeatureCompanyTest::orgTest
SymfonyComponentHttpKernelExceptionNotFoundHttpException: POST domainname/index.php/api/company
/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php:126
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:415
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:113
/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:507
/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:473
/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php:332
/tests/Feature/CompanyTest.php:21
My Code in Test File is,
public function orgTest()
{
$requestData = ["organizationId" => 10,"offset"=>1,"limit"=>10,"notificationId"=>""];
$response = $this->withoutExceptionHandling();
$response->postJson('/index.php/api/company',$requestData);
$response->assertStatus(200);
}
I have googled the error and tried many solutions but unable to succeed. Anyone please let me know whats the issue.
It is a 404 error, so your webpage is not found :
SymfonyComponentHttpKernelExceptionNotFoundHttpException: POST domainname/index.php/api/company
Bad way to go, post to /api/company
or with /index.php/api/company
but not with "domainname" !
If it is not working, check your route config for that api route. Are your controller and action declared well ?
这篇关于Laravel PHPUnit 返回 404的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel PHPUnit 返回 404
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01