DCCL v5
Loading...
Searching...
No Matches
test.cpp
1// Copyright 2011-2023:
2// GobySoft, LLC (2013-)
3// Massachusetts Institute of Technology (2007-2014)
4// Community contributors (see AUTHORS file)
5// File authors:
6// Toby Schneider <toby@gobysoft.org>
7//
8//
9// This file is part of the Dynamic Compact Control Language Library
10// ("DCCL").
11//
12// DCCL is free software: you can redistribute it and/or modify
13// it under the terms of the GNU Lesser General Public License as published by
14// the Free Software Foundation, either version 2.1 of the License, or
15// (at your option) any later version.
16//
17// DCCL is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU Lesser General Public License for more details.
21//
22// You should have received a copy of the GNU Lesser General Public License
23// along with DCCL. If not, see <http://www.gnu.org/licenses/>.
24// tests all protobuf types with _default codecs, repeat and non repeat
25
26#include <fstream>
27
28
29#include "../../binary.h"
30#include "../../codec.h"
31#include "test.pb.h"
32using namespace dccl::test;
33
34void decode_check(const std::string& encoded);
35dccl::Codec codec;
36TestMsg msg_in;
37
38int main(int argc, char* argv[])
39{
40 bool verbose = false;
41 for (int i = 1; i < argc; ++i)
42 {
43 if (argv[i] && argv[i][0] == '-' && argv[i][1] == 'v' && argv[i][2] == '\0')
44 verbose = true;
45 }
46
47 dccl::dlog.connect(verbose ? dccl::logger::ALL : dccl::logger::WARN_PLUS, &std::cerr);
48
49 int i = 0;
50 msg_in.set_double_default_optional(++i + 0.1);
51 msg_in.set_float_default_optional(++i + 0.2);
52
53 msg_in.set_int32_default_optional(++i);
54 msg_in.set_int64_default_optional(-++i);
55 msg_in.set_uint32_default_optional(++i);
56 msg_in.set_uint64_default_optional(++i);
57 msg_in.set_sint32_default_optional(-++i);
58 msg_in.set_sint64_default_optional(++i);
59 msg_in.set_fixed32_default_optional(++i);
60 msg_in.set_fixed64_default_optional(++i);
61 msg_in.set_sfixed32_default_optional(++i);
62 msg_in.set_sfixed64_default_optional(-++i);
63
64 msg_in.set_bool_default_optional(true);
65
66 msg_in.set_string_default_optional("abc123");
67 msg_in.set_bytes_default_optional(dccl::hex_decode("00112233aabbcc1234"));
68
69 msg_in.set_enum_default_optional(ENUM_C);
70 msg_in.mutable_msg_default_optional()->set_val(++i + 0.3);
71 msg_in.mutable_msg_default_optional()->mutable_msg()->set_val(++i);
72
73 msg_in.set_double_default_required(++i + 0.1);
74 msg_in.set_float_default_required(++i + 0.2);
75
76 msg_in.set_int32_default_required(++i);
77 msg_in.set_int64_default_required(-++i);
78 msg_in.set_uint32_default_required(++i);
79 msg_in.set_uint64_default_required(++i);
80 msg_in.set_sint32_default_required(-++i);
81 msg_in.set_sint64_default_required(++i);
82 msg_in.set_fixed32_default_required(++i);
83 msg_in.set_fixed64_default_required(++i);
84 msg_in.set_sfixed32_default_required(++i);
85 msg_in.set_sfixed64_default_required(-++i);
86
87 msg_in.set_bool_default_required(true);
88
89 msg_in.set_string_default_required("abc123");
90 msg_in.set_bytes_default_required(dccl::hex_decode("00112233aabbcc1234"));
91
92 msg_in.set_enum_default_required(ENUM_C);
93 msg_in.mutable_msg_default_required()->set_val(++i + 0.3);
94 msg_in.mutable_msg_default_required()->mutable_msg()->set_val(++i);
95
96 for (int j = 0; j < 2; ++j)
97 {
98 msg_in.add_double_default_repeat(++i + 0.1);
99 msg_in.add_float_default_repeat(++i + 0.2);
100
101 msg_in.add_int32_default_repeat(++i);
102 msg_in.add_int64_default_repeat(-++i);
103 msg_in.add_uint32_default_repeat(++i);
104 msg_in.add_uint64_default_repeat(++i);
105 msg_in.add_sint32_default_repeat(-++i);
106 msg_in.add_sint64_default_repeat(++i);
107 msg_in.add_fixed32_default_repeat(++i);
108 msg_in.add_fixed64_default_repeat(++i);
109 msg_in.add_sfixed32_default_repeat(++i);
110 msg_in.add_sfixed64_default_repeat(-++i);
111
112 msg_in.add_bool_default_repeat(true);
113
114 msg_in.add_string_default_repeat("abc123");
115
116 if (j)
117 msg_in.add_bytes_default_repeat(dccl::hex_decode("00aabbcc"));
118 else
119 msg_in.add_bytes_default_repeat(dccl::hex_decode("ffeedd12"));
120
121 msg_in.add_enum_default_repeat(static_cast<Enum1>((++i % 3) + 1));
122 EmbeddedMsg1* em_msg = msg_in.add_msg_default_repeat();
123 em_msg->set_val(++i + 0.3);
124 em_msg->mutable_msg()->set_val(++i);
125 }
126
127 codec.info(msg_in.GetDescriptor());
128
129 std::ofstream fout("/tmp/testmessage.pb");
130 msg_in.SerializeToOstream(&fout);
131
132 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "Message in:\n" << msg_in.DebugString() << std::endl;
133
134 codec.load(msg_in.GetDescriptor());
135
136 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "Try encode..." << std::endl;
137 std::string bytes;
138 codec.encode(&bytes, msg_in);
139 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "... got bytes (hex): " << dccl::hex_encode(bytes) << std::endl;
140
141 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "Try decode..." << std::endl;
142 decode_check(bytes);
143
144 // make sure DCCL defaults stay wire compatible
145 decode_check(dccl::hex_decode(
146 "047f277b9628060000b95660c0b0188000d8c0132858800008000dc2c4c6626466024488cca8ee324bd05c3f23"
147 "af0000ad9112a09509788013e0820b18e0005ed0204c6c2c4666062042644675975982c65235f10a00ad718a58"
148 "01000000905f27121600000000a0170050640300309201001a0b00007d320a0000a61a0070b20100a81b00d09c"
149 "6f0000a0401026361643102636160300f0dfbd5b2280ea2e330f3da59a2100aabfa55a00000000000000000000"
150 "0000"));
151
152 // run a bunch of tests with random strings
153 std::string random = bytes;
154 for (unsigned i = 0; i < 10; ++i)
155 {
156 random[(rand() % (bytes.size() - 1) + 1)] = rand() % 256;
157 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "Using junk bytes: " << dccl::hex_encode(random) << std::endl;
158
159 try
160 {
161 TestMsg msg_out;
162 codec.decode(random, &msg_out);
163 }
164 catch (dccl::Exception&)
165 {
166 }
167 }
168
169 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "all tests passed" << std::endl;
170}
171
172void decode_check(const std::string& encoded)
173{
174 TestMsg msg_out;
175 codec.decode(encoded, &msg_out);
176
177 dccl::dlog.is(dccl::logger::INFO) && dccl::dlog << "... got Message out:\n" << msg_out.DebugString() << std::endl;
178
179 // truncate to "max_length" as codec should do
180 msg_in.set_string_default_repeat(0, "abc1");
181 msg_in.set_string_default_repeat(1, "abc1");
182
183 assert(msg_in.SerializeAsString() == msg_out.SerializeAsString());
184}
The Dynamic CCL enCODer/DECoder. This is the main class you will use to load, encode and decode DCCL ...
Definition codec.h:61
Exception class for DCCL.
Definition exception.h:47
bool is(logger::Verbosity verbosity, logger::Group group=logger::GENERAL)
Indicates the verbosity of the Logger until the next std::flush or std::endl. The boolean return is u...
Definition logger.h:191
void connect(int verbosity_mask, Slot slot)
Connect the output of one or more given verbosities to a slot (function pointer or similar)
Definition logger.h:213
Unit test namespace.
Definition test.cpp:45
Dynamic Compact Control Language namespace.
Definition any.h:28
void hex_encode(CharIterator begin, CharIterator end, std::string *out, bool upper_case=false)
Encodes a (little-endian) hexadecimal string from a byte string. Index 0 of begin is written to index...
Definition binary.h:95
void hex_decode(const std::string &in, std::string *out)
Decodes a (little-endian) hexadecimal string to a byte string. Index 0 and 1 (first byte) of in are w...
Definition binary.h:46