forked from jenssegers/laravel-rollbar
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathRollbarTest.php
236 lines (184 loc) · 7.96 KB
/
RollbarTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
namespace Rollbar\Laravel\Tests;
use Rollbar\Laravel\MonologHandler;
use Rollbar\Laravel\AgentHandler;
use Rollbar\RollbarLogger;
class RollbarTest extends TestCase
{
public function testBinding()
{
$client = $this->app->make(RollbarLogger::class);
$this->assertInstanceOf(RollbarLogger::class, $client);
$handler = $this->app->make(MonologHandler::class);
$this->assertInstanceOf(MonologHandler::class, $handler);
$handler = $this->app->make(AgentHandler::class);
$this->assertInstanceOf(AgentHandler::class, $handler);
}
public function testIsSingleton()
{
$handler1 = $this->app->make(MonologHandler::class);
$handler2 = $this->app->make(MonologHandler::class);
$this->assertEquals(spl_object_hash($handler1), spl_object_hash($handler2));
}
public function testPassConfiguration()
{
$client = $this->app->make(RollbarLogger::class);
$config = $client->extend([]);
$this->assertEquals($this->access_token, $config['access_token']);
}
public function testCustomConfiguration()
{
$this->refreshApplicationWithConfig([
'logging.channels.rollbar.root' => '/tmp',
'logging.channels.rollbar.included_errno' => E_ERROR,
'logging.channels.rollbar.environment' => 'staging',
]);
/** @var RollbarLogger $client */
$client = $this->app->make(RollbarLogger::class);
$config = $client->getConfig()->getConfigArray();
$this->assertEquals('staging', $config['environment']);
$this->assertEquals('/tmp', $config['root']);
$this->assertEquals(E_ERROR, $config['included_errno']);
}
public function testRollbarAgentConfigurationAdapter()
{
$this->refreshApplicationWithConfig(['logging.channels.rollbar.handler' => AgentHandler::class]);
$client = $this->app->make(RollbarLogger::class);
$config = $client->extend([]);
$this->assertEquals(
'agent',
$config['handler'] ?? null,
'AgentHandler given as Laravel logging config handler should be given as "agent" to Rollbar::init'
);
}
// public function testAutomaticContext()
// {
// $this->app->session->put('foo', 'bar');
// $logger = \Mockery::mock('Rollbar\RollbarLogger[log]', [[
// 'access_token' => $this->access_token,
// 'environment' => 'testAutomaticContext'
// ]]);
// $logger->shouldReceive('log')->withArgs(function($args) {
// var_dump($args); die();
// });
// $handler = new MonologHandler($logger, \Monolog\Logger::INFO);
// $handler->setApp($this->app);
// $this->app->log->getMonolog()->pushHandler($handler);
// $this->app->log->info('Test log message');
// var_dump([
// 'level' => 'info',
// 'level_name' => 'INFO',
// 'channel' => 'local',
// 'datetime' => $time->format('u')
// ]);
// $handler = new MonologHandler($logger, Logger::INFO);
// $handler->setApp($this->app);
// $handler->handle([
// 'level' => Logger::INFO,
// 'message' => 'Test log message',
// 'context' => [],
// 'extra' => [],
// 'level_name' => 'INFO',
// 'channel' => 'local',
// 'datetime' => $time,
// 'formatted' => 'foo'
// ]);
// $config = $logger->extend([]);
// $this->assertEquals([
// 'session' => ['foo' => 'bar'],
// 'id' => $this->app->session->getId(),
// ], $config['person']);
// }
// public function testMergedContext()
// {
// $this->app->session->put('foo', 'bar');
// $logger = $this->app->make(RollbarLogger::class);
// $handlerMock = \Mockery::mock(RollbarLogHandler::class, [$logger, $this->app]);
// $handlerMock->shouldReceive('log')->passthru();
// $this->app[RollbarLogHandler::class] = $handlerMock;
// $handlerMock->log('info', 'Test log message', [
// 'tags' => ['one' => 'two'],
// 'person' => ['id' => "1337", 'email' => 'john@doe.com'],
// ]);
// $config = $logger->extend([]);
// $this->assertEquals([
// 'session' => ['foo' => 'bar'],
// 'id' => "1337",
// 'email' => 'john@doe.com',
// ], $config['person']);
// }
// public function testLogListener()
// {
// $exception = new \Exception('Testing error handler');
// $clientMock = \Mockery::mock(RollbarLogger::class);
// $clientMock->shouldReceive('log')->times(2);
// $clientMock->shouldReceive('log')->times(1)->with('error', $exception, ['foo' => 'bar']);
// $handlerMock = \Mockery::mock(RollbarLogHandler::class, [$clientMock, $this->app]);
// $handlerMock->shouldReceive('log')->passthru();
// $this->app[RollbarLogHandler::class] = $handlerMock;
// $this->app->log->info('hello');
// $this->app->log->error('oops');
// $this->app->log->error($exception, ['foo' => 'bar']);
// }
// public function testErrorLevels1()
// {
// $this->app->config->set('logging.channels.rollbar.level', 'critical');
// $clientMock = \Mockery::mock(RollbarLogger::class);
// $clientMock->shouldReceive('log')->times(3);
// $this->app[RollbarLogger::class] = $clientMock;
// $this->app->log->debug('hello');
// $this->app->log->info('hello');
// $this->app->log->notice('hello');
// $this->app->log->warning('hello');
// $this->app->log->error('hello');
// $this->app->log->critical('hello');
// $this->app->log->alert('hello');
// $this->app->log->emergency('hello');
// }
// public function testErrorLevels2()
// {
// $this->app->config->set('logging.channels.rollbar.level', 'debug');
// $clientMock = \Mockery::mock(RollbarLogger::class);
// $clientMock->shouldReceive('log')->times(8);
// $this->app[RollbarLogger::class] = $clientMock;
// $this->app->log->debug('hello');
// $this->app->log->info('hello');
// $this->app->log->notice('hello');
// $this->app->log->warning('hello');
// $this->app->log->error('hello');
// $this->app->log->critical('hello');
// $this->app->log->alert('hello');
// $this->app->log->emergency('hello');
// }
// public function testErrorLevels3()
// {
// $this->app->config->set('logging.channels.rollbar.level', 'none');
// $clientMock = \Mockery::mock(RollbarLogger::class);
// $clientMock->shouldReceive('log')->times(0);
// $this->app[RollbarLogger::class] = $clientMock;
// $this->app->log->debug('hello');
// $this->app->log->info('hello');
// $this->app->log->notice('hello');
// $this->app->log->warning('hello');
// $this->app->log->error('hello');
// $this->app->log->critical('hello');
// $this->app->log->alert('hello');
// $this->app->log->emergency('hello');
// }
// public function testPersonFunctionIsCalledWhenSessionContainsAtLeastOneItem()
// {
// $this->app->config->set('logging.channels.rollbar.person_fn', function () {
// return [
// 'id' => '123',
// 'username' => 'joebloggs',
// ];
// });
// $logger = $this->app->make(RollbarLogger::class);
// $this->app->session->put('foo', 'bar');
// $this->app->log->debug('hello');
// $config = $logger->extend([]);
// $person = $config['person'];
// $this->assertEquals('123', $person['id']);
// $this->assertEquals('joebloggs', $person['username']);
// }
}