]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/Logger/SyslogLoggerTest.php
Replace own VoidLogger with PSR-Standard NullLogger()
[friendica.git] / tests / src / Core / Logger / SyslogLoggerTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Type\SyslogLogger;
27 use Psr\Log\LogLevel;
28
29 class SyslogLoggerTest extends AbstractLoggerTest
30 {
31         /**
32          * @var SyslogLoggerWrapper
33          */
34         private $logger;
35
36         protected function setUp(): void
37         {
38                 parent::setUp();
39
40                 $this->introspection->shouldReceive('addClasses')->with([SyslogLogger::class]);
41         }
42
43         /**
44          * {@inheritdoc}
45          */
46         protected function getContent()
47         {
48                 return $this->logger->getContent();
49         }
50
51         /**
52          * {@inheritdoc}
53          */
54         protected function getInstance($level = LogLevel::DEBUG)
55         {
56                 $this->logger = new SyslogLoggerWrapper('test', $this->introspection, $level);
57
58                 return $this->logger;
59         }
60
61
62         /**
63          * Test when the minimum level is not valid
64          */
65         public function testWrongMinimumLevel()
66         {
67                 $this->expectException(LoggerArgumentException::class);
68                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
69                 
70                 $logger = new SyslogLoggerWrapper('test', $this->introspection, 'NOPE');
71         }
72
73         /**
74          * Test when the minimum level is not valid
75          */
76         public function testWrongLogLevel()
77         {
78                 $this->expectException(LoggerArgumentException::class);
79                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
80
81                 $logger = new SyslogLoggerWrapper('test', $this->introspection);
82
83                 $logger->log('NOPE', 'a test');
84         }
85
86         /**
87          * Test the close() method
88          * @doesNotPerformAssertions
89          */
90         public function testClose()
91         {
92                 $logger = new SyslogLoggerWrapper('test', $this->introspection);
93                 $logger->emergency('test');
94                 $logger->close();
95                 // Reopened itself
96                 $logger->emergency('test');
97         }
98 }