From 7aa89b59d989063bc73a7abc0579eb1990117e4f Mon Sep 17 00:00:00 2001 From: simon987 Date: Tue, 18 Aug 2020 18:38:53 -0400 Subject: [PATCH] Add test case for blank PDF --- test/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/main.cpp b/test/main.cpp index d7882af..8eac0ed 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -211,6 +211,16 @@ TEST(Ebook, Pdf2) { cleanup(&doc, &f); } +TEST(Ebook, PdfBlank) { + vfile_t f; + document_t doc; + load_doc_file("libscan-test-files/test_files/ebook/blank.pdf", &f, &doc); + + parse_ebook(&ebook_500_ctx, &f, "application/pdf", &doc); + + cleanup(&doc, &f); +} + TEST(Ebook, Epub1) { vfile_t f; document_t doc;