Skip to content
Snippets Groups Projects
Commit 444d58a8 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

no need for a global output buffer

parent 1ada9e0a
No related branches found
No related tags found
No related merge requests found
......@@ -4,15 +4,8 @@
* runtime inspection.
*/
// output buffering
$output_buffer = '';
$currentTestRequest = null;
function ob_start_callback($buffer) {
global $output_buffer;
$output_buffer .= $buffer;
}
/**
* Helper class to execute a fake request
......@@ -28,6 +21,12 @@ class TestRequest {
protected $post = array();
protected $notifications = array();
/** @var string stores the output buffer, even when it's flushed */
protected $output_buffer = '';
/** @var null|TestRequest the currently running request */
static protected $running = null;
/**
* Get a $_SERVER var
*
......@@ -154,19 +153,20 @@ class TestRequest {
$_REQUEST = array_merge($_GET, $_POST);
// reset output buffer
global $output_buffer;
$output_buffer = '';
$this->output_buffer = '';
// now execute dokuwiki and grep the output
self::$running = $this;
header_remove();
ob_start('ob_start_callback');
ob_start(array($this, 'ob_start_callback'));
$INPUT = new Input();
include(DOKU_INC . $this->script);
ob_end_flush();
self::$running = null;
// create the response object
$response = new TestResponse(
$output_buffer,
$this->output_buffer,
(function_exists('xdebug_get_headers') ? xdebug_get_headers() : headers_list()) // cli sapi doesn't do headers, prefer xdebug_get_headers() which works under cli
);
if($this->notifications != null) {
......@@ -249,6 +249,18 @@ class TestRequest {
return $this->execute($uri);
}
/**
* Callback for ob_start
*
* This continues to fill our own buffer, even when some part
* of the code askes for flushing the buffers
*
* @param string $buffer
*/
public function ob_start_callback($buffer) {
$this->output_buffer .= $buffer;
}
/**
* Add a notification to later store it in the test respone.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment