SimpleSAML\Test\Web\IndexTest::testRedirection PHP Method

testRedirection() public method

A simple test to make sure the index.php file redirects appropriately to the right URL.
public testRedirection ( )
    public function testRedirection()
    {
        if (defined('HHVM_VERSION')) {
            // can't test this in HHVM for the moment
            $this->markTestSkipped('The web-based tests cannot be run in HHVM for the moment.');
        }
        if (version_compare(phpversion(), '5.4') === -1) {
            // no built-in server prior to 5.4
            $this->markTestSkipped('The web-based tests cannot be run in PHP versions older than 5.4.');
        }
        // test most basic redirection
        $this->updateConfig(array('baseurlpath' => 'http://example.org/simplesaml/'));
        $resp = $this->server->get('/index.php', array(), array(CURLOPT_FOLLOWLOCATION => 0));
        $this->assertEquals('302', $resp['code']);
        $this->assertEquals('http://example.org/simplesaml/module.php/core/frontpage_welcome.php', $resp['headers']['Location']);
        // test non-default path and https
        $this->updateConfig(array('baseurlpath' => 'https://example.org/'));
        $resp = $this->server->get('/index.php', array(), array(CURLOPT_FOLLOWLOCATION => 0));
        $this->assertEquals('302', $resp['code']);
        $this->assertEquals('https://example.org/module.php/core/frontpage_welcome.php', $resp['headers']['Location']);
        // test URL guessing
        $this->updateConfig(array('baseurlpath' => '/simplesaml/'));
        $resp = $this->server->get('/index.php', array(), array(CURLOPT_FOLLOWLOCATION => 0));
        $this->assertEquals('302', $resp['code']);
        $this->assertEquals('http://' . $this->server_addr . '/simplesaml/module.php/core/frontpage_welcome.php', $resp['headers']['Location']);
    }