2

CI のアプリケーションの単体テストを開始しました。作成した最初のテストは実行されますが、PHPUnit は常に最後にエラー メッセージをスローします。

user@server:~/public$ phpunit -c app/ --strict src/Acme/Bundle/SomeBundle/Tests/Controller/SomeControllerTest.php 
PHPUnit 3.6.11 by Sebastian Bergmann.

Configuration read from /var/www/user/htdocs/public/app/phpunit.xml.dist

..

Time: 5 seconds, Memory: 130.00Mb

OO (2 tests, 2 assertions)
PHP Fatal error:  Exception thrown without a stack frame in Unknown on line 0
PHP Stack trace:
PHP   1. {main}() /usr/bin/phpunit:0
PHP   2. PHPUnit_TextUI_Command::main() /usr/bin/phpunit:46
PHP   3. PHPUnit_TextUI_Command->run() /usr/share/php/PHPUnit/TextUI/Command.php:133

Fatal error: Exception thrown without a stack frame in Unknown on line 0

Call Stack:
    0.0001     629992   1. {main}() /usr/bin/phpunit:0
    0.0023    1235832   2. PHPUnit_TextUI_Command::main() /usr/bin/phpunit:46
    0.0023    1236848   3. PHPUnit_TextUI_Command->run() /usr/share/php/PHPUnit/TextUI/Command.php:133

これまでの唯一のヒントは、テストの 1 つ (または複数) が [以下を参照] を使用してページ上でリクエストを作成した場合にのみ発生するということです。そのため、何らかの方法でセッションに関連している可能性があります。

$client = static::createClient();
$container = $client->getContainer();
$uri = $container->getParameter('url_frontend') . '/';
$client->request('GET', $uri);

これは、 phpunit.xml.distへのリンクです。

更新

エラー自体について、もう少し情報を得ることができました:

1) Acme\Bundle\SomeBundle\Tests\Controller\SomeControllerTest::testIndexResponseStatusCode
RuntimeException: PHP Fatal error:  Uncaught exception 'ErrorException' with message 'Warning: Unknown: Failed to write session data (user). Please verify that the current setting of session.save_path is correct (/tmp/sessions) in Unknown line 0' in /var/www/user/htdocs/public/vendor/symfony/src/Symfony/Component/HttpKernel/Debug/ErrorHandler.php:67
Stack trace:
#0 [internal function]: Symfony\Component\HttpKernel\Debug\ErrorHandler->handle(2, 'Unknown: Failed...', 'Unknown', 0, Array)
#1 {main}
  thrown in /var/www/user/htdocs/public/vendor/symfony/src/Symfony/Component/HttpKernel/Debug/ErrorHandler.php on line 67
4

2 に答える 2

0

私たちの開発者の 1 人 (多くの罵倒と呪いの後) が問題を解決しましたFOS\FacebookBundle\Facebook\FacebookSessionPersistence

public function __construct($config, Session $session, $prefix = self::PREFIX)
{
    $this->session = $session;
    $this->prefix  = $prefix;
    $this->session->start(); // he starts a session

    parent::__construct($config);
}

そこで、独自の FacebookSessionPersistence クラスを作成しました。

namespace Acme\Bundle\UserBundle\Facebook;

use FOS\FacebookBundle\Facebook\FacebookSessionPersistence as BaseFacebookSessionPersistence;
use Symfony\Component\HttpFoundation\Session;

/**
 * Quick (and dirty) fix for running tests using FosFacebookBundle.
 * only use this class, while testing the application with phpunit
 *
 * @see https://github.com/FriendsOfSymfony/FOSFacebookBundle/issues/79
 */
class FacebookSessionPersistence extends BaseFacebookSessionPersistence
{
    public function __construct($config, Session $session, $prefix = self::PREFIX)
    {
        $this->session = $session;
        $this->prefix  = $prefix;

        // don't start session or call parent constructor
        //$this->session->start();

        //parent::__construct($config);

    }
}

そしてそれをテスト構成に追加しました:

# quick workaround as the fb class fails the test as it calls session->start in the construct   
# @see https://github.com/FriendsOfSymfony/FOSFacebookBundle/issues/79
fos_facebook:
    class:
        api: Acme\Bundle\UserBundle\Facebook\FacebookSessionPersistence   

それが将来の世代に役立つことを願っています...

于 2012-07-02T08:05:39.277 に答える
0

推測ですが、phpunitが2回目に実行しようとするため、例外がスローされると思います(run()メソッドの先頭で例外がスローされます)。

phpunit.xml.distで以下を置き換えてみてください:

<testsuites>
    <testsuite name="Project Test Suite">
        <directory>../src/*/*Bundle/Tests</directory>
        <directory>../src/*/Bundle/*Bundle/Tests</directory>
    </testsuite>
</testsuites>

と:

<testsuites>
    <testsuite name="Project Test Suite">
        <directory>../src/*/*Bundle/Tests</directory>
    </testsuite>
</testsuites>

最初のルールは両方のパスに一致すると思います。

于 2012-06-28T16:22:46.830 に答える