【发布时间】:2018-07-02 08:43:13
【问题描述】:
让我们从证明我在这里面临的竞争条件开始:
失败的测试用例❌
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'));
我尝试过的
我尝试过放置睡眠命令.. 但这很麻烦,会减慢测试速度,最重要的是并不总是有效。
我还能做什么?
注意:这个问题与许多开发人员使用同一个数据库无关。这完全是在我的本地主机上,实际上我使用的是专门为单元测试制作的 testDatabase。
【问题讨论】:
标签: php laravel testing laravel-5 phpunit