silverstripe-behat-extension/src/SilverStripe/BehatExtension/Context/EmailContext.php

180 lines
5.4 KiB
PHP
Raw Normal View History

2012-12-19 15:56:20 +01:00
<?php
namespace SilverStripe\BehatExtension\Context;
use Behat\Behat\Context\ClosuredContextInterface,
Behat\Behat\Context\TranslatedContextInterface,
Behat\Behat\Context\BehatContext,
Behat\Behat\Context\Step,
Behat\Behat\Event\FeatureEvent,
Behat\Behat\Event\ScenarioEvent,
Behat\Behat\Exception\PendingException;
use Behat\Gherkin\Node\PyStringNode,
Behat\Gherkin\Node\TableNode;
use Symfony\Component\DomCrawler\Crawler;
// PHPUnit
require_once 'PHPUnit/Autoload.php';
require_once 'PHPUnit/Framework/Assert/Functions.php';
/**
* Context used to define steps related to email sending.
*/
class EmailContext extends BehatContext
{
protected $context;
protected $mailer;
2013-12-13 17:52:42 +01:00
/**
* Stored to simplify later assertions
*/
protected $lastMatchedEmail;
2012-12-19 15:56:20 +01:00
/**
* Initializes context.
* Every scenario gets it's own context object.
*
* @param array $parameters context parameters (set them up through behat.yml)
*/
public function __construct(array $parameters)
{
// Initialize your context here
$this->context = $parameters;
}
/**
* Get Mink session from MinkContext
*/
public function getSession($name = null)
{
return $this->getMainContext()->getSession($name);
}
/**
* @BeforeScenario
*/
public function before(ScenarioEvent $event)
{
// Also set through the 'supportbehat' extension
// to ensure its available both in CLI execution and the tested browser session
$this->mailer = new \SilverStripe\BehatExtension\Utility\TestMailer();
\Email::set_mailer($this->mailer);
\Config::inst()->update("Email","send_all_emails_to", null);
2012-12-19 15:56:20 +01:00
}
/**
2014-02-26 01:55:37 +01:00
* @Given /^there should (not |)be an email (to|from) "([^"]*)"$/
2012-12-19 15:56:20 +01:00
*/
2014-02-26 01:55:37 +01:00
public function thereIsAnEmailFromTo($negate, $direction, $email)
2012-12-19 15:56:20 +01:00
{
$to = ($direction == 'to') ? $email : null;
$from = ($direction == 'from') ? $email : null;
$match = $this->mailer->findEmail($to, $from);
2014-02-26 01:55:37 +01:00
if(trim($negate)) {
assertNull($match);
} else {
assertNotNull($match);
}
2013-12-13 17:52:42 +01:00
$this->lastMatchedEmail = $match;
2012-12-19 15:56:20 +01:00
}
/**
2014-02-26 01:55:37 +01:00
* @Given /^there should (not |)be an email (to|from) "([^"]*)" titled "([^"]*)"$/
2012-12-19 15:56:20 +01:00
*/
2014-02-26 01:55:37 +01:00
public function thereIsAnEmailFromToTitled($negate, $direction, $email, $subject)
2012-12-19 15:56:20 +01:00
{
$to = ($direction == 'to') ? $email : null;
$from = ($direction == 'from') ? $email : null;
$match = $this->mailer->findEmail($to, $from, $subject);
2014-02-27 11:02:43 +01:00
$allMails = $this->mailer->findEmails($to, $from);
$allTitles = $allMails ? '"' . implode('","', array_map(function($email) {return $email->Subject;}, $allMails)) . '"' : null;
2014-02-26 01:55:37 +01:00
if(trim($negate)) {
assertNull($match);
} else {
2014-02-27 11:02:43 +01:00
$msg = sprintf(
'Could not find email %s "%s" titled "%s".',
$direction,
$email,
$subject
);
if($allTitles) {
$msg .= ' Existing emails: ' . $allTitles;
}
assertNotNull($match,$msg);
2014-02-26 01:55:37 +01:00
}
2013-12-13 17:52:42 +01:00
$this->lastMatchedEmail = $match;
}
/**
* Example: Given the email contains "Thank you for registering!".
* Assumes an email has been identified by a previous step,
* e.g. through 'Given there should be an email to "test@test.com"'.
*
* @Given /^the email should contain "([^"]*)"$/
*/
public function thereTheEmailContains($content)
{
if(!$this->lastMatchedEmail) {
throw new \LogicException('No matched email found from previous step');
}
$email = $this->lastMatchedEmail;
if($email->Content) {
assertContains($content, $email->Content);
2013-12-13 17:52:42 +01:00
} else {
assertContains($content, $email->PlainContent);
2013-12-13 17:52:42 +01:00
}
2012-12-19 15:56:20 +01:00
}
/**
* @When /^I click on the "([^"]*)" link in the email (to|from) "([^"]*)"$/
2012-12-19 15:56:20 +01:00
*/
public function iGoToInTheEmailTo($linkSelector, $direction, $email)
{
$to = ($direction == 'to') ? $email : null;
$from = ($direction == 'from') ? $email : null;
$match = $this->mailer->findEmail($to, $from);
assertNotNull($match);
$crawler = new Crawler($match->Content);
$linkEl = $crawler->selectLink($linkSelector);
2012-12-19 15:56:20 +01:00
assertNotNull($linkEl);
$link = $linkEl->attr('href');
assertNotNull($link);
return new Step\When(sprintf('I go to "%s"', $link));
}
2013-12-13 17:52:42 +01:00
/**
* Assumes an email has been identified by a previous step,
* e.g. through 'Given there should be an email to "test@test.com"'.
*
* @When /^I click on the "([^"]*)" link in the email"$/
*/
public function iGoToInTheEmail($linkSelector)
{
if(!$this->lastMatchedEmail) {
throw new \LogicException('No matched email found from previous step');
}
$match = $this->lastMatchedEmail;
$crawler = new Crawler($match->Content);
2013-12-13 17:52:42 +01:00
$linkEl = $crawler->selectLink($linkSelector);
assertNotNull($linkEl);
$link = $linkEl->attr('href');
assertNotNull($link);
return new Step\When(sprintf('I go to "%s"', $link));
}
2012-12-19 15:56:20 +01:00
/**
* @Given /^I clear all emails$/
*/
public function iClearAllEmails()
{
2013-12-13 17:52:42 +01:00
$this->lastMatchedEmail = null;
2012-12-19 15:56:20 +01:00
return $this->mailer->clearEmails();
}
}