2 回答
TA贡献1858条经验 获得超8个赞
通过避免副作用,单元测试效果最好。两者date都strtotime取决于在您的主机系统上定义的外部状态,即当前时间。
解决这个问题的一种方法是使当前时间成为可注入属性,允许您“冻结”它或将其设置为特定值。
如果您查看它的定义,strtotime它允许设置当前时间:
strtotime ( string $time [, int $now = time() ] ) : int
与date:
date ( string $format [, int $timestamp = time() ] ) : string
因此,请始终从您的函数中注入该值,以将代码结果与主机状态分离。
function changeStartEndDate($now) {
if (date('j', strtotime("now", $now), $now) === '1') {
...
$this->startDate = date("Y-n-j", strtotime(date("Y-m-01", $now), $now));
$this->endDate = date("Y-n-j", strtotime("yesterday", $now), $now);
}
您的功能是课程的一部分吗?然后,我将制作$now构造函数的一部分,并将其默认为time(). 在你的测试用例中,你总是可以注入一个固定的数字,它总是会返回相同的输出。
class MyClassDealingWithTime {
private $now;
public function __construct($now = time()) {
$this->now = $now;
}
private customDate($format) {
return date($format, $this->now);
}
private customStringToTime($timeSring) {
return strtotime($timeStrimg, $this->now);
}
}
然后在您的测试用例中将 $now 设置为您需要的值,例如通过
$firstDayOfAMonth = (new DateTime('2017-06-01'))->getTimestamp();
$testInstance = new MyClassDealingWithTime(firstDayOfAMonth);
$actual = $testInstance->publicMethodYouWantTotest();
TA贡献1821条经验 获得超4个赞
免责声明:我写了这个库
我正在添加一个答案以提供一种替代方法,该方法可以对您的代码进行零修改,并且无需注入当前时间。
如果你有能力安装 php uopz 扩展,那么你可以使用https://github.com/slope-it/clock-mock。
然后,您可以在测试期间使用ClockMock::freeze
和ClockMock::reset
将内部 php 时钟“移动”到特定时间点。
- 2 回答
- 0 关注
- 126 浏览
添加回答
举报