Bitcoin Core 22.99.0
P2P Digital Currency
test_json.cpp
Go to the documentation of this file.
1// Test program that can be called by the JSON test suite at
2// https://github.com/nst/JSONTestSuite.
3//
4// It reads JSON input from stdin and exits with code 0 if it can be parsed
5// successfully. It also pretty prints the parsed JSON value to stdout.
6
7#include <iostream>
8#include <string>
9#include "univalue.h"
10
11using namespace std;
12
13int main (int argc, char *argv[])
14{
15 UniValue val;
16 if (val.read(string(istreambuf_iterator<char>(cin),
17 istreambuf_iterator<char>()))) {
18 cout << val.write(1 /* prettyIndent */, 4 /* indentLevel */) << endl;
19 return 0;
20 } else {
21 cerr << "JSON Parse Error." << endl;
22 return 1;
23 }
24}
std::string write(unsigned int prettyIndent=0, unsigned int indentLevel=0) const
bool read(const char *raw, size_t len)
int main(int argc, char *argv[])
Definition: test_json.cpp:13