DCCL v4
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 #include <google/protobuf/descriptor.pb.h>
29 
30 #include "../../binary.h"
31 #include "../../codec.h"
32 #include "test.pb.h"
33 using namespace dccl::test;
34 
35 void decode_check(const std::string& encoded);
36 dccl::Codec codec;
37 TestMsg msg_in;
38 
39 int main(int /*argc*/, char* /*argv*/ [])
40 {
41  dccl::dlog.connect(dccl::logger::ALL, &std::cerr);
42 
43  int i = 0;
44  msg_in.set_double_default_optional(++i + 0.1);
45  msg_in.set_float_default_optional(++i + 0.2);
46 
47  msg_in.set_int32_default_optional(++i);
48  msg_in.set_int64_default_optional(-++i);
49  msg_in.set_uint32_default_optional(++i);
50  msg_in.set_uint64_default_optional(++i);
51  msg_in.set_sint32_default_optional(-++i);
52  msg_in.set_sint64_default_optional(++i);
53  msg_in.set_fixed32_default_optional(++i);
54  msg_in.set_fixed64_default_optional(++i);
55  msg_in.set_sfixed32_default_optional(++i);
56  msg_in.set_sfixed64_default_optional(-++i);
57 
58  msg_in.set_bool_default_optional(true);
59 
60  msg_in.set_string_default_optional("abc123");
61  msg_in.set_bytes_default_optional(dccl::hex_decode("00112233aabbcc1234"));
62 
63  msg_in.set_enum_default_optional(ENUM_C);
64  msg_in.mutable_msg_default_optional()->set_val(++i + 0.3);
65  msg_in.mutable_msg_default_optional()->mutable_msg()->set_val(++i);
66 
67  msg_in.set_double_default_required(++i + 0.1);
68  msg_in.set_float_default_required(++i + 0.2);
69 
70  msg_in.set_int32_default_required(++i);
71  msg_in.set_int64_default_required(-++i);
72  msg_in.set_uint32_default_required(++i);
73  msg_in.set_uint64_default_required(++i);
74  msg_in.set_sint32_default_required(-++i);
75  msg_in.set_sint64_default_required(++i);
76  msg_in.set_fixed32_default_required(++i);
77  msg_in.set_fixed64_default_required(++i);
78  msg_in.set_sfixed32_default_required(++i);
79  msg_in.set_sfixed64_default_required(-++i);
80 
81  msg_in.set_bool_default_required(true);
82 
83  msg_in.set_string_default_required("abc123");
84  msg_in.set_bytes_default_required(dccl::hex_decode("00112233aabbcc1234"));
85 
86  msg_in.set_enum_default_required(ENUM_C);
87  msg_in.mutable_msg_default_required()->set_val(++i + 0.3);
88  msg_in.mutable_msg_default_required()->mutable_msg()->set_val(++i);
89 
90  for (int j = 0; j < 2; ++j)
91  {
92  msg_in.add_double_default_repeat(++i + 0.1);
93  msg_in.add_float_default_repeat(++i + 0.2);
94 
95  msg_in.add_int32_default_repeat(++i);
96  msg_in.add_int64_default_repeat(-++i);
97  msg_in.add_uint32_default_repeat(++i);
98  msg_in.add_uint64_default_repeat(++i);
99  msg_in.add_sint32_default_repeat(-++i);
100  msg_in.add_sint64_default_repeat(++i);
101  msg_in.add_fixed32_default_repeat(++i);
102  msg_in.add_fixed64_default_repeat(++i);
103  msg_in.add_sfixed32_default_repeat(++i);
104  msg_in.add_sfixed64_default_repeat(-++i);
105 
106  msg_in.add_bool_default_repeat(true);
107 
108  msg_in.add_string_default_repeat("abc123");
109 
110  if (j)
111  msg_in.add_bytes_default_repeat(dccl::hex_decode("00aabbcc"));
112  else
113  msg_in.add_bytes_default_repeat(dccl::hex_decode("ffeedd12"));
114 
115  msg_in.add_enum_default_repeat(static_cast<Enum1>((++i % 3) + 1));
116  EmbeddedMsg1* em_msg = msg_in.add_msg_default_repeat();
117  em_msg->set_val(++i + 0.3);
118  em_msg->mutable_msg()->set_val(++i);
119  }
120 
121  codec.info(msg_in.GetDescriptor());
122 
123  std::ofstream fout("/tmp/testmessage.pb");
124  msg_in.SerializeToOstream(&fout);
125 
126  std::cout << "Message in:\n" << msg_in.DebugString() << std::endl;
127 
128  codec.load(msg_in.GetDescriptor());
129 
130  std::cout << "Try encode..." << std::endl;
131  std::string bytes;
132  codec.encode(&bytes, msg_in);
133  std::cout << "... got bytes (hex): " << dccl::hex_encode(bytes) << std::endl;
134 
135  std::cout << "Try decode..." << std::endl;
136  decode_check(bytes);
137 
138  // make sure DCCL defaults stay wire compatible
139  decode_check(dccl::hex_decode(
140  "047f277b9628060000b95660c0b0188000d8c0132858800008000dc2c4c6626466024488cca8ee324bd05c3f23"
141  "af0000ad9112a09509788013e0820b18e0005ed0204c6c2c4666062042644675975982c65235f10a00ad718a58"
142  "01000000905f27121600000000a0170050640300309201001a0b00007d320a0000a61a0070b20100a81b00d09c"
143  "6f0000a0401026361643102636160300f0dfbd5b2280ea2e330f3da59a2100aabfa55a00000000000000000000"
144  "0000"));
145 
146  // run a bunch of tests with random strings
147  std::string random = bytes;
148  for (unsigned i = 0; i < 10; ++i)
149  {
150  random[(rand() % (bytes.size() - 1) + 1)] = rand() % 256;
151  std::cout << "Using junk bytes: " << dccl::hex_encode(random) << std::endl;
152 
153  try
154  {
155  TestMsg msg_out;
156  codec.decode(random, &msg_out);
157  }
158  catch (dccl::Exception&)
159  {
160  }
161  }
162 
163  std::cout << "all tests passed" << std::endl;
164 }
165 
166 void decode_check(const std::string& encoded)
167 {
168  TestMsg msg_out;
169  codec.decode(encoded, &msg_out);
170 
171  std::cout << "... got Message out:\n" << msg_out.DebugString() << std::endl;
172 
173  // truncate to "max_length" as codec should do
174  msg_in.set_string_default_repeat(0, "abc1");
175  msg_in.set_string_default_repeat(1, "abc1");
176 
177  assert(msg_in.SerializeAsString() == msg_out.SerializeAsString());
178 }
dccl::test
Unit test namespace.
Definition: test.cpp:44
dccl::Exception
Exception class for DCCL.
Definition: exception.h:46
dccl::Codec
The Dynamic CCL enCODer/DECoder. This is the main class you will use to load, encode and decode DCCL ...
Definition: codec.h:62
dccl::Logger::connect
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:214
dccl::hex_encode
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:100
dccl::hex_decode
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:51