-
-
Save odracci/7861088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Nelmio\HomeBundle\Tests\Controller; | |
use Nelmio\HomeBundle\Controller\ContactController; | |
use Liip\FunctionalTestBundle\Test\WebTestCase; | |
class ContactControllerTest extends WebTestCase | |
{ | |
public function testEmail() | |
{ | |
$client = $this->createClient(); | |
$crawler = $client->request('GET', '/contact'); | |
$form = $crawler->selectButton('submit')->form(); | |
$form['contact[name]'] = 'Test'; | |
$form['contact[email]'] = '[email protected]'; | |
$form['contact[message]'] = 'Test message'; | |
$client->submit($form); | |
$response = $client->getResponse(); | |
$collector = $client->getProfile()->getCollector('swiftmailer'); | |
$this->assertEquals(1, $collector->getMessageCount()); | |
list($mail) = $collector->getMessages(); | |
$this->assertEquals(302, $response->getStatusCode()); | |
$this->assertTrue($mail instanceof \Swift_Message); | |
$this->assertContains('Test message', $mail->getBody()); | |
$this->assertContains('[email protected]', $mail->getBody()); | |
$this->assertEquals(array('[email protected]' => ''), $mail->getTo()); | |
$this->assertEquals('/contact/thanks', $response->headers->get('Location')); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment