Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / alltypes_proto3 / 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     AllTypes alltypes = AllTypes_init_zero;
23     
24     /* Fill with garbage to better detect initialization errors */
25     memset(&alltypes, 0xAA, sizeof(alltypes));
26     
27     if (!pb_decode(stream, AllTypes_fields, &alltypes))
28         return false;
29     
30     TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0);
31     TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0);
32     TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
33     TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
34     TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] == 0);
35     TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] == 0);
36     TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false);
37     
38     TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0] == 0);
39     TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
40     TEST(alltypes.rep_float_count == 5 && alltypes.rep_float[4] == 2010.0f && alltypes.rep_float[0] == 0.0f);
41     
42     TEST(alltypes.rep_fixed64_count == 5 && alltypes.rep_fixed64[4] == 2011 && alltypes.rep_fixed64[0] == 0);
43     TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
44     TEST(alltypes.rep_double_count == 5 && alltypes.rep_double[4] == 2013.0 && alltypes.rep_double[0] == 0.0);
45     
46     TEST(alltypes.rep_string_count == 5 && strcmp(alltypes.rep_string[4], "2014") == 0 && alltypes.rep_string[0][0] == '\0');
47     TEST(alltypes.rep_bytes_count == 5 && alltypes.rep_bytes[4].size == 4 && alltypes.rep_bytes[0].size == 0);
48     TEST(memcmp(alltypes.rep_bytes[4].bytes, "2015", 4) == 0);
49
50     TEST(alltypes.rep_submsg_count == 5);
51     TEST(strcmp(alltypes.rep_submsg[4].substuff1, "2016") == 0 && alltypes.rep_submsg[0].substuff1[0] == '\0');
52     TEST(alltypes.rep_submsg[4].substuff2 == 2016 && alltypes.rep_submsg[0].substuff2 == 0);
53     TEST(alltypes.rep_submsg[4].substuff3 == 2016 && alltypes.rep_submsg[0].substuff3 == 0);
54     
55     TEST(alltypes.rep_enum_count == 5 && alltypes.rep_enum[4] == MyEnum_Truth && alltypes.rep_enum[0] == MyEnum_Zero);
56     TEST(alltypes.rep_emptymsg_count == 5);
57     
58     TEST(alltypes.rep_fbytes_count == 5);
59     TEST(alltypes.rep_fbytes[0][0] == 0 && alltypes.rep_fbytes[0][3] == 0);
60     TEST(memcmp(alltypes.rep_fbytes[4], "2019", 4) == 0);
61     
62     if (mode == 0)
63     {
64         /* Expect default values */
65         TEST(alltypes.sng_int32         == 0);
66         TEST(alltypes.sng_int64         == 0);
67         TEST(alltypes.sng_uint32        == 0);
68         TEST(alltypes.sng_uint64        == 0);
69         TEST(alltypes.sng_sint32        == 0);
70         TEST(alltypes.sng_sint64        == 0);
71         TEST(alltypes.sng_bool          == false);
72         
73         TEST(alltypes.sng_fixed32       == 0);
74         TEST(alltypes.sng_sfixed32      == 0);
75         TEST(alltypes.sng_float         == 0.0f);
76         
77         TEST(alltypes.sng_fixed64       == 0);
78         TEST(alltypes.sng_sfixed64      == 0);
79         TEST(alltypes.sng_double        == 0.0);
80         
81         TEST(strcmp(alltypes.sng_string, "") == 0);
82         TEST(alltypes.sng_bytes.size == 0);
83         TEST(strcmp(alltypes.sng_submsg.substuff1, "") == 0);
84         TEST(alltypes.sng_submsg.substuff2 == 0);
85         TEST(alltypes.sng_submsg.substuff3 == 0);
86         TEST(alltypes.sng_enum == MyEnum_Zero);
87         TEST(alltypes.sng_fbytes[0] == 0 &&
88              alltypes.sng_fbytes[1] == 0 &&
89              alltypes.sng_fbytes[2] == 0 &&
90              alltypes.sng_fbytes[3] == 0);
91
92         TEST(alltypes.which_oneof == 0);
93     }
94     else
95     {
96         /* Expect filled-in values */
97         TEST(alltypes.sng_int32         == 3041);
98         TEST(alltypes.sng_int64         == 3042);
99         TEST(alltypes.sng_uint32        == 3043);
100         TEST(alltypes.sng_uint64        == 3044);
101         TEST(alltypes.sng_sint32        == 3045);
102         TEST(alltypes.sng_sint64        == 3046);
103         TEST(alltypes.sng_bool          == true);
104         
105         TEST(alltypes.sng_fixed32       == 3048);
106         TEST(alltypes.sng_sfixed32      == 3049);
107         TEST(alltypes.sng_float         == 3050.0f);
108         
109         TEST(alltypes.sng_fixed64       == 3051);
110         TEST(alltypes.sng_sfixed64      == 3052);
111         TEST(alltypes.sng_double        == 3053.0);
112         
113         TEST(strcmp(alltypes.sng_string, "3054") == 0);
114         TEST(alltypes.sng_bytes.size == 4);
115         TEST(memcmp(alltypes.sng_bytes.bytes, "3055", 4) == 0);
116         TEST(strcmp(alltypes.sng_submsg.substuff1, "3056") == 0);
117         TEST(alltypes.sng_submsg.substuff2 == 3056);
118         TEST(alltypes.sng_submsg.substuff3 == 0);
119         TEST(alltypes.sng_enum == MyEnum_Truth);
120         TEST(memcmp(alltypes.sng_fbytes, "3059", 4) == 0);
121
122         TEST(alltypes.which_oneof == AllTypes_oneof_msg1_tag);
123         TEST(strcmp(alltypes.oneof.oneof_msg1.substuff1, "4059") == 0);
124         TEST(alltypes.oneof.oneof_msg1.substuff2 == 4059);
125     }
126     
127     TEST(alltypes.req_limits.int32_min  == INT32_MIN);
128     TEST(alltypes.req_limits.int32_max  == INT32_MAX);
129     TEST(alltypes.req_limits.uint32_min == 0);
130     TEST(alltypes.req_limits.uint32_max == UINT32_MAX);
131     TEST(alltypes.req_limits.int64_min  == INT64_MIN);
132     TEST(alltypes.req_limits.int64_max  == INT64_MAX);
133     TEST(alltypes.req_limits.uint64_min == 0);
134     TEST(alltypes.req_limits.uint64_max == UINT64_MAX);
135     TEST(alltypes.req_limits.enum_min   == HugeEnum_Negative);
136     TEST(alltypes.req_limits.enum_max   == HugeEnum_Positive);
137     
138     TEST(alltypes.end == 1099);
139     
140     return true;
141 }
142
143 int main(int argc, char **argv)
144 {
145     uint8_t buffer[1024];
146     size_t count;
147     pb_istream_t stream;
148
149     /* Whether to expect the optional values or the default values. */
150     int mode = (argc > 1) ? atoi(argv[1]) : 0;
151     
152     /* Read the data into buffer */
153     SET_BINARY_MODE(stdin);
154     count = fread(buffer, 1, sizeof(buffer), stdin);
155     
156     /* Construct a pb_istream_t for reading from the buffer */
157     stream = pb_istream_from_buffer(buffer, count);
158     
159     /* Decode and print out the stuff */
160     if (!check_alltypes(&stream, mode))
161     {
162         printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
163         return 1;
164     } else {
165         return 0;
166     }
167 }