Mockery无法在测试方法中调用我的方法

时间:2017-10-11 14:33:59

标签: php testing static phpunit mockery

我正在尝试为下面的课程中的方法编写测试。但是,当我运行测试时,我得到get_b64永远不会运行的错误?我不明白这是怎么回事。

我已经对用于测试静态方法的嘲弄文档进行了一些研究,但据我所知,这个错误不是由于那个?

我需要更改我的测试策略或能够在模拟对象中模拟函数调用吗?

类别:

namespace App\Services\Steam;

use App\Services\Steam\Utils;

class Steam
{
    public function profile(string $steamID)
    {
        $b64 = Utils::get_b64($steamID);

        if ($b64 === null) {
            throw new \App\Exceptions\InvalidSteamId();
        }

        return new Profile($b64);
    }   
}

测试用例:

public function test_create_user_object()
{   
    $id = "123"
    $utilsMock  = Mockery::mock(\App\Services\Steam\Utils::class);

    $utilsMock->shouldReceive('get_b64')
                ->once()
                ->with($id)
                ->andReturn($id);

    $steam = new \App\Services\Steam\Steam();
    $steam->profile($id);
}

1 个答案:

答案 0 :(得分:0)

您静态调用get_b64,这意味着它是从类中调用的,而不是对象。

要模拟此类调用,您需要使用aliases

public function test_create_user_object()
{   
    $id = "123"
    $utilsMock  = Mockery::mock('alias:\App\Services\Steam\Utils');

    $utilsMock->shouldReceive('get_b64')
                ->once()
                ->with($id)
                ->andReturn($id);

    $steam = new \App\Services\Steam\Steam();
    $steam->profile($id);
}

请记住,它完全取代了Utils类,所以如果你从类中调用更多静态函数,你也需要模拟它们。