summaryrefslogtreecommitdiff
path: root/tomlplusplus/tests/conformance_iarna_invalid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tomlplusplus/tests/conformance_iarna_invalid.cpp')
-rw-r--r--tomlplusplus/tests/conformance_iarna_invalid.cpp451
1 files changed, 451 insertions, 0 deletions
diff --git a/tomlplusplus/tests/conformance_iarna_invalid.cpp b/tomlplusplus/tests/conformance_iarna_invalid.cpp
new file mode 100644
index 0000000000..28c32b3097
--- /dev/null
+++ b/tomlplusplus/tests/conformance_iarna_invalid.cpp
@@ -0,0 +1,451 @@
+// This file is a part of toml++ and is subject to the the terms of the MIT license.
+// Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
+// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
+// SPDX-License-Identifier: MIT
+//-----
+// this file was generated by generate_conformance_tests.py - do not modify it directly
+
+#include "tests.hpp"
+
+namespace
+{
+ static constexpr auto array_of_tables_1 = "# INVALID TOML DOC\r\n"
+ "fruit = []\r\n"
+ "\r\n"
+ "[[fruit]] # Not allowed"sv;
+ static constexpr auto array_of_tables_2 = "# INVALID TOML DOC\r\n"
+ "[[fruit]]\r\n"
+ " name = \"apple\"\r\n"
+ "\r\n"
+ " [[fruit.variety]]\r\n"
+ " name = \"red delicious\"\r\n"
+ "\r\n"
+ " # This table conflicts with the previous table\r\n"
+ " [fruit.variety]\r\n"
+ " name = \"granny smith\""sv;
+
+ static constexpr auto bare_key_1 = "bare!key = 123"sv;
+ static constexpr auto bare_key_2 = "barekey\r\n"
+ " = 123"sv;
+ static constexpr auto bare_key_3 = R"(barekey =)"sv;
+
+ static constexpr auto comment_control_1 = "a = \"null\" # \x00"sv;
+ static constexpr auto comment_control_2 = "a = \"ctrl-P\" # \x10"sv;
+ static constexpr auto comment_control_3 = "a = \"ctrl-_\" # \x1F"sv;
+ static constexpr auto comment_control_4 = "a = \"0x7f\" # \x7F"sv;
+
+ static constexpr auto inline_table_imutable_1 = "[product]\r\n"
+ "type = { name = \"Nail\" }\r\n"
+ "type.edible = false # INVALID"sv;
+ static constexpr auto inline_table_imutable_2 = "[product]\r\n"
+ "type.name = \"Nail\"\r\n"
+ "type = { edible = false } # INVALID"sv;
+
+#if !TOML_LANG_UNRELEASED
+
+ static constexpr auto inline_table_trailing_comma = "abc = { abc = 123, }"sv;
+
+#endif // !TOML_LANG_UNRELEASED
+
+ static constexpr auto int_0_padded = "int = 0123"sv;
+ static constexpr auto int_signed_bin = "bin = +0b10"sv;
+ static constexpr auto int_signed_hex = "hex = +0xab"sv;
+ static constexpr auto int_signed_oct = "oct = +0o23"sv;
+
+ static constexpr auto key_value_pair_1 = "key = # INVALID"sv;
+ static constexpr auto key_value_pair_2 = "first = \"Tom\" last = \"Preston-Werner\" # INVALID"sv;
+
+ static constexpr auto multiple_dot_key = "# THE FOLLOWING IS INVALID\r\n"
+ "\r\n"
+ "# This defines the value of fruit.apple to be an integer.\r\n"
+ "fruit.apple = 1\r\n"
+ "\r\n"
+ "# But then this treats fruit.apple like it's a table.\r\n"
+ "# You can't turn an integer into a table.\r\n"
+ "fruit.apple.smooth = true"sv;
+ static constexpr auto multiple_key = "# DO NOT DO THIS\r\n"
+ "name = \"Tom\"\r\n"
+ "name = \"Pradyun\""sv;
+
+ static constexpr auto no_key_name = "= \"no key name\" # INVALID"sv;
+
+ static constexpr auto string_basic_control_1 = "a = \"null\x00\""sv;
+ static constexpr auto string_basic_control_2 = "a = \"ctrl-P\x10\""sv;
+ static constexpr auto string_basic_control_3 = "a = \"ctrl-_\x1F\""sv;
+ static constexpr auto string_basic_control_4 = "a = \"0x7f\x7F\""sv;
+ static constexpr auto string_basic_multiline_control_1 = "a = \"\"\"null\x00\"\"\""sv;
+ static constexpr auto string_basic_multiline_control_2 = "a = \"\"\"null\x10\"\"\""sv;
+ static constexpr auto string_basic_multiline_control_3 = "a = \"\"\"null\x1F\"\"\""sv;
+ static constexpr auto string_basic_multiline_control_4 = "a = \"\"\"null\x7F\"\"\""sv;
+ static constexpr auto string_basic_multiline_invalid_backslash = "a = \"\"\"\r\n"
+ " foo \\ \\n\r\n"
+ " bar\"\"\""sv;
+ static constexpr auto string_basic_multiline_out_of_range_unicode_escape_1 = "a = \"\"\"\\UFFFFFFFF\"\"\""sv;
+ static constexpr auto string_basic_multiline_out_of_range_unicode_escape_2 = "a = \"\"\"\\U00D80000\"\"\""sv;
+ static constexpr auto string_basic_multiline_quotes =
+ "str5 = \"\"\"Here are three quotation marks: \"\"\".\"\"\""sv;
+ static constexpr auto string_basic_multiline_unknown_escape = "a = \"\"\"\\@\"\"\""sv;
+ static constexpr auto string_basic_out_of_range_unicode_escape_1 = "a = \"\\UFFFFFFFF\""sv;
+ static constexpr auto string_basic_out_of_range_unicode_escape_2 = "a = \"\\U00D80000\""sv;
+ static constexpr auto string_basic_unknown_escape = "a = \"\\@\""sv;
+ static constexpr auto string_literal_control_1 = "a = 'null\x00'"sv;
+ static constexpr auto string_literal_control_2 = "a = 'null\x10'"sv;
+ static constexpr auto string_literal_control_3 = "a = 'null\x1F'"sv;
+ static constexpr auto string_literal_control_4 = "a = 'null\x7F'"sv;
+ static constexpr auto string_literal_multiline_control_1 = "a = '''null\x00'''"sv;
+ static constexpr auto string_literal_multiline_control_2 = "a = '''null\x10'''"sv;
+ static constexpr auto string_literal_multiline_control_3 = "a = '''null\x1F'''"sv;
+ static constexpr auto string_literal_multiline_control_4 = "a = '''null\x7F'''"sv;
+ static constexpr auto string_literal_multiline_quotes =
+ "apos15 = '''Here are fifteen apostrophes: '''''''''''''''''' # INVALID"sv;
+
+ static constexpr auto table_1 = "# DO NOT DO THIS\r\n"
+ "\r\n"
+ "[fruit]\r\n"
+ "apple = \"red\"\r\n"
+ "\r\n"
+ "[fruit]\r\n"
+ "orange = \"orange\""sv;
+ static constexpr auto table_2 = "# DO NOT DO THIS EITHER\r\n"
+ "\r\n"
+ "[fruit]\r\n"
+ "apple = \"red\"\r\n"
+ "\r\n"
+ "[fruit.apple]\r\n"
+ "texture = \"smooth\""sv;
+ static constexpr auto table_3 = "[fruit]\r\n"
+ "apple.color = \"red\"\r\n"
+ "apple.taste.sweet = true\r\n"
+ "\r\n"
+ "[fruit.apple] # INVALID"sv;
+ static constexpr auto table_4 = "[fruit]\r\n"
+ "apple.color = \"red\"\r\n"
+ "apple.taste.sweet = true\r\n"
+ "\r\n"
+ "[fruit.apple.taste] # INVALID"sv;
+ static constexpr auto table_invalid_1 =
+ "[fruit.physical] # subtable, but to which parent element should it belong?\r\n"
+ " color = \"red\"\r\n"
+ " shape = \"round\"\r\n"
+ "\r\n"
+ "[[fruit]] # parser must throw an error upon discovering that \"fruit\" is\r\n"
+ " # an array rather than a table\r\n"
+ " name = \"apple\""sv;
+ static constexpr auto table_invalid_2 = "# INVALID TOML DOC\r\n"
+ "fruit = []\r\n"
+ "\r\n"
+ "[[fruit]] # Not allowed"sv;
+ static constexpr auto table_invalid_3 = "# INVALID TOML DOC\r\n"
+ "[[fruit]]\r\n"
+ " name = \"apple\"\r\n"
+ "\r\n"
+ " [[fruit.variety]]\r\n"
+ " name = \"red delicious\"\r\n"
+ "\r\n"
+ " # INVALID: This table conflicts with the previous array of tables\r\n"
+ " [fruit.variety]\r\n"
+ " name = \"granny smith\"\r\n"
+ "\r\n"
+ " [fruit.physical]\r\n"
+ " color = \"red\"\r\n"
+ " shape = \"round\""sv;
+ static constexpr auto table_invalid_4 = "# INVALID TOML DOC\r\n"
+ "[[fruit]]\r\n"
+ " name = \"apple\"\r\n"
+ "\r\n"
+ " [[fruit.variety]]\r\n"
+ " name = \"red delicious\"\r\n"
+ "\r\n"
+ " [fruit.physical]\r\n"
+ " color = \"red\"\r\n"
+ " shape = \"round\"\r\n"
+ "\r\n"
+ " # INVALID: This array of tables conflicts with the previous table\r\n"
+ " [[fruit.physical]]\r\n"
+ " color = \"green\""sv;
+}
+
+TEST_CASE("conformance - iarna/invalid")
+{
+ SECTION("array-of-tables-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, array_of_tables_1); // array-of-tables-1
+ }
+
+ SECTION("array-of-tables-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, array_of_tables_2); // array-of-tables-2
+ }
+
+ SECTION("bare-key-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, bare_key_1); // bare-key-1
+ }
+
+ SECTION("bare-key-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, bare_key_2); // bare-key-2
+ }
+
+ SECTION("bare-key-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, bare_key_3); // bare-key-3
+ }
+
+ SECTION("comment-control-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, comment_control_1); // comment-control-1
+ }
+
+ SECTION("comment-control-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, comment_control_2); // comment-control-2
+ }
+
+ SECTION("comment-control-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, comment_control_3); // comment-control-3
+ }
+
+ SECTION("comment-control-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, comment_control_4); // comment-control-4
+ }
+
+ SECTION("inline-table-imutable-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, inline_table_imutable_1); // inline-table-imutable-1
+ }
+
+ SECTION("inline-table-imutable-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, inline_table_imutable_2); // inline-table-imutable-2
+ }
+
+#if !TOML_LANG_UNRELEASED
+
+ SECTION("inline-table-trailing-comma")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, inline_table_trailing_comma); // inline-table-trailing-comma
+ }
+
+#endif // !TOML_LANG_UNRELEASED
+
+ SECTION("int-0-padded")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, int_0_padded); // int-0-padded
+ }
+
+ SECTION("int-signed-bin")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, int_signed_bin); // int-signed-bin
+ }
+
+ SECTION("int-signed-hex")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, int_signed_hex); // int-signed-hex
+ }
+
+ SECTION("int-signed-oct")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, int_signed_oct); // int-signed-oct
+ }
+
+ SECTION("key-value-pair-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, key_value_pair_1); // key-value-pair-1
+ }
+
+ SECTION("key-value-pair-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, key_value_pair_2); // key-value-pair-2
+ }
+
+ SECTION("multiple-dot-key")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, multiple_dot_key); // multiple-dot-key
+ }
+
+ SECTION("multiple-key")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, multiple_key); // multiple-key
+ }
+
+ SECTION("no-key-name")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, no_key_name); // no-key-name
+ }
+
+ SECTION("string-basic-control-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_control_1); // string-basic-control-1
+ }
+
+ SECTION("string-basic-control-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_control_2); // string-basic-control-2
+ }
+
+ SECTION("string-basic-control-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_control_3); // string-basic-control-3
+ }
+
+ SECTION("string-basic-control-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_control_4); // string-basic-control-4
+ }
+
+ SECTION("string-basic-multiline-control-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_multiline_control_1); // string-basic-multiline-control-1
+ }
+
+ SECTION("string-basic-multiline-control-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_multiline_control_2); // string-basic-multiline-control-2
+ }
+
+ SECTION("string-basic-multiline-control-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_multiline_control_3); // string-basic-multiline-control-3
+ }
+
+ SECTION("string-basic-multiline-control-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_multiline_control_4); // string-basic-multiline-control-4
+ }
+
+ SECTION("string-basic-multiline-invalid-backslash")
+ {
+ parsing_should_fail(FILE_LINE_ARGS,
+ string_basic_multiline_invalid_backslash); // string-basic-multiline-invalid-backslash
+ }
+
+ SECTION("string-basic-multiline-out-of-range-unicode-escape-1")
+ {
+ parsing_should_fail(
+ FILE_LINE_ARGS,
+ string_basic_multiline_out_of_range_unicode_escape_1); // string-basic-multiline-out-of-range-unicode-escape-1
+ }
+
+ SECTION("string-basic-multiline-out-of-range-unicode-escape-2")
+ {
+ parsing_should_fail(
+ FILE_LINE_ARGS,
+ string_basic_multiline_out_of_range_unicode_escape_2); // string-basic-multiline-out-of-range-unicode-escape-2
+ }
+
+ SECTION("string-basic-multiline-quotes")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_multiline_quotes); // string-basic-multiline-quotes
+ }
+
+ SECTION("string-basic-multiline-unknown-escape")
+ {
+ parsing_should_fail(FILE_LINE_ARGS,
+ string_basic_multiline_unknown_escape); // string-basic-multiline-unknown-escape
+ }
+
+ SECTION("string-basic-out-of-range-unicode-escape-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS,
+ string_basic_out_of_range_unicode_escape_1); // string-basic-out-of-range-unicode-escape-1
+ }
+
+ SECTION("string-basic-out-of-range-unicode-escape-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS,
+ string_basic_out_of_range_unicode_escape_2); // string-basic-out-of-range-unicode-escape-2
+ }
+
+ SECTION("string-basic-unknown-escape")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_basic_unknown_escape); // string-basic-unknown-escape
+ }
+
+ SECTION("string-literal-control-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_control_1); // string-literal-control-1
+ }
+
+ SECTION("string-literal-control-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_control_2); // string-literal-control-2
+ }
+
+ SECTION("string-literal-control-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_control_3); // string-literal-control-3
+ }
+
+ SECTION("string-literal-control-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_control_4); // string-literal-control-4
+ }
+
+ SECTION("string-literal-multiline-control-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_multiline_control_1); // string-literal-multiline-control-1
+ }
+
+ SECTION("string-literal-multiline-control-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_multiline_control_2); // string-literal-multiline-control-2
+ }
+
+ SECTION("string-literal-multiline-control-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_multiline_control_3); // string-literal-multiline-control-3
+ }
+
+ SECTION("string-literal-multiline-control-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_multiline_control_4); // string-literal-multiline-control-4
+ }
+
+ SECTION("string-literal-multiline-quotes")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, string_literal_multiline_quotes); // string-literal-multiline-quotes
+ }
+
+ SECTION("table-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_1); // table-1
+ }
+
+ SECTION("table-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_2); // table-2
+ }
+
+ SECTION("table-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_3); // table-3
+ }
+
+ SECTION("table-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_4); // table-4
+ }
+
+ SECTION("table-invalid-1")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_invalid_1); // table-invalid-1
+ }
+
+ SECTION("table-invalid-2")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_invalid_2); // table-invalid-2
+ }
+
+ SECTION("table-invalid-3")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_invalid_3); // table-invalid-3
+ }
+
+ SECTION("table-invalid-4")
+ {
+ parsing_should_fail(FILE_LINE_ARGS, table_invalid_4); // table-invalid-4
+ }
+}