2008-05-15 09:15:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2012-03-24 04:38:57 +01:00
|
|
|
* SilverStripe-specific testing object designed to support functional testing of your web app. It simulates get/post
|
2008-05-15 09:15:33 +02:00
|
|
|
* requests, form submission, and can validate resulting HTML, looking up content by CSS selector.
|
|
|
|
*
|
|
|
|
* The example below shows how it works.
|
|
|
|
*
|
|
|
|
* <code>
|
2012-09-19 12:07:39 +02:00
|
|
|
* public function testMyForm() {
|
2008-05-15 09:15:33 +02:00
|
|
|
* // Visit a URL
|
|
|
|
* $this->get("your/url");
|
|
|
|
*
|
|
|
|
* // Submit a form on the page that you get in response
|
|
|
|
* $this->submitForm("MyForm_ID", array("Email" => "invalid email ^&*&^"));
|
|
|
|
*
|
|
|
|
* // Validate the content that is returned
|
|
|
|
* $this->assertExactMatchBySelector("#MyForm_ID p.error", array("That email address is invalid."));
|
|
|
|
* }
|
|
|
|
* </code>
|
2008-06-15 15:33:53 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-06-15 15:33:53 +02:00
|
|
|
* @subpackage testing
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
|
|
|
class FunctionalTest extends SapphireTest {
|
2008-05-26 08:21:30 +02:00
|
|
|
/**
|
|
|
|
* Set this to true on your sub-class to disable the use of themes in this test.
|
|
|
|
* This can be handy for functional testing of modules without having to worry about whether a user has changed
|
|
|
|
* behaviour by replacing the theme.
|
|
|
|
*/
|
|
|
|
static $disable_themes = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this to true on your sub-class to use the draft site by default for every test in this class.
|
|
|
|
*/
|
|
|
|
static $use_draft_site = false;
|
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
protected $mainSession = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CSSContentParser for the most recently requested page.
|
|
|
|
*/
|
|
|
|
protected $cssParser = null;
|
2008-05-26 08:21:30 +02:00
|
|
|
|
2008-08-12 01:04:01 +02:00
|
|
|
/**
|
|
|
|
* If this is true, then 30x Location headers will be automatically followed.
|
2012-09-26 23:34:00 +02:00
|
|
|
* If not, then you will have to manaully call $this->mainSession->followRedirection() to follow them.
|
|
|
|
* However, this will let you inspect the intermediary headers
|
2008-08-12 01:04:01 +02:00
|
|
|
*/
|
|
|
|
protected $autoFollowRedirection = true;
|
|
|
|
|
2008-05-26 08:21:30 +02:00
|
|
|
/**
|
|
|
|
* Returns the {@link Session} object for this test
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function session() {
|
2008-05-26 08:21:30 +02:00
|
|
|
return $this->mainSession->session();
|
|
|
|
}
|
2008-05-15 09:15:33 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setUp() {
|
2011-09-26 05:08:41 +02:00
|
|
|
// Skip calling FunctionalTest directly.
|
2011-09-26 06:11:49 +02:00
|
|
|
if(get_class($this) == "FunctionalTest") $this->skipTest = true;
|
2011-09-26 05:08:41 +02:00
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
parent::setUp();
|
|
|
|
$this->mainSession = new TestSession();
|
2008-05-26 08:21:30 +02:00
|
|
|
|
|
|
|
// Disable theme, if necessary
|
2010-04-13 03:44:45 +02:00
|
|
|
if($this->stat('disable_themes')) SSViewer::set_theme(null);
|
2008-05-26 08:21:30 +02:00
|
|
|
|
|
|
|
// Switch to draft site, if necessary
|
|
|
|
if($this->stat('use_draft_site')) {
|
|
|
|
$this->useDraftSite();
|
|
|
|
}
|
2010-10-19 03:29:39 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
// Unprotect the site, tests are running with the assumption it's off. They will enable it on a case-by-case
|
|
|
|
// basis.
|
2010-10-19 03:29:39 +02:00
|
|
|
BasicAuth::protect_entire_site(false);
|
2011-09-26 05:08:41 +02:00
|
|
|
|
2010-12-05 09:22:57 +01:00
|
|
|
SecurityToken::disable();
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function tearDown() {
|
2010-12-05 09:22:57 +01:00
|
|
|
SecurityToken::enable();
|
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
parent::tearDown();
|
2008-12-04 23:38:32 +01:00
|
|
|
unset($this->mainSession);
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit a get request
|
2009-12-16 06:42:43 +01:00
|
|
|
* @uses Director::test()
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function get($url, $session = null, $headers = null, $cookies = null) {
|
2008-05-15 09:15:33 +02:00
|
|
|
$this->cssParser = null;
|
2009-12-16 06:42:43 +01:00
|
|
|
$response = $this->mainSession->get($url, $session, $headers, $cookies);
|
2012-09-26 23:34:00 +02:00
|
|
|
if($this->autoFollowRedirection && is_object($response) && $response->getHeader('Location')) {
|
|
|
|
$response = $this->mainSession->followRedirection();
|
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
return $response;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit a post request
|
2009-12-16 06:42:43 +01:00
|
|
|
* @uses Director::test()
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function post($url, $data, $headers = null, $session = null, $body = null, $cookies = null) {
|
2008-05-15 09:15:33 +02:00
|
|
|
$this->cssParser = null;
|
2009-12-16 06:42:43 +01:00
|
|
|
$response = $this->mainSession->post($url, $data, $headers, $session, $body, $cookies);
|
2012-09-26 23:34:00 +02:00
|
|
|
if($this->autoFollowRedirection && is_object($response) && $response->getHeader('Location')) {
|
|
|
|
$response = $this->mainSession->followRedirection();
|
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
return $response;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit the form with the given HTML ID, filling it out with the given data.
|
2010-11-24 07:23:52 +01:00
|
|
|
* Acts on the most recent response.
|
|
|
|
*
|
|
|
|
* Any data parameters have to be present in the form, with exact form field name
|
|
|
|
* and values, otherwise they are removed from the submission.
|
|
|
|
*
|
|
|
|
* Caution: Parameter names have to be formatted
|
|
|
|
* as they are in the form submission, not as they are interpreted by PHP.
|
|
|
|
* Wrong: array('mycheckboxvalues' => array(1 => 'one', 2 => 'two'))
|
|
|
|
* Right: array('mycheckboxvalues[1]' => 'one', 'mycheckboxvalues[2]' => 'two')
|
|
|
|
*
|
|
|
|
* @see http://www.simpletest.org/en/form_testing_documentation.html
|
|
|
|
*
|
|
|
|
* @param String $formID HTML 'id' attribute of a form (loaded through a previous response)
|
|
|
|
* @param String $button HTML 'name' attribute of the button (NOT the 'id' attribute)
|
|
|
|
* @param Array $data Map of GET/POST data.
|
|
|
|
* @return SS_HTTPResponse
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function submitForm($formID, $button = null, $data = array()) {
|
2008-05-15 09:15:33 +02:00
|
|
|
$this->cssParser = null;
|
2008-05-26 08:21:30 +02:00
|
|
|
$response = $this->mainSession->submitForm($formID, $button, $data);
|
2012-09-26 23:34:00 +02:00
|
|
|
if($this->autoFollowRedirection && is_object($response) && $response->getHeader('Location')) {
|
|
|
|
$response = $this->mainSession->followRedirection();
|
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
return $response;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the most recent content
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function content() {
|
2008-05-15 09:15:33 +02:00
|
|
|
return $this->mainSession->lastContent();
|
|
|
|
}
|
2009-12-16 06:40:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find an attribute in a SimpleXMLElement object by name.
|
|
|
|
* @param SimpleXMLElement object
|
|
|
|
* @param string $attribute Name of attribute to find
|
|
|
|
* @return SimpleXMLElement object of the attribute
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function findAttribute($object, $attribute) {
|
2009-12-16 06:40:27 +01:00
|
|
|
$found = false;
|
|
|
|
foreach($object->attributes() as $a => $b) {
|
|
|
|
if($a == $attribute) {
|
|
|
|
$found = $b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
2008-05-15 09:15:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a CSSContentParser for the most recent content.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function cssParser() {
|
2008-05-15 09:15:33 +02:00
|
|
|
if(!$this->cssParser) $this->cssParser = new CSSContentParser($this->mainSession->lastContent());
|
|
|
|
return $this->cssParser;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that the most recently queried page contains a number of content tags specified by a CSS selector.
|
|
|
|
* The given CSS selector will be applied to the HTML of the most recent page. The content of every matching tag
|
2008-11-08 01:03:50 +01:00
|
|
|
* will be examined. The assertion fails if one of the expectedMatches fails to appear.
|
2008-05-15 09:15:33 +02:00
|
|
|
*
|
|
|
|
* Note: characters are stripped from the content; make sure that your assertions take this into account.
|
2008-11-08 01:03:50 +01:00
|
|
|
*
|
|
|
|
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
|
|
|
* @param array|string $expectedMatches The content of at least one of the matched tags
|
|
|
|
* @throws PHPUnit_Framework_AssertionFailedError
|
|
|
|
* @return boolean
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function assertPartialMatchBySelector($selector, $expectedMatches) {
|
2008-11-08 01:03:50 +01:00
|
|
|
if(is_string($expectedMatches)) $expectedMatches = array($expectedMatches);
|
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
$items = $this->cssParser()->getBySelector($selector);
|
2008-08-13 05:40:56 +02:00
|
|
|
|
|
|
|
$actuals = array();
|
|
|
|
if($items) foreach($items as $item) $actuals[trim(preg_replace("/[ \n\r\t]+/", " ", $item. ''))] = true;
|
2008-05-15 09:15:33 +02:00
|
|
|
|
|
|
|
foreach($expectedMatches as $match) {
|
|
|
|
if(!isset($actuals[$match])) {
|
|
|
|
throw new PHPUnit_Framework_AssertionFailedError(
|
2012-09-26 23:34:00 +02:00
|
|
|
"Failed asserting the CSS selector '$selector' has a partial match to the expected elements:\n'"
|
|
|
|
. implode("'\n'", $expectedMatches) . "'\n\n"
|
|
|
|
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'"
|
2008-05-15 09:15:33 +02:00
|
|
|
);
|
2008-11-08 01:03:50 +01:00
|
|
|
return false;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-11-08 01:03:50 +01:00
|
|
|
|
|
|
|
return true;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that the most recently queried page contains a number of content tags specified by a CSS selector.
|
|
|
|
* The given CSS selector will be applied to the HTML of the most recent page. The full HTML of every matching tag
|
2008-11-08 01:03:50 +01:00
|
|
|
* will be examined. The assertion fails if one of the expectedMatches fails to appear.
|
2008-05-15 09:15:33 +02:00
|
|
|
*
|
|
|
|
* Note: characters are stripped from the content; make sure that your assertions take this into account.
|
2008-11-08 01:03:50 +01:00
|
|
|
*
|
|
|
|
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
|
|
|
* @param array|string $expectedMatches The content of *all* matching tags as an array
|
|
|
|
* @throws PHPUnit_Framework_AssertionFailedError
|
|
|
|
* @return boolean
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function assertExactMatchBySelector($selector, $expectedMatches) {
|
2008-11-08 01:03:50 +01:00
|
|
|
if(is_string($expectedMatches)) $expectedMatches = array($expectedMatches);
|
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
$items = $this->cssParser()->getBySelector($selector);
|
2008-08-13 05:40:56 +02:00
|
|
|
|
|
|
|
$actuals = array();
|
|
|
|
if($items) foreach($items as $item) $actuals[] = trim(preg_replace("/[ \n\r\t]+/", " ", $item. ''));
|
2008-05-15 09:15:33 +02:00
|
|
|
|
|
|
|
if($expectedMatches != $actuals) {
|
|
|
|
throw new PHPUnit_Framework_AssertionFailedError(
|
2012-09-26 23:34:00 +02:00
|
|
|
"Failed asserting the CSS selector '$selector' has an exact match to the expected elements:\n'"
|
|
|
|
. implode("'\n'", $expectedMatches) . "'\n\n"
|
|
|
|
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'"
|
2008-05-15 09:15:33 +02:00
|
|
|
);
|
2008-11-08 01:03:50 +01:00
|
|
|
return false;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
2008-11-08 01:03:50 +01:00
|
|
|
|
|
|
|
return true;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that the most recently queried page contains a number of content tags specified by a CSS selector.
|
|
|
|
* The given CSS selector will be applied to the HTML of the most recent page. The content of every matching tag
|
2008-11-08 01:03:50 +01:00
|
|
|
* will be examined. The assertion fails if one of the expectedMatches fails to appear.
|
2008-05-15 09:15:33 +02:00
|
|
|
*
|
|
|
|
* Note: characters are stripped from the content; make sure that your assertions take this into account.
|
2008-11-08 01:03:50 +01:00
|
|
|
*
|
|
|
|
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
|
|
|
* @param array|string $expectedMatches The content of at least one of the matched tags
|
|
|
|
* @throws PHPUnit_Framework_AssertionFailedError
|
|
|
|
* @return boolean
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function assertPartialHTMLMatchBySelector($selector, $expectedMatches) {
|
2008-11-08 01:03:50 +01:00
|
|
|
if(is_string($expectedMatches)) $expectedMatches = array($expectedMatches);
|
|
|
|
|
2008-05-15 09:15:33 +02:00
|
|
|
$items = $this->cssParser()->getBySelector($selector);
|
2008-08-13 05:40:56 +02:00
|
|
|
|
|
|
|
$actuals = array();
|
|
|
|
if($items) foreach($items as $item) $actuals[$item->asXML()] = true;
|
2008-05-15 09:15:33 +02:00
|
|
|
|
|
|
|
foreach($expectedMatches as $match) {
|
|
|
|
if(!isset($actuals[$match])) {
|
|
|
|
throw new PHPUnit_Framework_AssertionFailedError(
|
2012-09-26 23:34:00 +02:00
|
|
|
"Failed asserting the CSS selector '$selector' has a partial match to the expected elements:\n'"
|
|
|
|
. implode("'\n'", $expectedMatches) . "'\n\n"
|
|
|
|
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'"
|
2008-05-15 09:15:33 +02:00
|
|
|
);
|
2008-11-08 01:03:50 +01:00
|
|
|
return false;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-11-08 01:03:50 +01:00
|
|
|
|
|
|
|
return true;
|
2008-05-15 09:15:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that the most recently queried page contains a number of content tags specified by a CSS selector.
|
|
|
|
* The given CSS selector will be applied to the HTML of the most recent page. The full HTML of every matching tag
|
2008-11-08 01:03:50 +01:00
|
|
|
* will be examined. The assertion fails if one of the expectedMatches fails to appear.
|
2008-05-15 09:15:33 +02:00
|
|
|
*
|
|
|
|
* Note: characters are stripped from the content; make sure that your assertions take this into account.
|
2008-11-08 01:03:50 +01:00
|
|
|
*
|
|
|
|
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
|
|
|
* @param array|string $expectedMatches The content of *all* matched tags as an array
|
|
|
|
* @throws PHPUnit_Framework_AssertionFailedError
|
|
|
|
* @return boolean
|
2008-05-15 09:15:33 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function assertExactHTMLMatchBySelector($selector, $expectedMatches) {
|
2008-05-15 09:15:33 +02:00
|
|
|
$items = $this->cssParser()->getBySelector($selector);
|
2008-08-13 05:40:56 +02:00
|
|
|
|
|
|
|
$actuals = array();
|
|
|
|
if($items) foreach($items as $item) $actuals[] = $item->asXML();
|
2008-05-15 09:15:33 +02:00
|
|
|
|
|
|
|
if($expectedMatches != $actuals) {
|
|
|
|
throw new PHPUnit_Framework_AssertionFailedError(
|
2012-09-26 23:34:00 +02:00
|
|
|
"Failed asserting the CSS selector '$selector' has an exact match to the expected elements:\n'"
|
|
|
|
. implode("'\n'", $expectedMatches) . "'\n\n"
|
|
|
|
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'"
|
2008-05-15 09:15:33 +02:00
|
|
|
);
|
|
|
|
}
|
2009-05-06 08:36:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log in as the given member
|
|
|
|
* @param $member The ID, fixture codename, or Member object of the member that you want to log in
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function logInAs($member) {
|
2009-05-06 08:36:16 +02:00
|
|
|
if(is_object($member)) $memberID = $member->ID;
|
|
|
|
elseif(is_numeric($member)) $memberID = $member;
|
|
|
|
else $memberID = $this->idFromFixture('Member', $member);
|
|
|
|
|
|
|
|
$this->session()->inst_set('loggedInAs', $memberID);
|
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the draft (stage) site for testing.
|
2012-09-26 23:34:00 +02:00
|
|
|
* This is helpful if you're not testing publication functionality and don't want "stage management" cluttering
|
|
|
|
* your test.
|
2010-10-19 03:32:17 +02:00
|
|
|
*
|
|
|
|
* @param bool toggle the use of the draft site
|
2008-05-26 08:21:30 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function useDraftSite($enabled = true) {
|
2010-10-19 03:32:17 +02:00
|
|
|
if($enabled) {
|
|
|
|
$this->session()->inst_set('readingMode', 'Stage.Stage');
|
|
|
|
$this->session()->inst_set('unsecuredDraftSite', true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->session()->inst_set('readingMode', 'Stage.Live');
|
|
|
|
$this->session()->inst_set('unsecuredDraftSite', false);
|
|
|
|
}
|
2008-05-26 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a static variable from this class.
|
|
|
|
* Gets around PHP's lack of late static binding.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function stat($varName) {
|
2008-05-26 08:21:30 +02:00
|
|
|
$className = get_class($this);
|
|
|
|
return eval("return {$className}::\$$varName;");
|
|
|
|
}
|
2010-04-13 05:16:57 +02:00
|
|
|
}
|