]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/Logger/SyslogLoggerTest.php
spelling: forums
[friendica.git] / tests / src / Core / Logger / SyslogLoggerTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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                 $this->config->shouldReceive('get')->with('system', 'syslog_flags')->andReturn(SyslogLogger::DEFAULT_FLAGS)
43                                          ->once();
44                 $this->config->shouldReceive('get')->with('system', 'syslog_facility')
45                                          ->andReturn(SyslogLogger::DEFAULT_FACILITY)->once();
46         }
47
48         /**
49          * {@inheritdoc}
50          */
51         protected function getContent()
52         {
53                 return $this->logger->getContent();
54         }
55
56         /**
57          * {@inheritdoc}
58          */
59         protected function getInstance($level = LogLevel::DEBUG)
60         {
61                 $this->logger = new SyslogLoggerWrapper('test', $this->config, $this->introspection, $level);
62
63                 return $this->logger;
64         }
65
66
67         /**
68          * Test when the minimum level is not valid
69          */
70         public function testWrongMinimumLevel()
71         {
72                 $this->expectException(LogLevelException::class);
73                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
74                 
75                 $logger = new SyslogLoggerWrapper('test', $this->config, $this->introspection, 'NOPE');
76         }
77
78         /**
79          * Test when the minimum level is not valid
80          */
81         public function testWrongLogLevel()
82         {
83                 $this->expectException(LogLevelException::class);
84                 $this->expectExceptionMessageMatches("/The level \".*\" is not valid./");
85
86                 $logger = new SyslogLoggerWrapper('test', $this->config, $this->introspection);
87
88                 $logger->log('NOPE', 'a test');
89         }
90
91         /**
92          * Test the close() method
93          * @doesNotPerformAssertions
94          */
95         public function testClose()
96         {
97                 $logger = new SyslogLoggerWrapper('test', $this->config, $this->introspection);
98                 $logger->emergency('test');
99                 $logger->close();
100                 // Reopened itself
101                 $logger->emergency('test');
102         }
103 }