Behat:Goutte / Guzzle通过cURL下载文件"警告:curl_setopt_array():3607不是有效的文件句柄资源"

时间:2015-08-25 20:33:42

标签: php curl behat guzzle goutte

使用Behat测试涉及下载文件的某些行为。使用Goutte和Guzzle拦截文件下载,以便我可以在另一步中与它进行交互。

//Where to put the file
$tmpFile = 'download.zip';
$handle  = fopen($tmpFile, 'w');

$goutteDriver = $this->getSession()->getDriver();
$goutteClient = $goutteDriver->getClient();

/** @var \Guzzle\Http\Client $guzzleClient */
$guzzleClient = $goutteClient->getClient();
$guzzleClient->getConfig()->set('curl.options', [CURLOPT_FILE => $handle]);
$guzzleClient->setSslVerification(false);

$goutteDriver->visit($url);

fclose($handle);

它工作正常,但如果我连续运行两个不同的场景运行同一步骤,我会收到错误:

  

"警告:curl_setopt_array():3607不是有效的文件句柄资源"

编辑:我尝试不关闭$ handle,然后在它之后的每个场景都跳过而不是运行。还尝试使用$guzzleClient->getConfig()->remove('curl.options');,这导致后续步骤无效。

Edit2:问题示例:

除了我已经包含了这里的代码,zip文件的下载之外,我还取出了所有其他步骤。

我的功能现在基本上是这样的:

 Background:
   Given I am logged in as an admin

 Scenario: A
    When I click "Export All"

 Scenario: B
    When I click "Export All"

当我运行它时,输出如下所示:

  Background:                        
    Given I am logged in as an admin

  Scenario: A
    When I click "Export All" 

  Scenario: B

Warning: curl_setopt_array(): supplied argument is not a valid File-Handle resource in C:\wamp\www\cems2\vendor\guzzle\guzzle\src\Guzzle\Http\Curl\CurlHandle.php on line 219

Call Stack:
    0.0000     131776   1. {main}() C:\wamp\www\cems2\vendor\behat\behat\bin\behat:0
    0.0360    1699576   2. Symfony\Component\Console\Application->run() C:\wamp\www\cems2\vendor\behat\behat\bin\behat:32


When I click "Export All" (skipped)

后面跟着一个堆栈跟踪,我无法找到对我的任何代码的任何引用。完整堆栈跟踪在这里:http://pastebin.com/Fv48gdYm

0 个答案:

没有答案