mirror of
https://github.com/simon987/libscan.git
synced 2025-04-06 04:42:59 +00:00
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
#include "gtest/gtest.h"
|
|
#include "test_util.h"
|
|
|
|
extern "C" {
|
|
#include "../libscan/arc/arc.h"
|
|
#include "../libscan/text/text.h"
|
|
}
|
|
|
|
static scan_arc_ctx_t arc_recurse_ctx;
|
|
static scan_arc_ctx_t arc_list_ctx;
|
|
static scan_text_ctx_t text_500_ctx;
|
|
|
|
|
|
TEST(TextTest, BookCsvContentLen) {
|
|
const char *filepath = "libscan-test-files/test_files/text/books.csv";
|
|
|
|
vfile_t f;
|
|
document_t doc;
|
|
doc.meta_head = nullptr;
|
|
doc.meta_tail = nullptr;
|
|
load_file(filepath, &f);
|
|
parse_text(&text_500_ctx, &f, &doc);
|
|
|
|
ASSERT_NEAR(strlen(get_meta(&doc, MetaContent)->str_val), 500, 1);
|
|
CLOSE_FILE(f)
|
|
destroy_doc(&doc);
|
|
}
|
|
|
|
TEST(TextTest, MemUtf8_1) {
|
|
const char *content = "a"; //todo
|
|
|
|
vfile_t f;
|
|
document_t doc;
|
|
doc.meta_head = nullptr;
|
|
doc.meta_tail = nullptr;
|
|
load_mem((void *) content, strlen(content), &f);
|
|
parse_text(&text_500_ctx, &f, &doc);
|
|
|
|
ASSERT_EQ(strlen(get_meta(&doc, MetaContent)->str_val), 1);
|
|
destroy_doc(&doc);
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
arc_recurse_ctx.log = noop_log;
|
|
arc_recurse_ctx.logf = noop_logf;
|
|
arc_recurse_ctx.store = noop_store;
|
|
arc_recurse_ctx.mode = ARC_MODE_RECURSE;
|
|
arc_recurse_ctx.parse = nullptr; //TODO
|
|
|
|
arc_list_ctx.log = noop_log;
|
|
arc_list_ctx.logf = noop_logf;
|
|
arc_list_ctx.store = noop_store;
|
|
arc_list_ctx.mode = ARC_MODE_LIST;
|
|
|
|
text_500_ctx.content_size = 500;
|
|
text_500_ctx.log = noop_log;
|
|
text_500_ctx.logf = noop_logf;
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
} |