]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/Logger/SyslogLoggerTest.php
Merge pull request #11334 from annando/guid-style
[friendica.git] / tests / src / Core / Logger / SyslogLoggerTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Core\Logger;
23
24 use Friendica\Core\Logger\Exception\LoggerArgumentException;
25 use Friendica\Core\Logger\Exception\LoggerException;
26 use Friendica\Core\Logger\Exception\LogLevelException;
27 use Friendica\Core\Logger\Type\SyslogLogger;
28 use Psr\Log\LogLevel;
29
30 class SyslogLoggerTest extends AbstractLoggerTest
31 {
32         /**
33          * @var SyslogLoggerWrapper
34          */
35         private $logger;
36
37         protected function setUp(): void
38         {
39                 parent::setUp();
40
41                 $this->introspection->shouldReceive('addClasses')->with([SyslogLogger::class]);
42         }
43
44         /**
45          * {@inheritdoc}
46          */
47         protected function getContent()
48         {
49                 return $this->logger->getContent();
50         }
51
52         /**
53          * {@inheritdoc}
54          */
55         protected function getInstance($level = LogLevel::DEBUG)
56         {
57                 $this->logger = new SyslogLoggerWrapper('test', $this->introspection, $level);
58
59                 return $this->logger;
60         }
61
62
63         /**
64          * Test when the minimum level is not valid
65          */
66         public function testWrongMinimumLevel()
67         {
68                 $this->expectException(LogLevelException::class);
69                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
70                 
71                 $logger = new SyslogLoggerWrapper('test', $this->introspection, 'NOPE');
72         }
73
74         /**
75          * Test when the minimum level is not valid
76          */
77         public function testWrongLogLevel()
78         {
79                 $this->expectException(LogLevelException::class);
80                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
81
82                 $logger = new SyslogLoggerWrapper('test', $this->introspection);
83
84                 $logger->log('NOPE', 'a test');
85         }
86
87         /**
88          * Test the close() method
89          * @doesNotPerformAssertions
90          */
91         public function testClose()
92         {
93                 $logger = new SyslogLoggerWrapper('test', $this->introspection);
94                 $logger->emergency('test');
95                 $logger->close();
96                 // Reopened itself
97                 $logger->emergency('test');
98         }
99 }