1--TEST-- 2FPM: Buffered worker output plain log with msg with flush split position towards separator start 3--SKIPIF-- 4<?php include "skipif.inc"; ?> 5--FILE-- 6<?php 7 8require_once "tester.inc"; 9 10$cfg = <<<EOT 11[global] 12error_log = {{FILE:LOG}} 13[unconfined] 14listen = {{ADDR}} 15pm = dynamic 16pm.max_children = 5 17pm.start_servers = 1 18pm.min_spare_servers = 1 19pm.max_spare_servers = 3 20catch_workers_output = yes 21decorate_workers_output = no 22EOT; 23 24$code = <<<EOT 25<?php 26file_put_contents('php://stderr', str_repeat('a', 1009) . "Quarkslab\0fscf\0Quarkslab"); 27EOT; 28 29$tester = new FPM\Tester($cfg, $code); 30$tester->start(); 31$tester->expectLogStartNotices(); 32$tester->request()->expectEmptyBody(); 33$tester->expectLogLine(str_repeat('a', 1009) . "Quarkslab", decorated: false); 34$tester->expectLogLine("Quarkslab", decorated: false); 35$tester->terminate(); 36$tester->expectLogTerminatingNotices(); 37$tester->close(); 38 39?> 40Done 41--EXPECT-- 42Done 43--CLEAN-- 44<?php 45require_once "tester.inc"; 46FPM\Tester::clean(); 47?> 48