7

機能テストで電子メールをテストしようとしています...

私のソースコードはクックブックの例と同じですが、

コントローラー:

public function sendEmailAction($name)
{
    $message = \Swift_Message::newInstance()
        ->setSubject('Hello Email')
        ->setFrom('send@example.com')
        ->setTo('recipient@example.com')
        ->setBody('You should see me from the profiler!')
    ;

    $this->get('mailer')->send($message);

    return $this->render(...);
}

そしてテスト:

// src/Acme/DemoBundle/Tests/Controller/MailControllerTest.php
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class MailControllerTest extends WebTestCase
{
    public function testMailIsSentAndContentIsOk()
    {
        $client = static::createClient();

        // Enable the profiler for the next request (it does nothing if the profiler is not available)
        $client->enableProfiler();

        $crawler = $client->request('POST', '/path/to/above/action');

        $mailCollector = $client->getProfile()->getCollector('swiftmailer');

        // Check that an e-mail was sent
        $this->assertEquals(1, $mailCollector->getMessageCount());

        $collectedMessages = $mailCollector->getMessages();
        $message = $collectedMessages[0];

        // Asserting e-mail data
        $this->assertInstanceOf('Swift_Message', $message);
        $this->assertEquals('Hello Email', $message->getSubject());
        $this->assertEquals('send@example.com', key($message->getFrom()));
        $this->assertEquals('recipient@example.com', key($message->getTo()));
        $this->assertEquals(
            'You should see me from the profiler!',
            $message->getBody()
        );
    }
}

ただし、このエラーが発生しました:

PHP 致命的なエラー: 非オブジェクトでのメンバー関数 getCollector() の呼び出し

問題は次の行から発生します。

$mailCollector = $client->getProfile()->getCollector('swiftmailer');

何か案が ?

4

1 に答える 1

7

getProfile()プロファイラーが有効になっていない場合は false を返すため、例外がスローされています。ここを参照してください。

public function getProfile()
{
    if (!$this->kernel->getContainer()->has('profiler')) {
        return false;
    }

    return $this->kernel->getContainer()->get('profiler')->loadProfileFromResponse($this->response);
}

さらにenableProfiler()、プロファイラーが service-container aka enabled に登録されている場合にのみ、プロファイラーを有効にします。ここを参照してください。

public function enableProfiler()
{
    if ($this->kernel->getContainer()->has('profiler')) {
        $this->profiler = true;
    }
}

ここで、プロファイラーがテスト環境で有効になっていることを確認する必要があります。(通常はデフォルト設定です)

config_test.yml

framework:
   profiler:
       enabled: true

次のようなものをテストに追加できます。

$this->assertEquals($this->kernel->getContainer()->has('profiler'), true);
于 2013-06-25T18:06:23.500 に答える