在非测试类中使用模拟 PHPUnit

问题描述 投票:0回答:1

对于一个项目,我必须模拟一个类,并且我想在我的代码中使用这个模拟来模拟一种行为。 在我的测试类中,我放置了以下代码:

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”中,我必须使用我模拟的类,在属性中,该类有一个“Client”对象,即我模拟的类。 然后我必须使用这个对象。

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

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

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

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

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

php mocking phpunit stub
1个回答
1
投票

看来 PHPUnit 的默认模拟引擎强烈依赖于 PHPUnit 本身。

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

参见 http://docs.mockery.io/en/latest/

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

© www.soinside.com 2019 - 2024. All rights reserved.