Skip to content

Commit 929814c

Browse files
committed
Improve flush callbacks and fixed unit tests
1 parent 436a5c7 commit 929814c

File tree

2 files changed

+34
-12
lines changed

2 files changed

+34
-12
lines changed

src/RollbarServiceProvider.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,28 @@ public function boot()
2828
$app['rollbar.handler']->log($level, $message, $context);
2929
});
3030

31-
if (method_exists($app, 'version') and starts_with($app->version(), '5'))
31+
// Flush callback
32+
$flush = function() use ($app)
3233
{
33-
// Register Laravel 5 shutdown function
34-
$this->app->terminating(function() use ($app)
34+
if ($app->resolved('rollbar.client'))
3535
{
3636
$app['rollbar.client']->flush();
37-
});
37+
}
38+
};
39+
40+
if (method_exists($app, 'version') and starts_with($app->version(), '5'))
41+
{
42+
// Register Laravel 5 shutdown function
43+
$this->app->terminating($flush);
3844
}
3945
else
4046
{
4147
// Register Laravel 4 shutdown function
42-
$this->app->shutdown(function() use ($app)
43-
{
44-
$app['rollbar.client']->flush();
45-
});
48+
$this->app->shutdown($flush);
4649
}
4750

4851
// Register PHP shutdown function
49-
register_shutdown_function(function() use ($app)
50-
{
51-
$app['rollbar.client']->flush();
52-
});
52+
register_shutdown_function($flush);
5353
}
5454

5555
/**

tests/RollbarTest.php

+22
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ public function setUp()
1313
public function tearDown()
1414
{
1515
Mockery::close();
16+
17+
parent::tearDown();
1618
}
1719

1820
protected function getPackageProviders($app)
@@ -159,4 +161,24 @@ public function testAboveLevel()
159161
$this->app->log->emergency('hello');
160162
}
161163

164+
public function testFlushOnTerminate()
165+
{
166+
$clientMock = Mockery::mock('RollbarNotifier');
167+
$clientMock->shouldReceive('flush')->once();
168+
$this->app['rollbar.client'] = $clientMock;
169+
170+
$handler = $this->app->make('rollbar.handler');
171+
172+
$this->app->terminate();
173+
}
174+
175+
public function testDontFlushIfUnresolved()
176+
{
177+
$clientMock = Mockery::mock('RollbarNotifier');
178+
$clientMock->shouldReceive('flush')->times(0);
179+
$this->app['rollbar.client'] = $clientMock;
180+
181+
$this->app->terminate();
182+
}
183+
162184
}

0 commit comments

Comments
 (0)