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(),只有在服务容器注册时才启用探查器,也就是启用。看这里

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 回答