@@ -869,6 +869,45 @@ public function can_add_custom_breadcrumbs_if_enabled()
869
869
], $ notification ['breadcrumbs ' ]['trail ' ][1 ]['metadata ' ]);
870
870
}
871
871
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
+
872
911
/** @test */
873
912
public function wont_send_breadcrumbs_if_disabled ()
874
913
{
0 commit comments