Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

add test case to check "doc[field] == null" in csv report generation #370

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,20 @@ describe('test create saved search report', () => {
}, 20000);
});

test('create report for data set contains null field value', async () => {
const hits = [
hit({ category: 'c1', customer_gender: 'Ma' }),
hit({ category: 'c2', customer_gender: 'le' }),
hit({ category: 'c3', customer_gender: null }),
];
const client = mockEsClient(hits);
const { dataUrl } = await createSavedSearchReport(input, client);

expect(dataUrl).toEqual(
'category,customer_gender\n' + 'c1,Ma\n' + 'c2,le\n' + 'c3, '
);
}, 20000);

/**
* Mock Elasticsearch client and return different mock objects based on endpoint and parameters.
*/
Expand Down