Fix closing a non-empty substream resulting in an incorrect stream state
[apps/agl-service-can-low-level.git] / tests / alltypes / decode_alltypes.c
1 /* Tests the decoding of all types.
2  * This is the counterpart of test_encode3.
3  * Run e.g. ./test_encode3 | ./test_decode3
4  */
5
6 #include <stdio.h>
7 #include <string.h>
8 #include <stdlib.h>
9 #include <pb_decode.h>
10 #include "alltypes.pb.h"
11 #include "test_helpers.h"
12
13 #define TEST(x) if (!(x)) { \
14     printf("Test " #x " failed.\n"); \
15     return false; \
16     }
17
18 /* This function is called once from main(), it handles
19    the decoding and checks the fields. */
20 bool check_alltypes(pb_istream_t *stream, int mode)
21 {
22     /* Uses _init_default to just make sure that it works. */
23     AllTypes alltypes = AllTypes_init_default;
24     
25     /* Fill with garbage to better detect initialization errors */
26     memset(&alltypes, 0xAA, sizeof(alltypes));
27     alltypes.extensions = 0;
28     
29     if (!pb_decode(stream, AllTypes_fields, &alltypes))
30         return false;
31     
32     TEST(alltypes.req_int32         == -1001);
33     TEST(alltypes.req_int64         == -1002);
34     TEST(alltypes.req_uint32        == 1003);
35     TEST(alltypes.req_uint64        == 1004);
36     TEST(alltypes.req_sint32        == -1005);
37     TEST(alltypes.req_sint64        == -1006);
38     TEST(alltypes.req_bool          == true);
39     
40     TEST(alltypes.req_fixed32       == 1008);
41     TEST(alltypes.req_sfixed32      == -1009);
42     TEST(alltypes.req_float         == 1010.0f);
43     
44     TEST(alltypes.req_fixed64       == 1011);
45     TEST(alltypes.req_sfixed64      == -1012);
46     TEST(alltypes.req_double        == 1013.0f);
47     
48     TEST(strcmp(alltypes.req_string, "1014") == 0);
49     TEST(alltypes.req_bytes.size == 4);
50     TEST(memcmp(alltypes.req_bytes.bytes, "1015", 4) == 0);
51     TEST(strcmp(alltypes.req_submsg.substuff1, "1016") == 0);
52     TEST(alltypes.req_submsg.substuff2 == 1016);
53     TEST(alltypes.req_submsg.substuff3 == 3);
54     TEST(alltypes.req_enum == MyEnum_Truth);
55     
56     TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0);
57     TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0);
58     TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
59     TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
60     TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] == 0);
61     TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] == 0);
62     TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false);
63     
64     TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0] == 0);
65     TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
66     TEST(alltypes.rep_float_count == 5 && alltypes.rep_float[4] == 2010.0f && alltypes.rep_float[0] == 0.0f);
67     
68     TEST(alltypes.rep_fixed64_count == 5 && alltypes.rep_fixed64[4] == 2011 && alltypes.rep_fixed64[0] == 0);
69     TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
70     TEST(alltypes.rep_double_count == 5 && alltypes.rep_double[4] == 2013.0 && alltypes.rep_double[0] == 0.0);
71     
72     TEST(alltypes.rep_string_count == 5 && strcmp(alltypes.rep_string[4], "2014") == 0 && alltypes.rep_string[0][0] == '\0');
73     TEST(alltypes.rep_bytes_count == 5 && alltypes.rep_bytes[4].size == 4 && alltypes.rep_bytes[0].size == 0);
74     TEST(memcmp(alltypes.rep_bytes[4].bytes, "2015", 4) == 0);
75
76     TEST(alltypes.rep_submsg_count == 5);
77     TEST(strcmp(alltypes.rep_submsg[4].substuff1, "2016") == 0 && alltypes.rep_submsg[0].substuff1[0] == '\0');
78     TEST(alltypes.rep_submsg[4].substuff2 == 2016 && alltypes.rep_submsg[0].substuff2 == 0);
79     TEST(alltypes.rep_submsg[4].substuff3 == 2016 && alltypes.rep_submsg[0].substuff3 == 3);
80     
81     TEST(alltypes.rep_enum_count == 5 && alltypes.rep_enum[4] == MyEnum_Truth && alltypes.rep_enum[0] == MyEnum_Zero);
82     TEST(alltypes.rep_emptymsg_count == 5);
83     
84     if (mode == 0)
85     {
86         /* Expect default values */
87         TEST(alltypes.has_opt_int32     == false);
88         TEST(alltypes.opt_int32         == 4041);
89         TEST(alltypes.has_opt_int64     == false);
90         TEST(alltypes.opt_int64         == 4042);
91         TEST(alltypes.has_opt_uint32    == false);
92         TEST(alltypes.opt_uint32        == 4043);
93         TEST(alltypes.has_opt_uint64    == false);
94         TEST(alltypes.opt_uint64        == 4044);
95         TEST(alltypes.has_opt_sint32    == false);
96         TEST(alltypes.opt_sint32        == 4045);
97         TEST(alltypes.has_opt_sint64    == false);
98         TEST(alltypes.opt_sint64        == 4046);
99         TEST(alltypes.has_opt_bool      == false);
100         TEST(alltypes.opt_bool          == false);
101         
102         TEST(alltypes.has_opt_fixed32   == false);
103         TEST(alltypes.opt_fixed32       == 4048);
104         TEST(alltypes.has_opt_sfixed32  == false);
105         TEST(alltypes.opt_sfixed32      == 4049);
106         TEST(alltypes.has_opt_float     == false);
107         TEST(alltypes.opt_float         == 4050.0f);
108         
109         TEST(alltypes.has_opt_fixed64   == false);
110         TEST(alltypes.opt_fixed64       == 4051);
111         TEST(alltypes.has_opt_sfixed64  == false);
112         TEST(alltypes.opt_sfixed64      == 4052);
113         TEST(alltypes.has_opt_double    == false);
114         TEST(alltypes.opt_double        == 4053.0);
115         
116         TEST(alltypes.has_opt_string    == false);
117         TEST(strcmp(alltypes.opt_string, "4054") == 0);
118         TEST(alltypes.has_opt_bytes     == false);
119         TEST(alltypes.opt_bytes.size == 4);
120         TEST(memcmp(alltypes.opt_bytes.bytes, "4055", 4) == 0);
121         TEST(alltypes.has_opt_submsg    == false);
122         TEST(strcmp(alltypes.opt_submsg.substuff1, "1") == 0);
123         TEST(alltypes.opt_submsg.substuff2 == 2);
124         TEST(alltypes.opt_submsg.substuff3 == 3);
125         TEST(alltypes.has_opt_enum     == false);
126         TEST(alltypes.opt_enum == MyEnum_Second);
127         TEST(alltypes.has_opt_emptymsg == false);
128
129         TEST(alltypes.which_oneof == 0);
130     }
131     else
132     {
133         /* Expect filled-in values */
134         TEST(alltypes.has_opt_int32     == true);
135         TEST(alltypes.opt_int32         == 3041);
136         TEST(alltypes.has_opt_int64     == true);
137         TEST(alltypes.opt_int64         == 3042);
138         TEST(alltypes.has_opt_uint32    == true);
139         TEST(alltypes.opt_uint32        == 3043);
140         TEST(alltypes.has_opt_uint64    == true);
141         TEST(alltypes.opt_uint64        == 3044);
142         TEST(alltypes.has_opt_sint32    == true);
143         TEST(alltypes.opt_sint32        == 3045);
144         TEST(alltypes.has_opt_sint64    == true);
145         TEST(alltypes.opt_sint64        == 3046);
146         TEST(alltypes.has_opt_bool      == true);
147         TEST(alltypes.opt_bool          == true);
148         
149         TEST(alltypes.has_opt_fixed32   == true);
150         TEST(alltypes.opt_fixed32       == 3048);
151         TEST(alltypes.has_opt_sfixed32  == true);
152         TEST(alltypes.opt_sfixed32      == 3049);
153         TEST(alltypes.has_opt_float     == true);
154         TEST(alltypes.opt_float         == 3050.0f);
155         
156         TEST(alltypes.has_opt_fixed64   == true);
157         TEST(alltypes.opt_fixed64       == 3051);
158         TEST(alltypes.has_opt_sfixed64  == true);
159         TEST(alltypes.opt_sfixed64      == 3052);
160         TEST(alltypes.has_opt_double    == true);
161         TEST(alltypes.opt_double        == 3053.0);
162         
163         TEST(alltypes.has_opt_string    == true);
164         TEST(strcmp(alltypes.opt_string, "3054") == 0);
165         TEST(alltypes.has_opt_bytes     == true);
166         TEST(alltypes.opt_bytes.size == 4);
167         TEST(memcmp(alltypes.opt_bytes.bytes, "3055", 4) == 0);
168         TEST(alltypes.has_opt_submsg    == true);
169         TEST(strcmp(alltypes.opt_submsg.substuff1, "3056") == 0);
170         TEST(alltypes.opt_submsg.substuff2 == 3056);
171         TEST(alltypes.opt_submsg.substuff3 == 3);
172         TEST(alltypes.has_opt_enum      == true);
173         TEST(alltypes.opt_enum == MyEnum_Truth);
174         TEST(alltypes.has_opt_emptymsg  == true);
175
176         TEST(alltypes.which_oneof == AllTypes_oneof_msg1_tag);
177         TEST(strcmp(alltypes.oneof.oneof_msg1.substuff1, "4059") == 0);
178         TEST(alltypes.oneof.oneof_msg1.substuff2 == 4059);
179     }
180     
181     TEST(alltypes.req_limits.int32_min  == INT32_MIN);
182     TEST(alltypes.req_limits.int32_max  == INT32_MAX);
183     TEST(alltypes.req_limits.uint32_min == 0);
184     TEST(alltypes.req_limits.uint32_max == UINT32_MAX);
185     TEST(alltypes.req_limits.int64_min  == INT64_MIN);
186     TEST(alltypes.req_limits.int64_max  == INT64_MAX);
187     TEST(alltypes.req_limits.uint64_min == 0);
188     TEST(alltypes.req_limits.uint64_max == UINT64_MAX);
189     TEST(alltypes.req_limits.enum_min   == HugeEnum_Negative);
190     TEST(alltypes.req_limits.enum_max   == HugeEnum_Positive);
191     
192     TEST(alltypes.end == 1099);
193     
194     return true;
195 }
196
197 int main(int argc, char **argv)
198 {
199     uint8_t buffer[1024];
200     size_t count;
201     pb_istream_t stream;
202
203     /* Whether to expect the optional values or the default values. */
204     int mode = (argc > 1) ? atoi(argv[1]) : 0;
205     
206     /* Read the data into buffer */
207     SET_BINARY_MODE(stdin);
208     count = fread(buffer, 1, sizeof(buffer), stdin);
209     
210     /* Construct a pb_istream_t for reading from the buffer */
211     stream = pb_istream_from_buffer(buffer, count);
212     
213     /* Decode and print out the stuff */
214     if (!check_alltypes(&stream, mode))
215     {
216         printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
217         return 1;
218     } else {
219         return 0;
220     }
221 }