c = $this->createMock(IServerContainer::class); $this->systemConfig = $this->createMock(SystemConfig::class); $this->factory = new LogFactory($this->c, $this->systemConfig); } 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'; $this->systemConfig->expects($this->exactly(3)) ->method('getValue') ->withConsecutive(['datadirectory', $datadir], ['logfile', $defaultLog], ['logfilemode', 0640]) ->willReturnOnConsecutiveCalls($datadir, $defaultLog, 0640); $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'; $this->systemConfig->expects($this->exactly(3)) ->method('getValue') ->withConsecutive(['datadirectory', $datadir], ['logfile', $defaultLog], ['logfilemode', 0640]) ->willReturnOnConsecutiveCalls($datadir, $path, 0640); $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); } /** * @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); } }