1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
#include <test.hpp>
TEST_CASE("read string field using get_string: empty") {
const std::string buffer = load_data("string/data-empty");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
REQUIRE(item.get_string().empty());
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_string: one") {
const std::string buffer = load_data("string/data-one");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
REQUIRE(item.get_string() == "x");
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_string: string") {
const std::string buffer = load_data("string/data-string");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
REQUIRE(item.get_string() == "foobar");
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_string: end of buffer") {
const std::string buffer = load_data("string/data-string");
for (std::string::size_type i = 1; i < buffer.size(); ++i) {
protozero::pbf_reader item{buffer.data(), i};
REQUIRE(item.next());
REQUIRE_THROWS_AS(item.get_string(), const protozero::end_of_buffer_exception&);
}
}
TEST_CASE("read string field using get_view: empty") {
const std::string buffer = load_data("string/data-empty");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
const auto v = item.get_view();
REQUIRE(v.empty());
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_view: one") {
const std::string buffer = load_data("string/data-one");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
const auto v = item.get_view();
REQUIRE(*v.data() == 'x');
REQUIRE(v.size() == 1);
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_view: string") {
const std::string buffer = load_data("string/data-string");
protozero::pbf_reader item{buffer};
REQUIRE(item.next());
REQUIRE(std::string(item.get_view()) == "foobar");
REQUIRE_FALSE(item.next());
}
TEST_CASE("read string field using get_view: end of buffer") {
const std::string buffer = load_data("string/data-string");
for (std::string::size_type i = 1; i < buffer.size(); ++i) {
protozero::pbf_reader item{buffer.data(), i};
REQUIRE(item.next());
REQUIRE_THROWS_AS(item.get_view(), const protozero::end_of_buffer_exception&);
}
}
TEST_CASE("write string field") {
std::string buffer_test;
protozero::pbf_writer pbf_test{buffer_test};
SECTION("empty") {
pbf_test.add_string(1, "");
REQUIRE(buffer_test == load_data("string/data-empty"));
}
SECTION("one") {
pbf_test.add_string(1, "x");
REQUIRE(buffer_test == load_data("string/data-one"));
}
SECTION("string") {
pbf_test.add_string(1, "foobar");
REQUIRE(buffer_test == load_data("string/data-string"));
}
}
|