decode_legacy.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. #include <stdio.h>
  9. #include <string.h>
  10. #include <stdlib.h>
  11. #include <pb_decode.h>
  12. #include "alltypes_legacy.h"
  13. #include "test_helpers.h"
  14. #include "unittests.h"
  15. /* This function is called once from main(), it handles
  16. the decoding and checks the fields. */
  17. bool check_alltypes(pb_istream_t *stream, int mode)
  18. {
  19. AllTypes alltypes = {0};
  20. int status = 0;
  21. if (!pb_decode(stream, AllTypes_fields, &alltypes))
  22. return false;
  23. TEST(alltypes.req_int32 == -1001);
  24. TEST(alltypes.req_int64 == -1002);
  25. TEST(alltypes.req_uint32 == 1003);
  26. TEST(alltypes.req_uint64 == 1004);
  27. TEST(alltypes.req_sint32 == -1005);
  28. TEST(alltypes.req_sint64 == -1006);
  29. TEST(alltypes.req_bool == true);
  30. TEST(alltypes.req_fixed32 == 1008);
  31. TEST(alltypes.req_sfixed32 == -1009);
  32. TEST(alltypes.req_float == 1010.0f);
  33. TEST(alltypes.req_fixed64 == 1011);
  34. TEST(alltypes.req_sfixed64 == -1012);
  35. TEST(alltypes.req_double == 1013.0f);
  36. TEST(strcmp(alltypes.req_string, "1014") == 0);
  37. TEST(alltypes.req_bytes.size == 4);
  38. TEST(memcmp(alltypes.req_bytes.bytes, "1015", 4) == 0);
  39. TEST(strcmp(alltypes.req_submsg.substuff1, "1016") == 0);
  40. TEST(alltypes.req_submsg.substuff2 == 1016);
  41. TEST(alltypes.req_submsg.substuff3 == 3);
  42. TEST(alltypes.req_enum == MyEnum_Truth);
  43. TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0);
  44. TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0);
  45. TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
  46. TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
  47. TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] == 0);
  48. TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] == 0);
  49. TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false);
  50. TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0] == 0);
  51. TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
  52. TEST(alltypes.rep_float_count == 5 && alltypes.rep_float[4] == 2010.0f && alltypes.rep_float[0] == 0.0f);
  53. TEST(alltypes.rep_fixed64_count == 5 && alltypes.rep_fixed64[4] == 2011 && alltypes.rep_fixed64[0] == 0);
  54. TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
  55. TEST(alltypes.rep_double_count == 5 && alltypes.rep_double[4] == 2013.0 && alltypes.rep_double[0] == 0.0);
  56. TEST(alltypes.rep_string_count == 5 && strcmp(alltypes.rep_string[4], "2014") == 0 && alltypes.rep_string[0][0] == '\0');
  57. TEST(alltypes.rep_bytes_count == 5 && alltypes.rep_bytes[4].size == 4 && alltypes.rep_bytes[0].size == 0);
  58. TEST(memcmp(alltypes.rep_bytes[4].bytes, "2015", 4) == 0);
  59. TEST(alltypes.rep_submsg_count == 5);
  60. TEST(strcmp(alltypes.rep_submsg[4].substuff1, "2016") == 0 && alltypes.rep_submsg[0].substuff1[0] == '\0');
  61. TEST(alltypes.rep_submsg[4].substuff2 == 2016 && alltypes.rep_submsg[0].substuff2 == 0);
  62. TEST(alltypes.rep_submsg[4].substuff3 == 2016 && alltypes.rep_submsg[0].substuff3 == 3);
  63. TEST(alltypes.rep_enum_count == 5 && alltypes.rep_enum[4] == MyEnum_Truth && alltypes.rep_enum[0] == MyEnum_Zero);
  64. if (mode == 0)
  65. {
  66. /* Expect default values */
  67. TEST(alltypes.has_opt_int32 == false);
  68. TEST(alltypes.opt_int32 == 4041);
  69. TEST(alltypes.has_opt_int64 == false);
  70. TEST(alltypes.opt_int64 == 4042);
  71. TEST(alltypes.has_opt_uint32 == false);
  72. TEST(alltypes.opt_uint32 == 4043);
  73. TEST(alltypes.has_opt_uint64 == false);
  74. TEST(alltypes.opt_uint64 == 4044);
  75. TEST(alltypes.has_opt_sint32 == false);
  76. TEST(alltypes.opt_sint32 == 4045);
  77. TEST(alltypes.has_opt_sint64 == false);
  78. TEST(alltypes.opt_sint64 == 4046);
  79. TEST(alltypes.has_opt_bool == false);
  80. TEST(alltypes.opt_bool == false);
  81. TEST(alltypes.has_opt_fixed32 == false);
  82. TEST(alltypes.opt_fixed32 == 4048);
  83. TEST(alltypes.has_opt_sfixed32 == false);
  84. TEST(alltypes.opt_sfixed32 == 4049);
  85. TEST(alltypes.has_opt_float == false);
  86. TEST(alltypes.opt_float == 4050.0f);
  87. TEST(alltypes.has_opt_fixed64 == false);
  88. TEST(alltypes.opt_fixed64 == 4051);
  89. TEST(alltypes.has_opt_sfixed64 == false);
  90. TEST(alltypes.opt_sfixed64 == 4052);
  91. TEST(alltypes.has_opt_double == false);
  92. TEST(alltypes.opt_double == 4053.0);
  93. TEST(alltypes.has_opt_string == false);
  94. TEST(strcmp(alltypes.opt_string, "4054") == 0);
  95. TEST(alltypes.has_opt_bytes == false);
  96. TEST(alltypes.opt_bytes.size == 4);
  97. TEST(memcmp(alltypes.opt_bytes.bytes, "4055", 4) == 0);
  98. TEST(alltypes.has_opt_submsg == false);
  99. TEST(strcmp(alltypes.opt_submsg.substuff1, "1") == 0);
  100. TEST(alltypes.opt_submsg.substuff2 == 2);
  101. TEST(alltypes.opt_submsg.substuff3 == 3);
  102. TEST(alltypes.has_opt_enum == false);
  103. TEST(alltypes.opt_enum == MyEnum_Second);
  104. }
  105. else
  106. {
  107. /* Expect filled-in values */
  108. TEST(alltypes.has_opt_int32 == true);
  109. TEST(alltypes.opt_int32 == 3041);
  110. TEST(alltypes.has_opt_int64 == true);
  111. TEST(alltypes.opt_int64 == 3042);
  112. TEST(alltypes.has_opt_uint32 == true);
  113. TEST(alltypes.opt_uint32 == 3043);
  114. TEST(alltypes.has_opt_uint64 == true);
  115. TEST(alltypes.opt_uint64 == 3044);
  116. TEST(alltypes.has_opt_sint32 == true);
  117. TEST(alltypes.opt_sint32 == 3045);
  118. TEST(alltypes.has_opt_sint64 == true);
  119. TEST(alltypes.opt_sint64 == 3046);
  120. TEST(alltypes.has_opt_bool == true);
  121. TEST(alltypes.opt_bool == true);
  122. TEST(alltypes.has_opt_fixed32 == true);
  123. TEST(alltypes.opt_fixed32 == 3048);
  124. TEST(alltypes.has_opt_sfixed32 == true);
  125. TEST(alltypes.opt_sfixed32 == 3049);
  126. TEST(alltypes.has_opt_float == true);
  127. TEST(alltypes.opt_float == 3050.0f);
  128. TEST(alltypes.has_opt_fixed64 == true);
  129. TEST(alltypes.opt_fixed64 == 3051);
  130. TEST(alltypes.has_opt_sfixed64 == true);
  131. TEST(alltypes.opt_sfixed64 == 3052);
  132. TEST(alltypes.has_opt_double == true);
  133. TEST(alltypes.opt_double == 3053.0);
  134. TEST(alltypes.has_opt_string == true);
  135. TEST(strcmp(alltypes.opt_string, "3054") == 0);
  136. TEST(alltypes.has_opt_bytes == true);
  137. TEST(alltypes.opt_bytes.size == 4);
  138. TEST(memcmp(alltypes.opt_bytes.bytes, "3055", 4) == 0);
  139. TEST(alltypes.has_opt_submsg == true);
  140. TEST(strcmp(alltypes.opt_submsg.substuff1, "3056") == 0);
  141. TEST(alltypes.opt_submsg.substuff2 == 3056);
  142. TEST(alltypes.opt_submsg.substuff3 == 3);
  143. TEST(alltypes.has_opt_enum == true);
  144. TEST(alltypes.opt_enum == MyEnum_Truth);
  145. }
  146. TEST(alltypes.end == 1099);
  147. return status == 0;
  148. }
  149. int main(int argc, char **argv)
  150. {
  151. uint8_t buffer[1024];
  152. size_t count;
  153. pb_istream_t stream;
  154. /* Whether to expect the optional values or the default values. */
  155. int mode = (argc > 1) ? atoi(argv[1]) : 0;
  156. /* Read the data into buffer */
  157. SET_BINARY_MODE(stdin);
  158. count = fread(buffer, 1, sizeof(buffer), stdin);
  159. /* Construct a pb_istream_t for reading from the buffer */
  160. stream = pb_istream_from_buffer(buffer, count);
  161. /* Decode and print out the stuff */
  162. if (!check_alltypes(&stream, mode))
  163. {
  164. printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  165. return 1;
  166. } else {
  167. return 0;
  168. }
  169. }