silverstripe-framework/tests/php/Dev/DevAdminControllerTest.php

92 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2014-08-06 06:29:52 +02:00
2016-10-14 03:30:05 +02:00
namespace SilverStripe\Dev\Tests;
use SilverStripe\Dev\DevelopmentAdmin;
use SilverStripe\Dev\FunctionalTest;
use SilverStripe\Control\Director;
2016-10-14 03:30:05 +02:00
use Exception;
use SilverStripe\Dev\Tests\DevAdminControllerTest\Controller1;
2014-08-06 06:29:52 +02:00
/**
* Note: the running of this test is handled by the thing it's testing (DevelopmentAdmin controller).
*/
class DevAdminControllerTest extends FunctionalTest {
2014-08-06 06:29:52 +02:00
public function setUp(){
parent::setUp();
2016-10-14 03:30:05 +02:00
DevelopmentAdmin::config()->update('registered_controllers', array(
2014-08-06 06:29:52 +02:00
'x1' => array(
2016-10-14 03:30:05 +02:00
'controller' => Controller1::class,
2014-08-06 06:29:52 +02:00
'links' => array(
'x1' => 'x1 link description',
'x1/y1' => 'x1/y1 link description'
)
),
'x2' => array(
'controller' => 'DevAdminControllerTest_Controller2', // intentionally not a class that exists
'links' => array(
'x2' => 'x2 link description'
)
)
));
}
2014-08-06 06:29:52 +02:00
public function testGoodRegisteredControllerOutput(){
// Check for the controller running from the registered url above
2014-08-06 06:29:52 +02:00
// (we use contains rather than equals because sometimes you get Warning: You probably want to define an entry in $_FILE_TO_URL_MAPPING)
2016-10-14 03:30:05 +02:00
$this->assertContains(Controller1::OK_MSG, $this->getCapture('/dev/x1'));
$this->assertContains(Controller1::OK_MSG, $this->getCapture('/dev/x1/y1'));
2014-08-06 06:29:52 +02:00
}
2014-08-06 06:29:52 +02:00
public function testGoodRegisteredControllerStatus(){
// Check response code is 200/OK
$this->assertEquals(false, $this->getAndCheckForError('/dev/x1'));
$this->assertEquals(false, $this->getAndCheckForError('/dev/x1/y1'));
2014-08-06 06:29:52 +02:00
// Check response code is 500/ some sort of error
$this->assertEquals(true, $this->getAndCheckForError('/dev/x2'));
}
2014-08-06 06:29:52 +02:00
protected function getCapture($url){
$this->logInWithPermission('ADMIN');
2014-08-06 06:29:52 +02:00
ob_start();
$this->get($url);
$r = ob_get_contents();
ob_end_clean();
2014-08-06 06:29:52 +02:00
return $r;
}
2014-08-06 06:29:52 +02:00
protected function getAndCheckForError($url){
$this->logInWithPermission('ADMIN');
2014-08-06 06:29:52 +02:00
if(Director::is_cli()){
// when in CLI the admin controller throws exceptions
ob_start();
try{
$this->get($url);
}catch(Exception $e){
ob_end_clean();
return true;
}
2014-08-06 06:29:52 +02:00
ob_end_clean();
return false;
2016-10-14 03:30:05 +02:00
} else {
2014-08-06 06:29:52 +02:00
// when in http the admin controller sets a response header
ob_start();
$resp = $this->get($url);
ob_end_clean();
return $resp->isError();
}
}
2014-08-06 06:29:52 +02:00
}