让我们从证明开始,这是我面临的竞争条件:
phpunit --filter testMethod testlass path/to/testFile.php
PHPUnit 5.7.26 by Sebastian Bergmann and contributors.
F 1 / 1 (100%)
You should really fix these slow tests (>500ms)...
1. 6441ms to run testClass::testMethod
Time: 6.49 seconds, Memory: 22.00MB
There was 1 failure:
1) ≈
Unable to find row in database table [orders] that matched attributes
[{"collect_cash":104,"id":1728,"final_total":100}].
Failed asserting that 0 is greater than 0.
project/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php:24
path/to/testFile.php:78
FAILURES!
Tests: 1, Assertions: 2, Failures: 1.
这是运行和成功的相同测试,没有任何代码更改:
$ phpunit --filter method class path/to/testFile.php
PHPUnit 5.7.26 by Sebastian Bergmann and contributors.
. 1 / 1 (100%)
You should really fix these slow tests (>500ms)...
1. 1631ms to run testClass::testMethod
Time: 1.68 seconds, Memory: 22.00MB
失败发生在它检查数据库记录的地方:
$this->shopperPut("/some/api/call")
->seeApiSuccess();
$this->seeInDatabase('orders', [
'collect_cash' => $order->final_total + $chargeFare,
'id' => $order->id,
'final_total' => $order->final_total,
在/some/api/call
我们这样做
.. some logic
$order->save();
.. more logic
return response()->success(compact('order'));
我已经尝试过安装睡眠命令..但这很麻烦,减慢了测试速度,最重要的是并不总是有效。
我还能做什么?
注意:这个问题不是关于许多使用相同数据库的开发人员。这严格在我的localhost上,事实上我正在使用专门用于单元测试的testDatabase。
答案 0 :(得分:1)
我有没有竞争条件问题的测试。
$response = $this->get('/some/api/call');
$response->assertSessionHas('order');
$this-assertDatabaseHas('orders', [
'collect_cash' => $order->final_total + $chargeFare,
'id' => $order->id,
'final_total' => $order->final_total,
]);