4

私はPhantomJSでPHPUnit 4.6とPHPUnit Selenium 1.4.2を使用しています。Selenium テストが失敗したときに、最後のページのスクリーンショットをキャプチャしたい。PHPUnit ManualにはSelenium 1 の例がありますが、GhostDriver を使用する必要があるため、Selenium 2 で使用しようとしています。

WebTestCase.php

class WebTestCase extends PHPUnit_Extensions_Selenium2TestCase
{
    protected $captureScreenshotOnFailure = TRUE;
    protected $screenshotPath = '/../../screenshots';
    protected $screenshotUrl = 'http://localhost:8080/screenshots';

    protected function setUp() {
        $this->setBrowser('phantomjs');
        $this->setBrowserUrl("http://localhost:8080");
        $this->setHost('localhost');
    }
}

Test.php

class Test extends WebTestCase
{

    public function testTitle()
    {
        $this->url('');
        assertEquals($this->title(), "My App");
    }
}

しかし、これはスクリーンショットをキャプチャしません。

$ vendor/bin/phpunit 
PHPUnit 4.6-ge85198b by Sebastian Bergmann and contributors.

Configuration read from /MyApp/phpunit.xml

F

Time: 231 ms, Memory: 5.50Mb

There was 1 failure:

1) Test::testTitle
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-''
+'My App'

/MyApp/tests/functional/Test.php:7

FAILURES!                            
Tests: 1, Assertions: 1, Failures: 1.
4

4 に答える 4

6

@Jens A. Koch@John Josephのソリューションを組み合わせると、次のようになります。

<?php

class homepageTest extends PHPUnit_Extensions_Selenium2TestCase {

    private $listener;

    public function setUp() {

        // Your screenshots will be saved in '/var/www/vhosts/screenshots/'
        $screenshots_dir = '/var/www/vhosts/screenshots/';

        $this->listener = new PHPUnit_Extensions_Selenium2TestCase_ScreenshotListener($screenshots_dir);

        $this->setBrowser('firefox');
        $this->setBrowserUrl('https://netbeans.org');
    }

    public function testNetbeansContainsHorses() {
        $this->url('https://netbeans.org');
        $this->assertContains('Equestrian', $this->title()); // Will fail on NetBeans page.
    }


    public function onNotSuccessfulTest($e) {
        $this->listener->addError($this, $e, microtime(true));        
        parent::onNotSuccessfulTest($e);
    }
}
于 2016-05-23T03:31:32.983 に答える
2

すべての Web テストでこれを行う方法は、親テスト ケース クラスのテスト失敗関数の 1 つをオーバーライドし、そこにスクリーンショットをキャプチャすることです。

例:

class MyBaseWebTests
{

    $this->directory = '/some_path_to_put_screenshots_in/';

    // Override PHPUnit_Extensions_Selenium2TestCase::onNotSuccessfulTest
    public function onNotSuccessfulTest(Exception $e)
    {
        $filedata   = $this->currentScreenshot();
        $file       = $this->directory . get_class($this) . '.png';
        file_put_contents($file, $filedata);

        parent::onNotSuccessfulTest($e);
    }
}

これで、Web テストのいずれかが失敗した後、Web テスト クラスの名前をファイル名として使用して、そのフォルダーにスクリーンショットがダンプされます。

于 2015-08-14T13:52:48.623 に答える