This commit is contained in:
simon987 2020-04-15 19:58:22 -04:00
parent ec129b84e8
commit c03fb02f44
2 changed files with 22 additions and 1 deletions

View File

@ -30,7 +30,7 @@ scan_code_t parse_markup(scan_text_ctx_t *ctx, vfile_t *f, document_t *doc) {
int to_read = MIN(MAX_MARKUP_SIZE, f->info.st_size);
char *buf = malloc(to_read);
char *buf = malloc(to_read + 1);
int ret = f->read(f, buf, to_read);
if (ret < 0) {
CTX_LOG_ERRORF(doc->filepath, "read() returned error code: [%d]", ret)
@ -38,6 +38,8 @@ scan_code_t parse_markup(scan_text_ctx_t *ctx, vfile_t *f, document_t *doc) {
return SCAN_ERR_READ;
}
*(buf + to_read) = '\0';
text_buffer_t tex = text_buffer_create(ctx->content_size);
text_buffer_append_markup(&tex, buf);
text_buffer_terminate_string(&tex);

View File

@ -99,6 +99,25 @@ TEST(Text, MemWhitespace) {
cleanup(&doc, &f);
}
TEST(Text, MemNoise) {
char content[600];
for (char &i : content) {
int x = rand();
i = x == 0 ? 1 : x;
}
content[599] = '\0';
vfile_t f;
document_t doc;
load_doc_mem((void *) content, strlen(content), &f, &doc);
parse_text(&text_500_ctx, &f, &doc);
ASSERT_TRUE(utf8valid(get_meta(&doc, MetaContent)->str_val) == 0);
cleanup(&doc, &f);
}
TEST(TextMarkup, Mem1) {
const char *content = "<<a<aa<<<>test<aaaa><>test test <>";
vfile_t f;