我想模拟来自文件的XML的\SoapClient的响应。

正如SoapClient从文件返回一样,我如何创建stdClass对象。

客户端已经包装了SoapClient,因此可以轻松模拟响应。

我的模拟是这样的:

$soapClient->expects($this->once())
            ->method('call')
            ->will(
                $this->returnValue(
                    simplexml_load_string(
                        file_get_contents(__DIR__ . '/../../../Resources/file.xml')
                    )
                )
            );

但这将返回SimpleXml而不是stdClass。

更新:
提议的json_encode/json_decode hack似乎不处理属性,因为SoapClient返回它们:

SoapClient:
object(stdClass)[4571]
  public 'Lang' => string 'de' (length=2)
  public 'Success' => boolean true

哈克:
  object(stdClass)#27 (3) {
  ["@attributes"]=>
  object(stdClass)#30 (2) {
    ["Lang"]=>
    string(2) "de"
    ["Success"]=>
    string(4) "true"

最佳答案

您可以按以下方式对SimpleXml进行json编码/解码:

$soapClient->expects($this->once())
        ->method('call')
        ->will(
            $this->returnValue(
                json_decode(json_encode(
                    simplexml_load_string(
                        file_get_contents(__DIR__ . '/../../../Resources/file.xml')
                    )
                ))
            )
        );

但我建议将 jar 装响应明确定义为php类。

关于php - 模拟来自本地XML的SoapClient响应,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36406763/

10-09 22:56