. */ /** * Class Test_Log_Owncloud * * @group DB */ class Test_Log_Owncloud extends Test\TestCase { private $restore_logfile; private $restore_logdateformat; protected function setUp() { parent::setUp(); $config = \OC::$server->getConfig(); $this->restore_logfile = $config->getSystemValue("logfile"); $this->restore_logdateformat = $config->getSystemValue('logdateformat'); $config->setSystemValue("logfile", $config->getSystemValue('datadirectory') . "/logtest"); OC_Log_Owncloud::init(); } protected function tearDown() { $config = \OC::$server->getConfig(); if (isset($this->restore_logfile)) { $config->getSystemValue("logfile", $this->restore_logfile); } else { $config->deleteSystemValue("logfile"); } if (isset($this->restore_logdateformat)) { $config->getSystemValue("logdateformat", $this->restore_logdateformat); } else { $config->deleteSystemValue("restore_logdateformat"); } OC_Log_Owncloud::init(); parent::tearDown(); } public function testMicrosecondsLogTimestamp() { $config = \OC::$server->getConfig(); # delete old logfile unlink($config->getSystemValue('logfile')); # set format & write log line $config->setSystemValue('logdateformat', 'u'); OC_Log_Owncloud::write('test', 'message', \OCP\Util::ERROR); # read log line $handle = @fopen($config->getSystemValue('logfile'), 'r'); $line = fread($handle, 1000); fclose($handle); # check timestamp has microseconds part $values = (array) json_decode($line); $microseconds = $values['time']; $this->assertNotEquals(0, $microseconds); } }