Skip to content

Commit 645a672

Browse files
authored
feat: ignore breadcrumbs with empty message (#215)
1 parent 3d0b267 commit 645a672

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

src/Honeybadger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public function resetContext(): void
201201

202202
public function addBreadcrumb(string $message, array $metadata = [], string $category = 'custom'): Reporter
203203
{
204-
if ($this->config['breadcrumbs']['enabled']) {
204+
if ($this->config['breadcrumbs']['enabled'] && !empty($message)) {
205205
$this->breadcrumbs->add([
206206
'message' => $message,
207207
'metadata' => $metadata,

tests/HoneybadgerTest.php

+39
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,45 @@ public function can_add_custom_breadcrumbs_if_enabled()
869869
], $notification['breadcrumbs']['trail'][1]['metadata']);
870870
}
871871

872+
/** @test */
873+
public function does_not_add_breadcrumbs_with_empty_message()
874+
{
875+
$client = HoneybadgerClient::new([
876+
new Response(201),
877+
]);
878+
879+
$badger = Honeybadger::new([
880+
'api_key' => 'asdf',
881+
'handlers' => [
882+
'exception' => false,
883+
'error' => false,
884+
],
885+
], $client->make());
886+
887+
sleep(1);
888+
$badger
889+
->addBreadcrumb('', ['this will not be' => 'sent'], 'render')
890+
->setComponent('HomeController')
891+
->setAction('index')
892+
->notify(new Exception('Test exception'));
893+
894+
$notification = $client->requestBody();
895+
896+
$this->assertTrue($notification['breadcrumbs']['enabled']);
897+
898+
// only the notice breadcrumb should be sent
899+
$this->assertCount(1, $notification['breadcrumbs']['trail']);
900+
901+
$noticeBreadcrumb = $notification['breadcrumbs']['trail'][0];
902+
$this->assertEquals('Honeybadger Notice', $noticeBreadcrumb['message']);
903+
$this->assertEquals('notice', $noticeBreadcrumb['category']);
904+
$this->assertInstanceOf(\DateTime::class, date_create($noticeBreadcrumb['timestamp']));
905+
$this->assertEquals([
906+
'message' => 'Test exception',
907+
'name' => Exception::class,
908+
], $noticeBreadcrumb['metadata']);
909+
}
910+
872911
/** @test */
873912
public function wont_send_breadcrumbs_if_disabled()
874913
{

0 commit comments

Comments
 (0)