You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Instead of the default PHP_OUTPUT_HANDLER_STDFLAGS (cleanable, flushable, and removable) being used for flags,
36
+
* we need to omit PHP_OUTPUT_HANDLER_FLUSHABLE. If the buffer were flushable, then each time that ob_flush() is
37
+
* called, it would send a fragment of the output into the output buffer callback. When buffering the entire
38
+
* response as an HTML document, this would result in broken HTML processing.
39
+
*
40
+
* If this ends up being problematic, then PHP_OUTPUT_HANDLER_FLUSHABLE could be added to the $flags and the
41
+
* output buffer callback could check if the phase is PHP_OUTPUT_HANDLER_FLUSH and abort any subsequent
42
+
* processing while also emitting a _doing_it_wrong().
43
+
*/
44
+
$flags = PHP_OUTPUT_HANDLER_CLEANABLE;
45
+
46
+
// When running unit tests the output buffer must also be removable in order to obtain the buffered output.
47
+
if ( php_sapi_name() === 'cli' ) {
48
+
// TODO: Do any caching plugins need the output buffer to be removable? This is unlikely, as they would pass an output buffer callback to ob_start() instead of calling ob_get_clean() at shutdown.
$this->assertSame( $template, od_buffer_output( $template ), 'Expected value to be passed through.' );
69
70
$this->assertSame( $original_ob_level + 1, ob_get_level(), 'Expected call to ob_start().' );
70
71
echo$original;
71
72
@@ -77,48 +78,70 @@ function ( $buffer ) use ( $original, $expected, &$filter_invoked ) {
77
78
}
78
79
79
80
/**
80
-
* Test that calling ob_clean() will discard previous buffer and never send it into the od_template_output_buffer filter.
81
+
* Test that calling ob_flush() will not result in the buffer being processed and that ob_clean() will successfully prevent content from being processed.
function ( $buffer ) use ( $template_override, $filter_override, &$filter_count ) {
99
-
$this->assertSame( $template_override, $buffer, 'Expected the original template output to never get passed into the buffer callback since ob_clean() was called after the original was printed.' );
100
+
function ( $buffer ) use ( $template_start, $template_middle, $template_end, &$filter_count ) {
0 commit comments