Merge pull request #149 from zeux/test-path

Improve code coverage
This commit is contained in:
Arseny Kapoulkine 2017-06-15 21:17:26 -07:00 committed by GitHub
commit 0698810abb
4 changed files with 44 additions and 25 deletions

View File

@ -14,4 +14,6 @@ script:
- make test cxxstd=c++11 defines=$DEFINES config=release -j2 - make test cxxstd=c++11 defines=$DEFINES config=release -j2
- make test cxxstd=c++98 defines=$DEFINES config=debug -j2 - make test cxxstd=c++98 defines=$DEFINES config=debug -j2
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov after_success:
- sed -e "s/#####\(.*\)\(\/\/ unreachable.*\)/ 1\1\2/" -i pugixml.cpp.gcov
- bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov

View File

@ -353,7 +353,7 @@ PUGI__NS_BEGIN
bucket = (bucket + probe + 1) & hashmod; bucket = (bucket + probe + 1) & hashmod;
} }
assert(false && "Hash table is full"); assert(false && "Hash table is full"); // unreachable
return 0; return 0;
} }
@ -2144,7 +2144,7 @@ PUGI__NS_BEGIN
if (encoding == encoding_latin1) if (encoding == encoding_latin1)
return convert_buffer_generic(out_buffer, out_length, contents, size, latin1_decoder()); return convert_buffer_generic(out_buffer, out_length, contents, size, latin1_decoder());
assert(false && "Invalid encoding"); assert(false && "Invalid encoding"); // unreachable
return false; return false;
} }
#else #else
@ -2249,7 +2249,7 @@ PUGI__NS_BEGIN
if (encoding == encoding_latin1) if (encoding == encoding_latin1)
return convert_buffer_latin1(out_buffer, out_length, contents, size, is_mutable); return convert_buffer_latin1(out_buffer, out_length, contents, size, is_mutable);
assert(false && "Invalid encoding"); assert(false && "Invalid encoding"); // unreachable
return false; return false;
} }
#endif #endif
@ -2696,7 +2696,7 @@ PUGI__NS_BEGIN
case 5: return strconv_pcdata_impl<opt_true, opt_false, opt_true>::parse; case 5: return strconv_pcdata_impl<opt_true, opt_false, opt_true>::parse;
case 6: return strconv_pcdata_impl<opt_true, opt_true, opt_false>::parse; case 6: return strconv_pcdata_impl<opt_true, opt_true, opt_false>::parse;
case 7: return strconv_pcdata_impl<opt_true, opt_true, opt_true>::parse; case 7: return strconv_pcdata_impl<opt_true, opt_true, opt_true>::parse;
default: assert(false); return 0; // should not get here default: assert(false); return 0; // unreachable
} }
} }
@ -2873,7 +2873,7 @@ PUGI__NS_BEGIN
case 13: return strconv_attribute_impl<opt_true>::parse_wnorm; case 13: return strconv_attribute_impl<opt_true>::parse_wnorm;
case 14: return strconv_attribute_impl<opt_false>::parse_wnorm; case 14: return strconv_attribute_impl<opt_false>::parse_wnorm;
case 15: return strconv_attribute_impl<opt_true>::parse_wnorm; case 15: return strconv_attribute_impl<opt_true>::parse_wnorm;
default: assert(false); return 0; // should not get here default: assert(false); return 0; // unreachable
} }
} }
@ -3622,7 +3622,7 @@ PUGI__NS_BEGIN
if (encoding == encoding_latin1) if (encoding == encoding_latin1)
return convert_buffer_output_generic(r_u8, data, length, wchar_decoder(), latin1_writer()); return convert_buffer_output_generic(r_u8, data, length, wchar_decoder(), latin1_writer());
assert(false && "Invalid encoding"); assert(false && "Invalid encoding"); // unreachable
return 0; return 0;
} }
#else #else
@ -3661,7 +3661,7 @@ PUGI__NS_BEGIN
if (encoding == encoding_latin1) if (encoding == encoding_latin1)
return convert_buffer_output_generic(r_u8, data, length, utf8_decoder(), latin1_writer()); return convert_buffer_output_generic(r_u8, data, length, utf8_decoder(), latin1_writer());
assert(false && "Invalid encoding"); assert(false && "Invalid encoding"); // unreachable
return 0; return 0;
} }
#endif #endif
@ -4188,7 +4188,7 @@ PUGI__NS_BEGIN
break; break;
default: default:
assert(false && "Invalid node type"); assert(false && "Invalid node type"); // unreachable
} }
} }
@ -6290,7 +6290,7 @@ namespace pugi
return _root->value && (_root->header & impl::xml_memory_page_value_allocated_or_shared_mask) == 0 ? _root->value - doc.buffer : -1; return _root->value && (_root->header & impl::xml_memory_page_value_allocated_or_shared_mask) == 0 ? _root->value - doc.buffer : -1;
default: default:
assert(false && "Invalid node type"); assert(false && "Invalid node type"); // unreachable
return -1; return -1;
} }
} }
@ -8498,7 +8498,7 @@ PUGI__NS_BEGIN
break; break;
default: default:
assert(false && "Invalid variable type"); assert(false && "Invalid variable type"); // unreachable
} }
} }
@ -8519,7 +8519,7 @@ PUGI__NS_BEGIN
return lhs->set(static_cast<const xpath_variable_boolean*>(rhs)->value); return lhs->set(static_cast<const xpath_variable_boolean*>(rhs)->value);
default: default:
assert(false && "Invalid variable type"); assert(false && "Invalid variable type"); // unreachable
return false; return false;
} }
} }
@ -8606,7 +8606,7 @@ PUGI__NS_BEGIN
return *min_element(begin, end, document_order_comparator()); return *min_element(begin, end, document_order_comparator());
default: default:
assert(false && "Invalid node set type"); assert(false && "Invalid node set type"); // unreachable
return xpath_node(); return xpath_node();
} }
} }
@ -9336,7 +9336,7 @@ PUGI__NS_BEGIN
} }
} }
assert(false && "Wrong types"); assert(false && "Wrong types"); // unreachable
return false; return false;
} }
@ -9411,7 +9411,7 @@ PUGI__NS_BEGIN
} }
else else
{ {
assert(false && "Wrong types"); assert(false && "Wrong types"); // unreachable
return false; return false;
} }
} }
@ -9629,7 +9629,7 @@ PUGI__NS_BEGIN
break; break;
default: default:
assert(false && "Unknown axis"); assert(false && "Unknown axis"); // unreachable
} }
return false; return false;
@ -9824,7 +9824,7 @@ PUGI__NS_BEGIN
} }
default: default:
assert(false && "Unimplemented axis"); assert(false && "Unimplemented axis"); // unreachable
} }
} }
@ -9905,7 +9905,7 @@ PUGI__NS_BEGIN
} }
default: default:
assert(false && "Unimplemented axis"); assert(false && "Unimplemented axis"); // unreachable
} }
} }
@ -10146,7 +10146,7 @@ PUGI__NS_BEGIN
} }
default: default:
assert(false && "Wrong expression for return type boolean"); assert(false && "Wrong expression for return type boolean"); // unreachable
return false; return false;
} }
} }
@ -10281,7 +10281,7 @@ PUGI__NS_BEGIN
} }
default: default:
assert(false && "Wrong expression for return type number"); assert(false && "Wrong expression for return type number"); // unreachable
return 0; return 0;
} }
@ -10571,7 +10571,7 @@ PUGI__NS_BEGIN
} }
default: default:
assert(false && "Wrong expression for return type string"); assert(false && "Wrong expression for return type string"); // unreachable
return xpath_string(); return xpath_string();
} }
} }
@ -10662,7 +10662,7 @@ PUGI__NS_BEGIN
return step_do(c, stack, eval, axis_to_type<axis_self>()); return step_do(c, stack, eval, axis_to_type<axis_self>());
default: default:
assert(false && "Unknown axis"); assert(false && "Unknown axis"); // unreachable
return xpath_node_set_raw(); return xpath_node_set_raw();
} }
} }
@ -10700,7 +10700,7 @@ PUGI__NS_BEGIN
// fallthrough // fallthrough
default: default:
assert(false && "Wrong expression for return type node set"); assert(false && "Wrong expression for return type node set"); // unreachable
return xpath_node_set_raw(); return xpath_node_set_raw();
} }
} }
@ -12042,7 +12042,7 @@ namespace pugi
return static_cast<const impl::xpath_variable_boolean*>(this)->name; return static_cast<const impl::xpath_variable_boolean*>(this)->name;
default: default:
assert(false && "Invalid variable type"); assert(false && "Invalid variable type"); // unreachable
return 0; return 0;
} }
} }

View File

@ -41,7 +41,7 @@ static void* custom_allocate(size_t size)
else else
{ {
void* ptr = memory_allocate(size); void* ptr = memory_allocate(size);
assert(ptr); if (!ptr) return 0;
g_memory_total_size += memory_size(ptr); g_memory_total_size += memory_size(ptr);
g_memory_total_count++; g_memory_total_count++;

View File

@ -383,6 +383,23 @@ TEST(document_load_file_wide_out_of_memory)
CHECK(result.status == status_out_of_memory || result.status == status_file_not_found); CHECK(result.status == status_out_of_memory || result.status == status_file_not_found);
} }
#if defined(__linux__) || defined(__APPLE__)
TEST(document_load_file_special_folder)
{
xml_document doc;
xml_parse_result result = doc.load_file(".");
// status_out_of_memory is somewhat counter-intuitive but on Linux ftell returns LONG_MAX for directories
CHECK(result.status == status_file_not_found || result.status == status_io_error || result.status == status_out_of_memory);
}
TEST(document_load_file_special_device)
{
xml_document doc;
xml_parse_result result = doc.load_file("/dev/tty");
CHECK(result.status == status_file_not_found || result.status == status_io_error);
}
#endif
TEST_XML(document_save, "<node/>") TEST_XML(document_save, "<node/>")
{ {
xml_writer_string writer; xml_writer_string writer;