Skip to content

Commit 9a0eee5

Browse files
committed
Fix regression on journal filter results being serialized to nil
1 parent c6f4ddc commit 9a0eee5

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

core/journal/journal.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,10 @@ func (this *Journal) GetEntries(offset int, limit int, from *time.Time, to *time
161161
}
162162

163163
func (this *Journal) GetFilteredEntries(journalEntryFilterView v2.JournalEntryFilterView) ([]v2.JournalEntryView, error) {
164-
var filteredEntries []v2.JournalEntryView
164+
// init an empty slice to prevent serializing to a null value
165+
filteredEntries := []v2.JournalEntryView{}
165166
if this.EntryLimit == 0 {
167+
166168
return filteredEntries, fmt.Errorf("Journal disabled")
167169
}
168170

core/journal/journal_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,35 @@ func Test_Journal_GetEntries_FilteredByTimeWindow(t *testing.T) {
460460
Expect(entries[2].TimeStarted).To(Equal("2018-02-01T02:00:03.000Z"))
461461
}
462462

463+
func Test_Journal_GetFilteredEntries_WillReturnEmptySliceIfNoJournalFound(t *testing.T) {
464+
RegisterTestingT(t)
465+
466+
unit := journal.NewJournal()
467+
468+
request, _ := http.NewRequest("GET", "http://hoverfly.io/path/one?one=1&two=2", bytes.NewBufferString(`{"meta:{"field": "value"}}`))
469+
request.Header.Add("Accept", "application/json")
470+
471+
unit.NewEntry(request, &http.Response{
472+
StatusCode: 200,
473+
Body: ioutil.NopCloser(bytes.NewBufferString("test body")),
474+
}, "test-mode", time.Now())
475+
476+
// Body
477+
entries, err := unit.GetFilteredEntries(v2.JournalEntryFilterView{
478+
Request: &v2.RequestMatcherViewV5{
479+
Body: []v2.MatcherViewV5{
480+
{
481+
Matcher: matchers.Exact,
482+
Value: `{"meta:{"field": "other-value"}}`,
483+
},
484+
},
485+
},
486+
})
487+
Expect(err).To(BeNil())
488+
Expect(entries).ToNot(BeNil())
489+
Expect(entries).To(HaveLen(0))
490+
}
491+
463492
func Test_Journal_GetFilteredEntries_WillFilterOnRequestFields(t *testing.T) {
464493
RegisterTestingT(t)
465494

0 commit comments

Comments
 (0)