MOS Source Code
Loading...
Searching...
No Matches
decode_legacy.c
Go to the documentation of this file.
1/* Tests the decoding of all types.
2 * This is a backwards-compatibility test, using alltypes_legacy.h.
3 * It is similar to decode_alltypes, but duplicated in order to allow
4 * decode_alltypes to test any new features introduced later.
5 *
6 * Run e.g. ./encode_legacy | ./decode_legacy
7 */
8
9#include <stdio.h>
10#include <string.h>
11#include <stdlib.h>
12#include <pb_decode.h>
13#include "alltypes_legacy.h"
14#include "test_helpers.h"
15#include "unittests.h"
16
17/* This function is called once from main(), it handles
18 the decoding and checks the fields. */
19bool check_alltypes(pb_istream_t *stream, int mode)
20{
21 AllTypes alltypes = {0};
22 int status = 0;
23
24 if (!pb_decode(stream, AllTypes_fields, &alltypes))
25 return false;
26
27 TEST(alltypes.req_int32 == -1001);
28 TEST(alltypes.req_int64 == -1002);
29 TEST(alltypes.req_uint32 == 1003);
30 TEST(alltypes.req_uint64 == 1004);
31 TEST(alltypes.req_sint32 == -1005);
32 TEST(alltypes.req_sint64 == -1006);
33 TEST(alltypes.req_bool == true);
34
35 TEST(alltypes.req_fixed32 == 1008);
36 TEST(alltypes.req_sfixed32 == -1009);
37 TEST(alltypes.req_float == 1010.0f);
38
39 TEST(alltypes.req_fixed64 == 1011);
40 TEST(alltypes.req_sfixed64 == -1012);
41 TEST(alltypes.req_double == 1013.0f);
42
43 TEST(strcmp(alltypes.req_string, "1014") == 0);
44 TEST(alltypes.req_bytes.size == 4);
45 TEST(memcmp(alltypes.req_bytes.bytes, "1015", 4) == 0);
46 TEST(strcmp(alltypes.req_submsg.substuff1, "1016") == 0);
47 TEST(alltypes.req_submsg.substuff2 == 1016);
48 TEST(alltypes.req_submsg.substuff3 == 3);
49 TEST(alltypes.req_enum == MyEnum_Truth);
50
51 TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0);
52 TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0);
53 TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
54 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
55 TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] == 0);
56 TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] == 0);
57 TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false);
58
59 TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0] == 0);
60 TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
61 TEST(alltypes.rep_float_count == 5 && alltypes.rep_float[4] == 2010.0f && alltypes.rep_float[0] == 0.0f);
62
63 TEST(alltypes.rep_fixed64_count == 5 && alltypes.rep_fixed64[4] == 2011 && alltypes.rep_fixed64[0] == 0);
64 TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
65 TEST(alltypes.rep_double_count == 5 && alltypes.rep_double[4] == 2013.0 && alltypes.rep_double[0] == 0.0);
66
67 TEST(alltypes.rep_string_count == 5 && strcmp(alltypes.rep_string[4], "2014") == 0 && alltypes.rep_string[0][0] == '\0');
68 TEST(alltypes.rep_bytes_count == 5 && alltypes.rep_bytes[4].size == 4 && alltypes.rep_bytes[0].size == 0);
69 TEST(memcmp(alltypes.rep_bytes[4].bytes, "2015", 4) == 0);
70
71 TEST(alltypes.rep_submsg_count == 5);
72 TEST(strcmp(alltypes.rep_submsg[4].substuff1, "2016") == 0 && alltypes.rep_submsg[0].substuff1[0] == '\0');
73 TEST(alltypes.rep_submsg[4].substuff2 == 2016 && alltypes.rep_submsg[0].substuff2 == 0);
74 TEST(alltypes.rep_submsg[4].substuff3 == 2016 && alltypes.rep_submsg[0].substuff3 == 3);
75
76 TEST(alltypes.rep_enum_count == 5 && alltypes.rep_enum[4] == MyEnum_Truth && alltypes.rep_enum[0] == MyEnum_Zero);
77
78 if (mode == 0)
79 {
80 /* Expect default values */
81 TEST(alltypes.has_opt_int32 == false);
82 TEST(alltypes.opt_int32 == 4041);
83 TEST(alltypes.has_opt_int64 == false);
84 TEST(alltypes.opt_int64 == 4042);
85 TEST(alltypes.has_opt_uint32 == false);
86 TEST(alltypes.opt_uint32 == 4043);
87 TEST(alltypes.has_opt_uint64 == false);
88 TEST(alltypes.opt_uint64 == 4044);
89 TEST(alltypes.has_opt_sint32 == false);
90 TEST(alltypes.opt_sint32 == 4045);
91 TEST(alltypes.has_opt_sint64 == false);
92 TEST(alltypes.opt_sint64 == 4046);
93 TEST(alltypes.has_opt_bool == false);
94 TEST(alltypes.opt_bool == false);
95
96 TEST(alltypes.has_opt_fixed32 == false);
97 TEST(alltypes.opt_fixed32 == 4048);
98 TEST(alltypes.has_opt_sfixed32 == false);
99 TEST(alltypes.opt_sfixed32 == 4049);
100 TEST(alltypes.has_opt_float == false);
101 TEST(alltypes.opt_float == 4050.0f);
102
103 TEST(alltypes.has_opt_fixed64 == false);
104 TEST(alltypes.opt_fixed64 == 4051);
105 TEST(alltypes.has_opt_sfixed64 == false);
106 TEST(alltypes.opt_sfixed64 == 4052);
107 TEST(alltypes.has_opt_double == false);
108 TEST(alltypes.opt_double == 4053.0);
109
110 TEST(alltypes.has_opt_string == false);
111 TEST(strcmp(alltypes.opt_string, "4054") == 0);
112 TEST(alltypes.has_opt_bytes == false);
113 TEST(alltypes.opt_bytes.size == 4);
114 TEST(memcmp(alltypes.opt_bytes.bytes, "4055", 4) == 0);
115 TEST(alltypes.has_opt_submsg == false);
116 TEST(strcmp(alltypes.opt_submsg.substuff1, "1") == 0);
117 TEST(alltypes.opt_submsg.substuff2 == 2);
118 TEST(alltypes.opt_submsg.substuff3 == 3);
119 TEST(alltypes.has_opt_enum == false);
120 TEST(alltypes.opt_enum == MyEnum_Second);
121 }
122 else
123 {
124 /* Expect filled-in values */
125 TEST(alltypes.has_opt_int32 == true);
126 TEST(alltypes.opt_int32 == 3041);
127 TEST(alltypes.has_opt_int64 == true);
128 TEST(alltypes.opt_int64 == 3042);
129 TEST(alltypes.has_opt_uint32 == true);
130 TEST(alltypes.opt_uint32 == 3043);
131 TEST(alltypes.has_opt_uint64 == true);
132 TEST(alltypes.opt_uint64 == 3044);
133 TEST(alltypes.has_opt_sint32 == true);
134 TEST(alltypes.opt_sint32 == 3045);
135 TEST(alltypes.has_opt_sint64 == true);
136 TEST(alltypes.opt_sint64 == 3046);
137 TEST(alltypes.has_opt_bool == true);
138 TEST(alltypes.opt_bool == true);
139
140 TEST(alltypes.has_opt_fixed32 == true);
141 TEST(alltypes.opt_fixed32 == 3048);
142 TEST(alltypes.has_opt_sfixed32 == true);
143 TEST(alltypes.opt_sfixed32 == 3049);
144 TEST(alltypes.has_opt_float == true);
145 TEST(alltypes.opt_float == 3050.0f);
146
147 TEST(alltypes.has_opt_fixed64 == true);
148 TEST(alltypes.opt_fixed64 == 3051);
149 TEST(alltypes.has_opt_sfixed64 == true);
150 TEST(alltypes.opt_sfixed64 == 3052);
151 TEST(alltypes.has_opt_double == true);
152 TEST(alltypes.opt_double == 3053.0);
153
154 TEST(alltypes.has_opt_string == true);
155 TEST(strcmp(alltypes.opt_string, "3054") == 0);
156 TEST(alltypes.has_opt_bytes == true);
157 TEST(alltypes.opt_bytes.size == 4);
158 TEST(memcmp(alltypes.opt_bytes.bytes, "3055", 4) == 0);
159 TEST(alltypes.has_opt_submsg == true);
160 TEST(strcmp(alltypes.opt_submsg.substuff1, "3056") == 0);
161 TEST(alltypes.opt_submsg.substuff2 == 3056);
162 TEST(alltypes.opt_submsg.substuff3 == 3);
163 TEST(alltypes.has_opt_enum == true);
164 TEST(alltypes.opt_enum == MyEnum_Truth);
165 }
166
167 TEST(alltypes.end == 1099);
168
169 return status == 0;
170}
171
172int main(int argc, char **argv)
173{
174 uint8_t buffer[1024];
175 size_t count;
176 pb_istream_t stream;
177
178 /* Whether to expect the optional values or the default values. */
179 int mode = (argc > 1) ? atoi(argv[1]) : 0;
180
181 /* Read the data into buffer */
183 count = fread(buffer, 1, sizeof(buffer), stdin);
184
185 /* Construct a pb_istream_t for reading from the buffer */
186 stream = pb_istream_from_buffer(buffer, count);
187
188 /* Decode and print out the stuff */
189 if (!check_alltypes(&stream, mode))
190 {
191 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
192 return 1;
193 } else {
194 return 0;
195 }
196}
#define AllTypes_fields
@ MyEnum_Zero
@ MyEnum_Truth
@ MyEnum_Second
bool check_alltypes(pb_istream_t *stream, int mode)
MOSAPI int memcmp(const void *s1, const void *s2, size_t n)
Definition mos_string.c:142
MOSAPI s32 strcmp(const char *str1, const char *str2)
Definition mos_string.c:24
size_t fread(void *__restrict ptr, size_t size, size_t nmemb, FILE *__restrict stream)
#define stdin
Definition mos_stdio.h:30
MOSAPI s32 atoi(const char *nptr)
Definition mos_stdlib.c:36
const char ** argv
Definition kmain.c:44
size_t argc
Definition kmain.c:43
#define PB_GET_ERROR(stream)
Definition pb.h:891
bool pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct)
Definition pb_decode.c:1182
pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t msglen)
Definition pb_decode.c:143
unsigned char uint8_t
Definition pb_syshdr.h:20
int main()
Definition simple.cpp:6
pb_size_t rep_submsg_count
bool has_opt_double
int64_t req_sfixed64
bool has_opt_uint64
AllTypes_opt_bytes_t opt_bytes
bool has_opt_fixed32
pb_size_t rep_string_count
int32_t rep_int32[5]
int64_t opt_sint64
MyEnum rep_enum[5]
uint64_t opt_uint64
uint32_t rep_uint32[5]
AllTypes_req_bytes_t req_bytes
int32_t opt_int32
pb_size_t rep_double_count
bool has_opt_sfixed32
uint32_t opt_fixed32
int32_t rep_sfixed32[5]
int64_t opt_int64
bool has_opt_sint64
AllTypes_rep_bytes_t rep_bytes[5]
SubMessage opt_submsg
uint32_t req_fixed32
int32_t opt_sint32
bool has_opt_sint32
double rep_double[5]
pb_size_t rep_bool_count
pb_size_t rep_fixed32_count
int64_t req_int64
float rep_float[5]
bool rep_bool[5]
uint64_t req_uint64
bool has_opt_submsg
pb_size_t rep_int32_count
double opt_double
int64_t rep_sfixed64[5]
pb_size_t rep_float_count
char opt_string[16]
int32_t req_int32
bool has_opt_string
pb_size_t rep_sfixed32_count
uint32_t opt_uint32
double req_double
SubMessage rep_submsg[5]
pb_size_t rep_fixed64_count
pb_size_t rep_bytes_count
pb_size_t rep_enum_count
char req_string[16]
int64_t req_sint64
int64_t rep_sint64[5]
char rep_string[5][16]
int64_t rep_int64[5]
uint64_t rep_uint64[5]
int64_t opt_sfixed64
MyEnum opt_enum
int32_t req_sint32
SubMessage req_submsg
uint32_t req_uint32
uint64_t opt_fixed64
int32_t req_sfixed32
pb_size_t rep_uint64_count
pb_size_t rep_sint64_count
int32_t opt_sfixed32
MyEnum req_enum
pb_size_t rep_sfixed64_count
pb_size_t rep_uint32_count
pb_size_t rep_int64_count
bool has_opt_uint32
uint64_t rep_fixed64[5]
float req_float
uint32_t rep_fixed32[5]
bool has_opt_fixed64
pb_size_t rep_sint32_count
uint64_t req_fixed64
bool has_opt_sfixed64
int32_t rep_sint32[5]
char substuff1[16]
int32_t substuff2
uint32_t substuff3
#define TEST(x)
Definition test.h:3
#define SET_BINARY_MODE(file)
static char buffer[2048]
Definition test_printf.c:7