在非测试类中使用Mock PHPUnit

时间:2017-05-15 14:29:26

标签: mocking phpunit stub

对于一个项目,我必须模拟一个类,我想在我的代码中使用这个模拟来模拟一个行为。 在我的Test类中,我输入了以下代码:

public function testExportCsv()
{
    $mockObject = $this->getMockBuilder('\Client')
        ->setConstructorArgs(array("0"))
        ->getMock();
    $res = $this->searchDocApiDocumentsStub();
    $mockObject->method('searchDocuments')
        ->willReturn($res);
}

public function searchDocApiDocumentsStub()
{
    $res = array();
    $yml = Yaml::parse(file_get_contents("../src/ExportCSVBundle/Resources/config/generic.yml"));
    $typeDoc = "FAC";
    $metas[$typeDoc] = $yml["ETT"][strtoupper($typeDoc)];


    foreach ($this->documents as $document) {
        if ($document["type"] == "DocumentsAPI\\Model\\" . str_replace('$eq ', '', $typeDoc)) {
            foreach ($metas[$typeDoc] as $field) {
                $docres[] = $document["metas"][$field];
            }
            $res = array_merge($res, $docres);
        }
    }
    return $res;
}

在另一个类“Export”中,我必须使用类I mock,在属性中,此类具有“Client”对象,类I Mock。 然后我必须使用这个对象。

class Export {
    public function __construct(Client $docApiClient)
    {
        $this->docApiClient = $docApiClient;
    }

    $docs = $this->docApiClient->searchDocuments($client, $query, null, false, false, $metasToExport);

我希望这个“searchDocuments”成为我制作的Stub。

$export = new \ExportLibraryBundle\ExportLibrary\Export(//What Do I put ??);

我不知道我是否清楚,但谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

似乎PHPUnit的默认模拟引擎强烈依赖于PHPUnit itselt。

如果你想在PHPUnit测试之外使用模拟,你可以使用外部模拟库,即。嘲弄。它非常相似,除了不依赖于PHPUnit并且具有PHPUnit Mocks没有的一些很棒的功能(即.demeter链模拟)。

请参阅http://docs.mockery.io/en/latest/

您可以在此处查看一些示例和比较:https://code.tutsplus.com/tutorials/mockery-a-better-way--net-28097