summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-16 00:29:14 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-16 00:29:14 -0700
commitbd23216420aa9b31fae6891ac267cd0ce1dddbb8 (patch)
treeef63749a081d6b2682a95c04160949fb6bd2071f
parenta3664ea971ee2fe0f2ee33a08e451ce4d6cbd2b0 (diff)
tests: Improve XPath test coverage
Add more memory allocation failure tests.
-rw-r--r--tests/test_xpath_variables.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/test_xpath_variables.cpp b/tests/test_xpath_variables.cpp
index c64e0e6..9349004 100644
--- a/tests/test_xpath_variables.cpp
+++ b/tests/test_xpath_variables.cpp
@@ -302,7 +302,23 @@ TEST_XML(xpath_variables_select, "<node attr='1'/><node attr='2'/>")
TEST(xpath_variables_empty_name)
{
xpath_variable_set set;
+ CHECK(!set.add(STR(""), xpath_type_node_set));
CHECK(!set.add(STR(""), xpath_type_number));
+ CHECK(!set.add(STR(""), xpath_type_string));
+ CHECK(!set.add(STR(""), xpath_type_boolean));
+}
+
+TEST(xpath_variables_long_name_out_of_memory_add)
+{
+ std::basic_string<char_t> name(1000, 'a');
+
+ test_runner::_memory_fail_threshold = 1000;
+
+ xpath_variable_set set;
+ CHECK_ALLOC_FAIL(CHECK(!set.add(name.c_str(), xpath_type_node_set)));
+ CHECK_ALLOC_FAIL(CHECK(!set.add(name.c_str(), xpath_type_number)));
+ CHECK_ALLOC_FAIL(CHECK(!set.add(name.c_str(), xpath_type_string)));
+ CHECK_ALLOC_FAIL(CHECK(!set.add(name.c_str(), xpath_type_boolean)));
}
TEST_XML(xpath_variables_inside_filter, "<node key='1' value='2'/><node key='2' value='1'/><node key='1' value='1'/>")
@@ -591,4 +607,19 @@ TEST(xpath_variables_copy_big_out_of_memory)
CHECK(!copy.get(name));
}
}
+
+TEST(xpath_variables_copy_big_value_out_of_memory)
+{
+ xpath_variable_set set;
+
+ std::basic_string<char_t> var(10000, 'a');
+ set.set(STR("x"), var.c_str());
+
+ test_runner::_memory_fail_threshold = 15000;
+
+ xpath_variable_set copy;
+ CHECK_ALLOC_FAIL(copy = set);
+
+ CHECK(!copy.get(STR("x")));
+}
#endif