jansson/test/suites/api/test_loadb.c

38 lines
1.1 KiB
C
Raw Normal View History

/*
2016-09-18 19:17:03 +08:00
* Copyright (c) 2009-2016 Petri Lehtinen <petri@digip.org>
*
* Jansson is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
2019-10-17 14:08:51 +08:00
#include "util.h"
#include <jansson.h>
#include <string.h>
2019-10-17 14:08:51 +08:00
static void run_tests() {
json_t *json;
json_error_t error;
const char str[] = "[\"A\", {\"B\": \"C\"}, 1, 2, 3]garbage";
size_t len = strlen(str) - strlen("garbage");
json = json_loadb(str, len, 0, &error);
2019-10-17 14:08:51 +08:00
if (!json) {
fail("json_loadb failed on a valid JSON buffer");
}
json_decref(json);
json = json_loadb(str, len - 1, 0, &error);
if (json) {
json_decref(json);
2019-10-17 14:08:51 +08:00
fail("json_loadb should have failed on an incomplete buffer, but it "
"didn't");
}
2019-10-17 14:08:51 +08:00
if (error.line != 1) {
fail("json_loadb returned an invalid line number on fail");
}
2019-10-17 14:08:51 +08:00
if (strcmp(error.text, "']' expected near end of file") != 0) {
fail("json_loadb returned an invalid error message for an unclosed "
"top-level array");
}
}