ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
GelfMessageFormatterTest.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of the Monolog package.
5 *
6 * (c) Jordi Boggiano <j.boggiano@seld.be>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Monolog\Formatter;
13
15
17{
18 public function setUp()
19 {
20 if (!class_exists('\Gelf\Message')) {
21 $this->markTestSkipped("graylog2/gelf-php or mlehner/gelf-php is not installed");
22 }
23 }
24
28 public function testDefaultFormatter()
29 {
30 $formatter = new GelfMessageFormatter();
31 $record = array(
32 'level' => Logger::ERROR,
33 'level_name' => 'ERROR',
34 'channel' => 'meh',
35 'context' => array(),
36 'datetime' => new \DateTime("@0"),
37 'extra' => array(),
38 'message' => 'log',
39 );
40
41 $message = $formatter->format($record);
42
43 $this->assertInstanceOf('Gelf\Message', $message);
44 $this->assertEquals(0, $message->getTimestamp());
45 $this->assertEquals('log', $message->getShortMessage());
46 $this->assertEquals('meh', $message->getFacility());
47 $this->assertEquals(null, $message->getLine());
48 $this->assertEquals(null, $message->getFile());
49 $this->assertEquals($this->isLegacy() ? 3 : 'error', $message->getLevel());
50 $this->assertNotEmpty($message->getHost());
51
52 $formatter = new GelfMessageFormatter('mysystem');
53
54 $message = $formatter->format($record);
55
56 $this->assertInstanceOf('Gelf\Message', $message);
57 $this->assertEquals('mysystem', $message->getHost());
58 }
59
63 public function testFormatWithFileAndLine()
64 {
65 $formatter = new GelfMessageFormatter();
66 $record = array(
67 'level' => Logger::ERROR,
68 'level_name' => 'ERROR',
69 'channel' => 'meh',
70 'context' => array('from' => 'logger'),
71 'datetime' => new \DateTime("@0"),
72 'extra' => array('file' => 'test', 'line' => 14),
73 'message' => 'log',
74 );
75
76 $message = $formatter->format($record);
77
78 $this->assertInstanceOf('Gelf\Message', $message);
79 $this->assertEquals('test', $message->getFile());
80 $this->assertEquals(14, $message->getLine());
81 }
82
87 public function testFormatInvalidFails()
88 {
89 $formatter = new GelfMessageFormatter();
90 $record = array(
91 'level' => Logger::ERROR,
92 'level_name' => 'ERROR',
93 );
94
95 $formatter->format($record);
96 }
97
101 public function testFormatWithContext()
102 {
103 $formatter = new GelfMessageFormatter();
104 $record = array(
105 'level' => Logger::ERROR,
106 'level_name' => 'ERROR',
107 'channel' => 'meh',
108 'context' => array('from' => 'logger'),
109 'datetime' => new \DateTime("@0"),
110 'extra' => array('key' => 'pair'),
111 'message' => 'log'
112 );
113
114 $message = $formatter->format($record);
115
116 $this->assertInstanceOf('Gelf\Message', $message);
117
118 $message_array = $message->toArray();
119
120 $this->assertArrayHasKey('_ctxt_from', $message_array);
121 $this->assertEquals('logger', $message_array['_ctxt_from']);
122
123 // Test with extraPrefix
124 $formatter = new GelfMessageFormatter(null, null, 'CTX');
125 $message = $formatter->format($record);
126
127 $this->assertInstanceOf('Gelf\Message', $message);
128
129 $message_array = $message->toArray();
130
131 $this->assertArrayHasKey('_CTXfrom', $message_array);
132 $this->assertEquals('logger', $message_array['_CTXfrom']);
133 }
134
139 {
140 $formatter = new GelfMessageFormatter();
141 $record = array(
142 'level' => Logger::ERROR,
143 'level_name' => 'ERROR',
144 'channel' => 'meh',
145 'context' => array('from' => 'logger', 'exception' => array(
146 'class' => '\Exception',
147 'file' => '/some/file/in/dir.php:56',
148 'trace' => array('/some/file/1.php:23', '/some/file/2.php:3')
149 )),
150 'datetime' => new \DateTime("@0"),
151 'extra' => array(),
152 'message' => 'log'
153 );
154
155 $message = $formatter->format($record);
156
157 $this->assertInstanceOf('Gelf\Message', $message);
158
159 $this->assertEquals("/some/file/in/dir.php", $message->getFile());
160 $this->assertEquals("56", $message->getLine());
161 }
162
166 public function testFormatWithExtra()
167 {
168 $formatter = new GelfMessageFormatter();
169 $record = array(
170 'level' => Logger::ERROR,
171 'level_name' => 'ERROR',
172 'channel' => 'meh',
173 'context' => array('from' => 'logger'),
174 'datetime' => new \DateTime("@0"),
175 'extra' => array('key' => 'pair'),
176 'message' => 'log'
177 );
178
179 $message = $formatter->format($record);
180
181 $this->assertInstanceOf('Gelf\Message', $message);
182
183 $message_array = $message->toArray();
184
185 $this->assertArrayHasKey('_key', $message_array);
186 $this->assertEquals('pair', $message_array['_key']);
187
188 // Test with extraPrefix
189 $formatter = new GelfMessageFormatter(null, 'EXT');
190 $message = $formatter->format($record);
191
192 $this->assertInstanceOf('Gelf\Message', $message);
193
194 $message_array = $message->toArray();
195
196 $this->assertArrayHasKey('_EXTkey', $message_array);
197 $this->assertEquals('pair', $message_array['_EXTkey']);
198 }
199
200 private function isLegacy()
201 {
202 return interface_exists('\Gelf\IMessagePublisher');
203 }
204}
testFormatWithExtra()
@covers Monolog\Formatter\GelfMessageFormatter::format
testFormatWithFileAndLine()
@covers Monolog\Formatter\GelfMessageFormatter::format
testFormatWithContext()
@covers Monolog\Formatter\GelfMessageFormatter::format
testFormatWithContextContainingException()
@covers Monolog\Formatter\GelfMessageFormatter::format
testDefaultFormatter()
@covers Monolog\Formatter\GelfMessageFormatter::format
testFormatInvalidFails()
@covers Monolog\Formatter\GelfMessageFormatter::format @expectedException InvalidArgumentException
Serializes a log message to GELF.
Monolog log channel.
Definition: Logger.php:28
const ERROR
Runtime errors.
Definition: Logger.php:57