2018-04-24 23:14:00 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2018-06-06 23:40:06 +03:00
|
|
|
* @author Johannes Ernst <jernst@indiecomputing.com>
|
2018-04-24 23:14:00 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Log;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2018-04-24 23:14:00 +03:00
|
|
|
use OC\Log\Errorlog;
|
|
|
|
use OC\Log\File;
|
|
|
|
use OC\Log\LogFactory;
|
|
|
|
use OC\Log\Syslog;
|
2018-06-06 23:40:06 +03:00
|
|
|
use OC\Log\Systemdlog;
|
2018-04-27 00:54:11 +03:00
|
|
|
use OC\SystemConfig;
|
2018-04-24 23:14:00 +03:00
|
|
|
use OCP\IServerContainer;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class LogFactoryTest
|
|
|
|
*
|
|
|
|
* @package Test\Log
|
|
|
|
*/
|
|
|
|
class LogFactoryTest extends TestCase {
|
|
|
|
/** @var IServerContainer|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $c;
|
|
|
|
|
|
|
|
/** @var LogFactory */
|
|
|
|
protected $factory;
|
|
|
|
|
2018-04-27 00:54:11 +03:00
|
|
|
/** @var SystemConfig|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $systemConfig;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2018-04-24 23:14:00 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->c = $this->createMock(IServerContainer::class);
|
2018-04-27 00:54:11 +03:00
|
|
|
$this->systemConfig = $this->createMock(SystemConfig::class);
|
2018-04-24 23:14:00 +03:00
|
|
|
|
2018-04-27 00:54:11 +03:00
|
|
|
$this->factory = new LogFactory($this->c, $this->systemConfig);
|
2018-04-24 23:14:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function fileTypeProvider(): array {
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'file'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'nextcloud'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'owncloud'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'krzxkyr_default'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $type
|
|
|
|
* @dataProvider fileTypeProvider
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public function testFile(string $type) {
|
|
|
|
$datadir = \OC::$SERVERROOT.'/data';
|
|
|
|
$defaultLog = $datadir . '/nextcloud.log';
|
|
|
|
|
2018-10-02 19:37:57 +03:00
|
|
|
$this->systemConfig->expects($this->exactly(3))
|
2018-04-27 00:54:11 +03:00
|
|
|
->method('getValue')
|
2018-10-02 19:37:57 +03:00
|
|
|
->withConsecutive(['datadirectory', $datadir], ['logfile', $defaultLog], ['logfilemode', 0640])
|
|
|
|
->willReturnOnConsecutiveCalls($datadir, $defaultLog, 0640);
|
2018-04-24 23:14:00 +03:00
|
|
|
|
|
|
|
$log = $this->factory->get($type);
|
|
|
|
$this->assertInstanceOf(File::class, $log);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function logFilePathProvider():array {
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'/dev/null',
|
|
|
|
'/dev/null'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'/xdev/youshallfallback',
|
|
|
|
\OC::$SERVERROOT.'/data/nextcloud.log'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider logFilePathProvider
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public function testFileCustomPath($path, $expected) {
|
|
|
|
$datadir = \OC::$SERVERROOT.'/data';
|
|
|
|
$defaultLog = $datadir . '/nextcloud.log';
|
|
|
|
|
2018-10-02 19:37:57 +03:00
|
|
|
$this->systemConfig->expects($this->exactly(3))
|
2018-04-27 00:54:11 +03:00
|
|
|
->method('getValue')
|
2018-10-02 19:37:57 +03:00
|
|
|
->withConsecutive(['datadirectory', $datadir], ['logfile', $defaultLog], ['logfilemode', 0640])
|
|
|
|
->willReturnOnConsecutiveCalls($datadir, $path, 0640);
|
2018-04-24 23:14:00 +03:00
|
|
|
|
|
|
|
$log = $this->factory->get('file');
|
|
|
|
$this->assertInstanceOf(File::class, $log);
|
|
|
|
$this->assertSame($expected, $log->getLogFilePath());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public function testErrorLog() {
|
|
|
|
$log = $this->factory->get('errorlog');
|
|
|
|
$this->assertInstanceOf(Errorlog::class, $log);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public function testSystemLog() {
|
|
|
|
$this->c->expects($this->once())
|
|
|
|
->method('resolve')
|
|
|
|
->with(Syslog::class)
|
|
|
|
->willReturn($this->createMock(Syslog::class));
|
|
|
|
|
|
|
|
$log = $this->factory->get('syslog');
|
|
|
|
$this->assertInstanceOf(Syslog::class, $log);
|
|
|
|
}
|
2018-06-06 23:40:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public function testSystemdLog() {
|
|
|
|
$this->c->expects($this->once())
|
|
|
|
->method('resolve')
|
|
|
|
->with(Systemdlog::class)
|
|
|
|
->willReturn($this->createMock(Systemdlog::class));
|
|
|
|
|
|
|
|
$log = $this->factory->get('systemd');
|
|
|
|
$this->assertInstanceOf(Systemdlog::class, $log);
|
|
|
|
}
|
2018-04-24 23:14:00 +03:00
|
|
|
}
|