File: writer_test_cases.cpp

package info (click to toggle)
protozero 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,548 kB
  • sloc: cpp: 20,364; sh: 18; makefile: 14
file content (30 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (4)
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

#include <buffer.hpp>

#include "t/message/message_testcase.pb.h"

TEMPLATE_TEST_CASE("write message field and check with libprotobuf", "",
    buffer_test_string, buffer_test_vector, buffer_test_array, buffer_test_external) {

    TestType buffer;
    typename TestType::writer_type pw{buffer.buffer()};

    SECTION("string") {
        std::string buffer_submessage;
        protozero::pbf_writer pbf_submessage{buffer_submessage};
        pbf_submessage.add_string(1, "foobar");

        pw.add_message(1, buffer_submessage);
    }

    SECTION("string with subwriter") {
        typename TestType::writer_type pbf_submessage{pw, 1};
        pbf_submessage.add_string(1, "foobar");
    }

    TestMessage::Test msg;
    msg.ParseFromArray(buffer.data(), buffer.size());
    REQUIRE(msg.submessage().s() == "foobar");

}