|
@@ -0,0 +1,591 @@
|
|
|
+// Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
|
|
|
+//
|
|
|
+// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
+// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
+
|
|
|
+#include <gtest/gtest.h>
|
|
|
+#include <cc/data.h>
|
|
|
+#include <agent/parser_context.h>
|
|
|
+#include <cc/dhcp_config_error.h>
|
|
|
+#include <testutils/io_utils.h>
|
|
|
+
|
|
|
+using namespace isc::data;
|
|
|
+using namespace std;
|
|
|
+
|
|
|
+namespace isc {
|
|
|
+namespace agent {
|
|
|
+namespace test {
|
|
|
+
|
|
|
+/// @brief compares two JSON trees
|
|
|
+///
|
|
|
+/// If differences are discovered, gtest failure is reported (using EXPECT_EQ)
|
|
|
+///
|
|
|
+/// @param a first to be compared
|
|
|
+/// @param b second to be compared
|
|
|
+void compareJSON(ConstElementPtr a, ConstElementPtr b) {
|
|
|
+ ASSERT_TRUE(a);
|
|
|
+ ASSERT_TRUE(b);
|
|
|
+ EXPECT_EQ(a->str(), b->str());
|
|
|
+}
|
|
|
+
|
|
|
+/// @brief Tests if the input string can be parsed with specific parser
|
|
|
+///
|
|
|
+/// The input text will be passed to bison parser of specified type.
|
|
|
+/// Then the same input text is passed to legacy JSON parser and outputs
|
|
|
+/// from both parsers are compared. The legacy comparison can be disabled,
|
|
|
+/// if the feature tested is not supported by the old parser (e.g.
|
|
|
+/// new comment styles)
|
|
|
+///
|
|
|
+/// @param txt text to be compared
|
|
|
+/// @param parser_type bison parser type to be instantiated
|
|
|
+/// @param compare whether to compare the output with legacy JSON parser
|
|
|
+void testParser(const std::string& txt, ParserContext::ParserType parser_type,
|
|
|
+ bool compare = true) {
|
|
|
+ ConstElementPtr test_json;
|
|
|
+
|
|
|
+ ASSERT_NO_THROW({
|
|
|
+ try {
|
|
|
+ ParserContext ctx;
|
|
|
+ test_json = ctx.parseString(txt, parser_type);
|
|
|
+ } catch (const std::exception &e) {
|
|
|
+ cout << "EXCEPTION: " << e.what() << endl;
|
|
|
+ throw;
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ if (!compare) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // Now compare if both representations are the same.
|
|
|
+ ElementPtr reference_json;
|
|
|
+ ASSERT_NO_THROW(reference_json = Element::fromJSON(txt, true));
|
|
|
+ compareJSON(reference_json, test_json);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, mapInMap) {
|
|
|
+ string txt = "{ \"xyzzy\": { \"foo\": 123, \"baz\": 456 } }";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, listInList) {
|
|
|
+ string txt = "[ [ \"Britain\", \"Wales\", \"Scotland\" ], "
|
|
|
+ "[ \"Pomorze\", \"Wielkopolska\", \"Tatry\"] ]";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, nestedMaps) {
|
|
|
+ string txt = "{ \"europe\": { \"UK\": { \"London\": { \"street\": \"221B Baker\" }}}}";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, nestedLists) {
|
|
|
+ string txt = "[ \"half\", [ \"quarter\", [ \"eighth\", [ \"sixteenth\" ]]]]";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, listsInMaps) {
|
|
|
+ string txt = "{ \"constellations\": { \"orion\": [ \"rigel\", \"betelguese\" ], "
|
|
|
+ "\"cygnus\": [ \"deneb\", \"albireo\"] } }";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, mapsInLists) {
|
|
|
+ string txt = "[ { \"body\": \"earth\", \"gravity\": 1.0 },"
|
|
|
+ " { \"body\": \"mars\", \"gravity\": 0.376 } ]";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, types) {
|
|
|
+ string txt = "{ \"string\": \"foo\","
|
|
|
+ "\"integer\": 42,"
|
|
|
+ "\"boolean\": true,"
|
|
|
+ "\"map\": { \"foo\": \"bar\" },"
|
|
|
+ "\"list\": [ 1, 2, 3 ],"
|
|
|
+ "\"null\": null }";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+TEST(ParserTest, keywordJSON) {
|
|
|
+ string txt = "{ \"name\": \"user\","
|
|
|
+ "\"type\": \"password\","
|
|
|
+ "\"user\": \"name\","
|
|
|
+ "\"password\": \"type\" }";
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+// This test checks if full config (with top level and Control-agent objects) can
|
|
|
+// be parsed with syntactic checking (and as pure JSON).
|
|
|
+TEST(ParserTest, keywordAgent) {
|
|
|
+ string txt = "{ \"Control-agent\": {\n"
|
|
|
+ " \"http-host\": \"localhost\",\n"
|
|
|
+ " \"http-port\": 8000,\n"
|
|
|
+ " \"control-sockets\": {"
|
|
|
+ " \"dhcp4-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-v4\""
|
|
|
+ " },"
|
|
|
+ " \"dhcp6-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-v6\""
|
|
|
+ " },"
|
|
|
+ " \"d2-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-d2\""
|
|
|
+ " }"
|
|
|
+ " },"
|
|
|
+ " \"hooks-libraries\": ["
|
|
|
+ " {"
|
|
|
+ " \"library\": \"/opt/local/control-agent-commands.so\","
|
|
|
+ " \"parameters\": {"
|
|
|
+ " \"param1\": \"foo\""
|
|
|
+ " }"
|
|
|
+ " }"
|
|
|
+ " ]"
|
|
|
+ "} }";
|
|
|
+ // This is a full config, so we'll parse it as full config (PARSER_AGENT)
|
|
|
+ testParser(txt, ParserContext::PARSER_AGENT);
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+// This test checks if simplified config (without top level and Control-agent
|
|
|
+// objects) can be parsed with syntactic checking (and as pure JSON).
|
|
|
+TEST(ParserTest, keywordSubAgent) {
|
|
|
+
|
|
|
+ // This is similar to previous test, but note the lack of outer
|
|
|
+ // map and Control-agent.
|
|
|
+ string txt = "{\n"
|
|
|
+ " \"http-host\": \"localhost\",\n"
|
|
|
+ " \"http-port\": 8000,\n"
|
|
|
+ " \"control-sockets\": {"
|
|
|
+ " \"dhcp4-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-v4\""
|
|
|
+ " },"
|
|
|
+ " \"dhcp6-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-v6\""
|
|
|
+ " },"
|
|
|
+ " \"d2-server\": {"
|
|
|
+ " \"socket-type\": \"unix\","
|
|
|
+ " \"socket-name\": \"/path/to/the/unix/socket-d2\""
|
|
|
+ " }"
|
|
|
+ " },"
|
|
|
+ " \"hooks-libraries\": ["
|
|
|
+ " {"
|
|
|
+ " \"library\": \"/opt/local/control-agent-commands.so\","
|
|
|
+ " \"parameters\": {"
|
|
|
+ " \"param1\": \"foo\""
|
|
|
+ " }"
|
|
|
+ " }"
|
|
|
+ " ]"
|
|
|
+ "}";
|
|
|
+
|
|
|
+ // This is only a subset of full config, so we'll parse with PARSER_SUB_AGENT.
|
|
|
+ testParser(txt, ParserContext::PARSER_SUB_AGENT);
|
|
|
+ testParser(txt, ParserContext::PARSER_JSON);
|
|
|
+}
|
|
|
+
|
|
|
+// Tests if bash (#) comments are supported. That's the only comment type that
|
|
|
+// was supported by the old parser.
|
|
|
+TEST(ParserTest, bashComments) {
|
|
|
+ string txt= "{ \"Control-agent\": {"
|
|
|
+ " \"http-host\": \"localhost\","
|
|
|
+ " \"http-port\": 9000,\n"
|
|
|
+ " \"control-sockets\": {\n"
|
|
|
+ " \"d2-server\": {\n"
|
|
|
+ "# this is a comment\n"
|
|
|
+ "\"socket-type\": \"unix\", \n"
|
|
|
+ "# This socket is mine. I can name it whatever\n"
|
|
|
+ "# I like, ok?\n"
|
|
|
+ "\"socket-name\": \"Hector\" \n"
|
|
|
+ "} } } }";
|
|
|
+ testParser(txt, ParserContext::PARSER_AGENT);
|
|
|
+}
|
|
|
+
|
|
|
+// Tests if C++ (//) comments can start anywhere, not just in the first line.
|
|
|
+TEST(ParserTest, cppComments) {
|
|
|
+ string txt= "{ \"Control-agent\": {"
|
|
|
+ " \"http-host\": \"localhost\","
|
|
|
+ " \"http-port\": 9001, // the level is over 9000!\n"
|
|
|
+ " \"control-sockets\": {\n"
|
|
|
+ " // Let's try talking to D2. Sadly, it never talks"
|
|
|
+ " // to us back :( Maybe he doesn't like his name?\n"
|
|
|
+ " \"d2-server\": {"
|
|
|
+ "\"socket-type\": \"unix\", \n"
|
|
|
+ "\"socket-name\": \"Hector\" \n"
|
|
|
+ "} } } }";
|
|
|
+
|
|
|
+ testParser(txt, ParserContext::PARSER_AGENT, false);
|
|
|
+}
|
|
|
+
|
|
|
+// Tests if bash (#) comments can start anywhere, not just in the first line.
|
|
|
+TEST(ParserTest, bashCommentsInline) {
|
|
|
+ string txt= "{ \"Control-agent\": {"
|
|
|
+ " \"http-host\": \"localhost\","
|
|
|
+ " \"http-port\": 9000,\n"
|
|
|
+ " \"control-sockets\": {\n"
|
|
|
+ " \"d2-server\": {"
|
|
|
+ "\"socket-type\": \"unix\", # Maybe Hector is not really a \n"
|
|
|
+ "\"socket-name\": \"Hector\" # Unix process?\n"
|
|
|
+ "# Oh no! He's a windows one and just pretending!\n"
|
|
|
+ "} } } }";
|
|
|
+ testParser(txt, ParserContext::PARSER_AGENT, false);
|
|
|
+}
|
|
|
+
|
|
|
+// Tests if multi-line C style comments are handled correctly.
|
|
|
+TEST(ParserTest, multilineComments) {
|
|
|
+ string txt= "{ \"Control-agent\": {"
|
|
|
+ " \"http-host\": \"localhost\","
|
|
|
+ " \"http-port\": 9000,\n"
|
|
|
+ " \"control-sockets\": {\n"
|
|
|
+ " \"dhcp4-server\": {\n"
|
|
|
+ " \"socket-type\": \"unix\"\n"
|
|
|
+ " }\n"
|
|
|
+ " /* Ok, forget about it. If Hector doesn't want to talk,\n"
|
|
|
+ " we won't talk to him either. We now have quiet days. */\n"
|
|
|
+ " /* \"d2-server\": {"
|
|
|
+ " \"socket-type\": \"unix\",\n"
|
|
|
+ "\"socket-name\": \"Hector\"\n"
|
|
|
+ "}*/ } } }";
|
|
|
+ testParser(txt, ParserContext::PARSER_AGENT, false);
|
|
|
+}
|
|
|
+
|
|
|
+/// @brief Loads specified example config file
|
|
|
+///
|
|
|
+/// This test loads specified example file twice: first, using the legacy
|
|
|
+/// JSON file and then second time using bison parser. Two created Element
|
|
|
+/// trees are then compared. The input is decommented before it is passed
|
|
|
+/// to legacy parser (as legacy support for comments is very limited).
|
|
|
+///
|
|
|
+/// @param fname name of the file to be loaded
|
|
|
+void testFile(const std::string& fname) {
|
|
|
+ ElementPtr reference_json;
|
|
|
+ ConstElementPtr test_json;
|
|
|
+
|
|
|
+ string decommented = decommentJSONfile(fname);
|
|
|
+
|
|
|
+ cout << "Parsing file " << fname << "(" << decommented << ")" << endl;
|
|
|
+
|
|
|
+ EXPECT_NO_THROW(reference_json = Element::fromJSONFile(decommented, true));
|
|
|
+
|
|
|
+ // remove the temporary file
|
|
|
+ EXPECT_NO_THROW(::remove(decommented.c_str()));
|
|
|
+
|
|
|
+ EXPECT_NO_THROW(
|
|
|
+ try {
|
|
|
+ ParserContext ctx;
|
|
|
+ test_json = ctx.parseFile(fname, ParserContext::PARSER_AGENT);
|
|
|
+ } catch (const std::exception &x) {
|
|
|
+ cout << "EXCEPTION: " << x.what() << endl;
|
|
|
+ throw;
|
|
|
+ });
|
|
|
+
|
|
|
+ ASSERT_TRUE(reference_json);
|
|
|
+ ASSERT_TRUE(test_json);
|
|
|
+
|
|
|
+ compareJSON(reference_json, test_json);
|
|
|
+}
|
|
|
+
|
|
|
+// This test loads all available existing files. Each config is loaded
|
|
|
+// twice: first with the existing Element::fromJSONFile() and then
|
|
|
+// the second time with AgentParser. Both JSON trees are then compared.
|
|
|
+// Hopefully the list of example configs will grow over time.
|
|
|
+TEST(ParserTest, file) {
|
|
|
+ vector<string> configs;
|
|
|
+ configs.push_back("simple.json");
|
|
|
+
|
|
|
+ for (int i = 0; i<configs.size(); i++) {
|
|
|
+ testFile(string(CFG_EXAMPLES) + "/" + configs[i]);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/// @brief Tests error conditions in AgentParser
|
|
|
+///
|
|
|
+/// @param txt text to be parsed
|
|
|
+/// @param parser_type type of the parser to be used in the test
|
|
|
+/// @param msg expected content of the exception
|
|
|
+void testError(const std::string& txt,
|
|
|
+ ParserContext::ParserType parser_type,
|
|
|
+ const std::string& msg)
|
|
|
+{
|
|
|
+ try {
|
|
|
+ ParserContext ctx;
|
|
|
+ ConstElementPtr parsed = ctx.parseString(txt, parser_type);
|
|
|
+ FAIL() << "Expected ParseError but nothing was raised (expected: "
|
|
|
+ << msg << ")";
|
|
|
+ }
|
|
|
+ catch (const ParseError& ex) {
|
|
|
+ EXPECT_EQ(msg, ex.what());
|
|
|
+ }
|
|
|
+ catch (...) {
|
|
|
+ FAIL() << "Expected ParseError but something else was raised";
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// Verify that error conditions are handled correctly.
|
|
|
+TEST(ParserTest, errors) {
|
|
|
+ // no input
|
|
|
+ testError("", ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1: syntax error, unexpected end of file");
|
|
|
+ testError(" ", ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.2: syntax error, unexpected end of file");
|
|
|
+ testError("\n", ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file");
|
|
|
+ testError("\t", ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.2: syntax error, unexpected end of file");
|
|
|
+ testError("\r", ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.2: syntax error, unexpected end of file");
|
|
|
+
|
|
|
+ // comments
|
|
|
+ testError("# nothing\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file");
|
|
|
+ testError(" #\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file");
|
|
|
+ testError("// nothing\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file");
|
|
|
+ testError("/* nothing */\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file");
|
|
|
+ testError("/* no\nthing */\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:3.1: syntax error, unexpected end of file");
|
|
|
+ testError("/* no\nthing */\n\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:4.1: syntax error, unexpected end of file");
|
|
|
+ testError("/* nothing\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Comment not closed. (/* in line 1");
|
|
|
+ testError("\n\n\n/* nothing\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Comment not closed. (/* in line 4");
|
|
|
+ testError("{ /* */*/ }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3-8: Invalid character: *");
|
|
|
+ testError("{ /* // *// }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3-11: Invalid character: /");
|
|
|
+ testError("{ /* // */// }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file, "
|
|
|
+ "expecting }");
|
|
|
+
|
|
|
+ // includes
|
|
|
+ testError("<?\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Directive not closed.");
|
|
|
+ testError("<?include\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Directive not closed.");
|
|
|
+ string file = string(CFG_EXAMPLES) + "/" + "simple.json";
|
|
|
+ testError("<?include \"" + file + "\"\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Directive not closed.");
|
|
|
+ testError("<?include \"/foo/bar\" ?>/n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "Can't open include file /foo/bar");
|
|
|
+
|
|
|
+ // JSON keywords
|
|
|
+ testError("{ \"foo\": True }",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.10-13: JSON true reserved keyword is lower case only");
|
|
|
+ testError("{ \"foo\": False }",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.10-14: JSON false reserved keyword is lower case only");
|
|
|
+ testError("{ \"foo\": NULL }",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.10-13: JSON null reserved keyword is lower case only");
|
|
|
+ testError("{ \"foo\": Tru }",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.10: Invalid character: T");
|
|
|
+ testError("{ \"foo\": nul }",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.10: Invalid character: n");
|
|
|
+
|
|
|
+ // numbers
|
|
|
+ testError("123",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-3: syntax error, unexpected integer, "
|
|
|
+ "expecting {");
|
|
|
+ testError("-456",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-4: syntax error, unexpected integer, "
|
|
|
+ "expecting {");
|
|
|
+ testError("-0001",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-5: syntax error, unexpected integer, "
|
|
|
+ "expecting {");
|
|
|
+ testError("1234567890123456789012345678901234567890",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-40: Failed to convert "
|
|
|
+ "1234567890123456789012345678901234567890"
|
|
|
+ " to an integer.");
|
|
|
+ testError("-3.14e+0",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-8: syntax error, unexpected floating point, "
|
|
|
+ "expecting {");
|
|
|
+ testError("1e50000",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-7: Failed to convert 1e50000 "
|
|
|
+ "to a floating point.");
|
|
|
+
|
|
|
+ // strings
|
|
|
+ testError("\"aabb\"",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-6: syntax error, unexpected constant string, "
|
|
|
+ "expecting {");
|
|
|
+ testError("{ \"aabb\"err",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.9: Invalid character: e");
|
|
|
+ testError("{ err\"aabb\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3: Invalid character: e");
|
|
|
+ testError("\"a\n\tb\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-6: Invalid control in \"a\n\tb\"");
|
|
|
+ testError("\"a\\n\\tb\"",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1-8: syntax error, unexpected constant string, "
|
|
|
+ "expecting {");
|
|
|
+ testError("\"a\\x01b\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-8: Bad escape in \"a\\x01b\"");
|
|
|
+ testError("\"a\\u0162\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-9: Unsupported unicode escape in \"a\\u0162\"");
|
|
|
+ testError("\"a\\u062z\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-9: Bad escape in \"a\\u062z\"");
|
|
|
+ testError("\"abc\\\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1-6: Overflow escape in \"abc\\\"");
|
|
|
+
|
|
|
+ // from data_unittest.c
|
|
|
+ testError("\\a",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1: Invalid character: \\");
|
|
|
+ testError("\\",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1: Invalid character: \\");
|
|
|
+ testError("\\\"\\\"",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.1: Invalid character: \\");
|
|
|
+
|
|
|
+ // want a map
|
|
|
+ testError("[]\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1: syntax error, unexpected [, "
|
|
|
+ "expecting {");
|
|
|
+ testError("[]\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.1: syntax error, unexpected [, "
|
|
|
+ "expecting {");
|
|
|
+ testError("{ 123 }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3-5: syntax error, unexpected integer, "
|
|
|
+ "expecting }");
|
|
|
+ testError("{ 123 }\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.3-5: syntax error, unexpected integer");
|
|
|
+ testError("{ \"foo\" }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.9: syntax error, unexpected }, "
|
|
|
+ "expecting :");
|
|
|
+ testError("{ \"foo\" }\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.9: syntax error, unexpected }, expecting :");
|
|
|
+ testError("{ \"foo\":null }\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.3-7: got unexpected keyword "
|
|
|
+ "\"foo\" in map.");
|
|
|
+ testError("{ \"Control-agent\" }\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:1.11: syntax error, unexpected }, "
|
|
|
+ "expecting :");
|
|
|
+ testError("{ \"Control-agent\":[]\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:2.1: syntax error, unexpected end of file, "
|
|
|
+ "expecting \",\" or }");
|
|
|
+ testError("{}{}\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3: syntax error, unexpected {, "
|
|
|
+ "expecting end of file");
|
|
|
+
|
|
|
+ // bad commas
|
|
|
+ testError("{ , }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3: syntax error, unexpected \",\", "
|
|
|
+ "expecting }");
|
|
|
+ testError("{ , \"foo\":true }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.3: syntax error, unexpected \",\", "
|
|
|
+ "expecting }");
|
|
|
+ testError("{ \"foo\":true, }\n",
|
|
|
+ ParserContext::PARSER_JSON,
|
|
|
+ "<string>:1.15: syntax error, unexpected }, "
|
|
|
+ "expecting constant string");
|
|
|
+
|
|
|
+ // bad type
|
|
|
+ testError("{ \"Control-agent\":{\n"
|
|
|
+ " \"http-port\":false }}\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:2.15-19: syntax error, unexpected boolean, "
|
|
|
+ "expecting integer");
|
|
|
+
|
|
|
+ // unknown keyword
|
|
|
+ testError("{ \"Control-agent\":{\n"
|
|
|
+ " \"topping\": \"Mozarella\" }}\n",
|
|
|
+ ParserContext::PARSER_AGENT,
|
|
|
+ "<string>:2.2-10: got unexpected keyword "
|
|
|
+ "\"topping\" in map.");
|
|
|
+}
|
|
|
+
|
|
|
+// Check unicode escapes
|
|
|
+TEST(ParserTest, unicodeEscapes) {
|
|
|
+ ConstElementPtr result;
|
|
|
+ string json;
|
|
|
+
|
|
|
+ // check we can reread output
|
|
|
+ for (char c = -128; c < 127; ++c) {
|
|
|
+ string ins(" ");
|
|
|
+ ins[1] = c;
|
|
|
+ ConstElementPtr e(new StringElement(ins));
|
|
|
+ json = e->str();
|
|
|
+ ASSERT_NO_THROW(
|
|
|
+ try {
|
|
|
+ ParserContext ctx;
|
|
|
+ result = ctx.parseString(json, ParserContext::PARSER_JSON);
|
|
|
+ } catch (const std::exception &x) {
|
|
|
+ cout << "EXCEPTION: " << x.what() << endl;
|
|
|
+ throw;
|
|
|
+ });
|
|
|
+ ASSERT_EQ(Element::string, result->getType());
|
|
|
+ EXPECT_EQ(ins, result->stringValue());
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// This test checks that all representations of a slash is recognized properly.
|
|
|
+TEST(ParserTest, unicodeSlash) {
|
|
|
+ // check the 4 possible encodings of solidus '/'
|
|
|
+ ConstElementPtr result;
|
|
|
+ string json = "\"/\\/\\u002f\\u002F\"";
|
|
|
+ ASSERT_NO_THROW(
|
|
|
+ try {
|
|
|
+ ParserContext ctx;
|
|
|
+ result = ctx.parseString(json, ParserContext::PARSER_JSON);
|
|
|
+ } catch (const std::exception &x) {
|
|
|
+ cout << "EXCEPTION: " << x.what() << endl;
|
|
|
+ throw;
|
|
|
+ });
|
|
|
+ ASSERT_EQ(Element::string, result->getType());
|
|
|
+ EXPECT_EQ("////", result->stringValue());
|
|
|
+}
|
|
|
+
|
|
|
+};
|
|
|
+};
|
|
|
+};
|