gpt4 book ai didi

laravel-5 - Laravel 集成测试在作为一个类运行时抛出虚假的 404 错误,个​​别测试工作正常

转载 作者:行者123 更新时间:2023-12-02 15:25:50 25 4
gpt4 key购买 nike

我正在使用 L5.1 中的新集成测试工具。我在运行测试类时遇到了一些奇怪的错误 - 大多数是我正在测试的页面上的 404。奇怪的是,当我过滤到单个测试时,测试顺利通过。当我运行它所属的整个测试类或测试套件时,它会失败并显示 404。该路由在浏览器中有效,并且当我自行运行时测试通过,因此这显然不是有效错误。

代码看起来像这样:

class MyTest extends \TestCase
{
use WithoutMiddleware;

public function __construct() {

parent::__construct();

$this->mock = m::mock('MyApp\Stuff\Repository');
$this->validator = m::mock('Illuminate\Validation\Factory');
$this->mockedClass = m::mock('MyApp\Stuff\Service');
}

/**
* @test
*/
public function it_should_get_all_thingies() {
$this->mockedClass->shouldReceive('someMethod')
->once()
->andReturn('yay');
$this->app->instance('MyApp\Stuff\Service', $this->mockedClass);

$this->visit('/api/v1/thingies');
}
}

当我运行时 phpunit --filter=it_should_get_all_thingies ,它工作正常。当我运行时 phpunit --filter=MyTest,它死于 404。我可以将错误消息中的相关 URL 复制到浏览器中,它工作正常。

我能想到的唯一其他相关事实是,这是从 L4.2 到 5.0 再到 5.1 的更新。

非常感谢任何帮助。

最佳答案

找出触发错误的原因以及解决方法。我正在拉入这样的辅助路由文件:

Route::get('/', function () {
return view('welcome');
});

Route::group(['prefix' => 'api/v1'], function() {
require_once_app_path(__DIR__ . '/routes2.php');

});

require_once_app_path 触发了这个问题。在 L4.2 或 L5.0 中没有发生,在我们升级到 5.1 时开始。将其替换为 require 似乎可以解决问题。

关于laravel-5 - Laravel 集成测试在作为一个类运行时抛出虚假的 404 错误,个​​别测试工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30445249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com