如何在 Laravel 中测试时模拟 time() 函数?

How to mock time() function while testing in Laravel?

我正在使用 Laravel 做一个数学竞赛项目。项目中的所有控制器方法都使用了大量的 time() 函数。

根据当前时间是否在比赛直播时间之间,向用户返回问题。

在编写功能测试和单元测试时,如何在控制器中模拟 time() 函数以便在 运行 测试项目时设置我想要的时间?

我认为应该使用 Carbon 而不是 time():

Carbon::now()->timestamp // Or just now()->timestamp in 5.5+

您可以轻松模拟 Carbon 实例。

如果你不常使用time(),你也可以:

function timestamp()
{
    if (app()->runningUnitTests()) {
        return ....
    } else {
        return time();
    }
}

并用它代替 time():

timestamp()

您可以通过两种方式与时间互动:

选项 1:使用 Laravel 内置函数

Note: Laravel Version >= 8

最新版本Laravel有很好的时间交互方法:

$this->travel(5)->milliseconds();
$this->travel(5)->seconds();
$this->travel(5)->minutes();
$this->travel(5)->hours();
$this->travel(5)->days();
$this->travel(5)->weeks();
$this->travel(5)->years();

// Travel into the past...
$this->travel(-5)->hours();

// Travel to an explicit time...
$this->travelTo(now()->subHours(6));

// Return back to the present time...
$this->travelBack();

参考:https://laravel.com/docs/mocking#interacting-with-time

选项 2:碳法

Carbon::setTestNow();

或设置任何日期

$knownDate = Carbon::create(2001, 5, 21, 12);
Carbon::setTestNow($knownDate); // Or any dates    
echo Carbon::now();  // will show 2001-05-21 12:00:00

参考:https://laraveldaily.com/carbon-trick-set-now-time-to-whatever-you-want/