1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#include <cinttypes>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <set>
#include <sstream>
#include <string>
#include <unistd.h>
#include <utility>
#include <vector>
#include "cast_tester.h"
#include "simdjson.h"
#include "test_macros.h"
const char *test_files[] = {
TWITTER_JSON, TWITTER_TIMELINE_JSON, REPEAT_JSON, CANADA_JSON,
MESH_JSON, APACHE_JSON, GSOC_JSON};
/**
* The general idea of these tests if that if you take a JSON file,
* load it, then convert it into a string, then parse that, and
* convert it again into a second string, then the two strings should
* be identifical. If not, then something was lost or added in the
* process.
*/
bool load_prettify(const char *filename) {
std::cout << "Loading " << filename << std::endl;
simdjson::dom::parser parser;
simdjson::dom::element doc;
auto error = parser.load(filename).get(doc);
if (error) { std::cerr << error << std::endl; return false; }
auto serial1 = simdjson::prettify(doc);
error = parser.parse(serial1).get(doc);
if (error) { std::cerr << error << std::endl; return false; }
auto serial2 = simdjson::prettify(doc);
bool match = (serial1 == serial2);
if (match) {
std::cout << "Parsing prettify and calling prettify again results in the same "
"content."
<< std::endl;
} else {
std::cout << "The content differs!" << std::endl;
}
return match;
}
bool prettify_test() {
std::cout << "Running " << __func__ << std::endl;
for (size_t i = 0; i < sizeof(test_files) / sizeof(test_files[0]); i++) {
bool ok = load_prettify(test_files[i]);
if (!ok) {
return false;
}
}
return true;
}
int main() { return prettify_test() ? EXIT_SUCCESS : EXIT_FAILURE; }
|