more documentation
This commit is contained in:
parent
40e899a819
commit
f883a04c87
5 changed files with 102 additions and 22 deletions
46
doc/examples/json_pointer.cpp
Normal file
46
doc/examples/json_pointer.cpp
Normal file
|
@ -0,0 +1,46 @@
|
|||
#include <json.hpp>
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
||||
int main()
|
||||
{
|
||||
// correct JSON pointers
|
||||
json::json_pointer p1;
|
||||
json::json_pointer p2("");
|
||||
json::json_pointer p3("/");
|
||||
json::json_pointer p4("//");
|
||||
json::json_pointer p5("/foo/bar");
|
||||
json::json_pointer p6("/foo/bar/-");
|
||||
json::json_pointer p7("/foo/~0");
|
||||
json::json_pointer p8("/foo/~1");
|
||||
|
||||
// error: JSON pointer does not begin with a slash
|
||||
try
|
||||
{
|
||||
json::json_pointer p9("foo");
|
||||
}
|
||||
catch (std::domain_error& e)
|
||||
{
|
||||
std::cout << "domain_error: " << e.what() << '\n';
|
||||
}
|
||||
|
||||
// error: JSON pointer uses escape symbol ~ not followed by 0 or 1
|
||||
try
|
||||
{
|
||||
json::json_pointer p10("/foo/~");
|
||||
}
|
||||
catch (std::domain_error& e)
|
||||
{
|
||||
std::cout << "domain_error: " << e.what() << '\n';
|
||||
}
|
||||
|
||||
// error: JSON pointer uses escape symbol ~ not followed by 0 or 1
|
||||
try
|
||||
{
|
||||
json::json_pointer p11("/foo/~3");
|
||||
}
|
||||
catch (std::domain_error& e)
|
||||
{
|
||||
std::cout << "domain_error: " << e.what() << '\n';
|
||||
}
|
||||
}
|
1
doc/examples/json_pointer.link
Normal file
1
doc/examples/json_pointer.link
Normal file
|
@ -0,0 +1 @@
|
|||
<a target="_blank" href="http://melpon.org/wandbox/permlink/9OR6xQ1rRZDA0W94"><b>online</b></a>
|
3
doc/examples/json_pointer.output
Normal file
3
doc/examples/json_pointer.output
Normal file
|
@ -0,0 +1,3 @@
|
|||
domain_error: JSON pointer must be empty or begin with '/'
|
||||
domain_error: escape error: '~' must be followed with '0' or '1'
|
||||
domain_error: escape error: '~' must be followed with '0' or '1'
|
Loading…
Add table
Add a link
Reference in a new issue