-
-
Save KristianH/5b096998a4be4594770c8122a6573ad5 to your computer and use it in GitHub Desktop.
Codeception - how to test for redirects
This file contains hidden or 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 | |
// Simply place the following two functions in _support/Helper/Acceptance.php | |
// Then you can call $I->verifyRedirect(...) inside your tests | |
namespace Helper; | |
class Acceptance extends \Codeception\Module | |
{ | |
/** | |
* Ensure that a particular URL does NOT contain a 301/302 | |
* nor a "Location" header | |
*/ | |
public function verifyNoRedirect($url) | |
{ | |
$phpBrowser = $this->getModule('PhpBrowser'); | |
$guzzle = $phpBrowser->client; | |
// Disable the following of redirects | |
$guzzle->followRedirects(false); | |
$phpBrowser->_loadPage('GET', $url); | |
$response = $guzzle->getInternalResponse(); | |
$responseCode = $response->getStatus(); | |
$locationHeader = $response->getHeader('Location'); | |
$this->assertNotEquals($responseCode, 301); | |
$this->assertNotEquals($responseCode, 302); | |
$this->assertNull($locationHeader); | |
$guzzle->followRedirects(true); | |
} | |
/** | |
* Ensure that a particular URL redirects to another URL | |
* | |
* @param string $startUrl | |
* @param string $endUrl (should match "Location" header exactly) | |
* @param integer $redirectCode (301 = permanent, 302 = temporary) | |
*/ | |
public function verifyRedirect($startUrl, $endUrl, $redirectCode = 301) | |
{ | |
$phpBrowser = $this->getModule('PhpBrowser'); | |
$guzzle = $phpBrowser->client; | |
// Disable the following of redirects | |
$guzzle->followRedirects(false); | |
$phpBrowser->_loadPage('GET', $startUrl); | |
$response = $guzzle->getInternalResponse(); | |
$responseCode = $response->getStatus(); | |
$locationHeader = $response->getHeader('Location'); | |
$this->assertEquals($responseCode, $redirectCode); | |
$this->assertEquals($endUrl, $locationHeader); | |
$guzzle->followRedirects(true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment