lwtarantool 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +84 -0
  3. data/ext/lwtarantool/conn.c +314 -0
  4. data/ext/lwtarantool/depend +23 -0
  5. data/ext/lwtarantool/errors.c +24 -0
  6. data/ext/lwtarantool/extconf.rb +8 -0
  7. data/ext/lwtarantool/lwtarantool.c +12 -0
  8. data/ext/lwtarantool/lwtarantool.h +38 -0
  9. data/ext/lwtarantool/request.c +124 -0
  10. data/ext/lwtarantool/vendor/msgpuck/CMakeLists.txt +73 -0
  11. data/ext/lwtarantool/vendor/msgpuck/hints.c +674 -0
  12. data/ext/lwtarantool/vendor/msgpuck/msgpuck.c +375 -0
  13. data/ext/lwtarantool/vendor/msgpuck/msgpuck.h +2195 -0
  14. data/ext/lwtarantool/vendor/msgpuck/test/CMakeLists.txt +25 -0
  15. data/ext/lwtarantool/vendor/msgpuck/test/msgpuck.c +1126 -0
  16. data/ext/lwtarantool/vendor/msgpuck/test/test.c +105 -0
  17. data/ext/lwtarantool/vendor/msgpuck/test/test.h +123 -0
  18. data/ext/lwtarantool/vendor/tarantool-c/CMakeLists.txt +89 -0
  19. data/ext/lwtarantool/vendor/tarantool-c/cmake/FindMsgPuck.cmake +18 -0
  20. data/ext/lwtarantool/vendor/tarantool-c/cmake/FindSphinx.cmake +10 -0
  21. data/ext/lwtarantool/vendor/tarantool-c/doc/CMakeLists.txt +15 -0
  22. data/ext/lwtarantool/vendor/tarantool-c/doc/source/example.c +340 -0
  23. data/ext/lwtarantool/vendor/tarantool-c/include/CMakeLists.txt +6 -0
  24. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tarantool.h +67 -0
  25. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_auth.h +72 -0
  26. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_buf.h +88 -0
  27. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_call.h +83 -0
  28. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_delete.h +52 -0
  29. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_execute.h +24 -0
  30. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_insert.h +62 -0
  31. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_io.h +67 -0
  32. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iob.h +62 -0
  33. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_iter.h +301 -0
  34. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_mem.h +102 -0
  35. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_net.h +242 -0
  36. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_object.h +248 -0
  37. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_opt.h +138 -0
  38. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_ping.h +49 -0
  39. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_proto.h +295 -0
  40. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_reply.h +204 -0
  41. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_request.h +377 -0
  42. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_schema.h +165 -0
  43. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_select.h +59 -0
  44. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_stream.h +79 -0
  45. data/ext/lwtarantool/vendor/tarantool-c/include/tarantool/tnt_update.h +226 -0
  46. data/ext/lwtarantool/vendor/tarantool-c/include/tp.h +1998 -0
  47. data/ext/lwtarantool/vendor/tarantool-c/test/CMakeLists.txt +36 -0
  48. data/ext/lwtarantool/vendor/tarantool-c/test/common.c +233 -0
  49. data/ext/lwtarantool/vendor/tarantool-c/test/common.h +28 -0
  50. data/ext/lwtarantool/vendor/tarantool-c/test/plain_test.c +152 -0
  51. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_call.c +57 -0
  52. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_disconnect.c +31 -0
  53. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_tcp.c +840 -0
  54. data/ext/lwtarantool/vendor/tarantool-c/test/tarantool_unix.c +384 -0
  55. data/ext/lwtarantool/vendor/tarantool-c/test/test.c +72 -0
  56. data/ext/lwtarantool/vendor/tarantool-c/test/test.h +94 -0
  57. data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.c +6 -0
  58. data/ext/lwtarantool/vendor/tarantool-c/test/tnt_assoc.h +67 -0
  59. data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.c +317 -0
  60. data/ext/lwtarantool/vendor/tarantool-c/third_party/PMurHash.h +68 -0
  61. data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.c +300 -0
  62. data/ext/lwtarantool/vendor/tarantool-c/third_party/base64.h +91 -0
  63. data/ext/lwtarantool/vendor/tarantool-c/third_party/mhash.h +589 -0
  64. data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.c +219 -0
  65. data/ext/lwtarantool/vendor/tarantool-c/third_party/sha1.h +24 -0
  66. data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.c +6528 -0
  67. data/ext/lwtarantool/vendor/tarantool-c/third_party/uri.h +81 -0
  68. data/ext/lwtarantool/vendor/tarantool-c/tnt/CMakeLists.txt +83 -0
  69. data/ext/lwtarantool/vendor/tarantool-c/tnt/pmatomic.h +494 -0
  70. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.c +9 -0
  71. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_assoc.h +172 -0
  72. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_auth.c +118 -0
  73. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_buf.c +171 -0
  74. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_call.c +79 -0
  75. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_delete.c +52 -0
  76. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_execute.c +60 -0
  77. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_insert.c +60 -0
  78. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_io.c +520 -0
  79. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iob.c +75 -0
  80. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_iter.c +293 -0
  81. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_mem.c +82 -0
  82. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_net.c +336 -0
  83. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_object.c +476 -0
  84. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_opt.c +117 -0
  85. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_ping.c +38 -0
  86. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_proto_internal.h +43 -0
  87. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_reply.c +300 -0
  88. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_request.c +336 -0
  89. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_schema.c +334 -0
  90. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_select.c +58 -0
  91. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_stream.c +71 -0
  92. data/ext/lwtarantool/vendor/tarantool-c/tnt/tnt_update.c +247 -0
  93. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/CMakeLists.txt +69 -0
  94. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.c +173 -0
  95. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_dir.h +58 -0
  96. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.c +329 -0
  97. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_log.h +119 -0
  98. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.c +189 -0
  99. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_rpl.h +47 -0
  100. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.c +163 -0
  101. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_snapshot.h +50 -0
  102. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.c +163 -0
  103. data/ext/lwtarantool/vendor/tarantool-c/tntrpl/tnt_xlog.h +50 -0
  104. data/lib/lwtarantool/connection.rb +84 -0
  105. data/lib/lwtarantool/request.rb +58 -0
  106. data/lib/lwtarantool.rb +23 -0
  107. metadata +164 -0
@@ -0,0 +1,1126 @@
1
+ /*
2
+ * Copyright (c) 2013-2016 MsgPuck Authors
3
+ * All rights reserved.
4
+ *
5
+ * Redistribution and use in source and binary forms, with or
6
+ * without modification, are permitted provided that the following
7
+ * conditions are met:
8
+ *
9
+ * 1. Redistributions of source code must retain the above
10
+ * copyright notice, this list of conditions and the
11
+ * following disclaimer.
12
+ *
13
+ * 2. Redistributions in binary form must reproduce the above
14
+ * copyright notice, this list of conditions and the following
15
+ * disclaimer in the documentation and/or other materials
16
+ * provided with the distribution.
17
+ *
18
+ * THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
19
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22
+ * <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
29
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
+ * SUCH DAMAGE.
31
+ */
32
+
33
+ #include <string.h>
34
+ #include <stdlib.h>
35
+ #include <inttypes.h>
36
+ #include <limits.h>
37
+ #include <math.h>
38
+
39
+ #include "msgpuck.h"
40
+ #include "test.h"
41
+
42
+ #define BUF_MAXLEN ((1L << 18) - 1)
43
+ #define STRBIN_MAXLEN (BUF_MAXLEN - 10)
44
+
45
+ static char buf[BUF_MAXLEN + 1];
46
+ static char str[STRBIN_MAXLEN];
47
+ static char *data = buf + 1; /* use unaligned address to fail early */
48
+
49
+ #define header() note("*** %s ***", __func__)
50
+ #define footer() note("*** %s: done ***", __func__)
51
+
52
+ #define SCALAR(x) x
53
+ #define COMPLEX(x)
54
+
55
+ #define DEFINE_TEST(_type, _complex, _v, _r, _rl) ({ \
56
+ const char *d1 = mp_encode_##_type(data, (_v)); \
57
+ const char *d2 = data; \
58
+ _complex(const char *d3 = data); \
59
+ _complex(const char *d4 = data); \
60
+ note(""#_type" "#_v""); \
61
+ is(mp_check_##_type(data, d1), 0, "mp_check_"#_type"("#_v") == 0"); \
62
+ is(mp_decode_##_type(&d2), (_v), "mp_decode(mp_encode("#_v")) == "#_v);\
63
+ _complex(mp_next(&d3)); \
64
+ _complex(ok(!mp_check(&d4, d3 + _rl), "mp_check("#_v")")); \
65
+ is((d1 - data), (_rl), "len(mp_encode_"#_type"("#_v")"); \
66
+ is(d1, d2, "len(mp_decode_"#_type"("#_v"))"); \
67
+ _complex(is(d1, d3, "len(mp_next_"#_type"("#_v"))")); \
68
+ _complex(is(d1, d4, "len(mp_check_"#_type"("#_v"))")); \
69
+ is(mp_sizeof_##_type(_v), _rl, "mp_sizeof_"#_type"("#_v")"); \
70
+ is(memcmp(data, (_r), (_rl)), 0, "mp_encode("#_v") == "#_r); \
71
+ })
72
+
73
+
74
+ #define DEFINE_TEST_STRBIN(_type, _vl) ({ \
75
+ note(""#_type" len="#_vl""); \
76
+ char *s1 = str; \
77
+ for (uint32_t i = 0; i < _vl; i++) { \
78
+ s1[i] = 'a' + i % 26; \
79
+ } \
80
+ const char *d1 = mp_encode_##_type(data, s1, _vl); \
81
+ const char *d2; \
82
+ uint32_t len2; \
83
+ d2 = data; \
84
+ const char *s2 = mp_decode_##_type(&d2, &len2); \
85
+ is(_vl, len2, "len(mp_decode_"#_type"(x, %u))", _vl); \
86
+ d2 = data; \
87
+ (void) mp_decode_strbin(&d2, &len2); \
88
+ is(_vl, len2, "len(mp_decode_strbin(x, %u))", _vl); \
89
+ const char *d3 = data; \
90
+ mp_next(&d3); \
91
+ const char *d4 = data; \
92
+ ok(!mp_check(&d4, d3 + _vl), \
93
+ "mp_check_"#_type"(mp_encode_"#_type"(x, "#_vl"))"); \
94
+ is(d1, d2, "len(mp_decode_"#_type"(x, "#_vl")"); \
95
+ is(d1, d3, "len(mp_next_"#_type"(x, "#_vl")"); \
96
+ is(d1, d4, "len(mp_check_"#_type"(x, "#_vl")"); \
97
+ is(mp_sizeof_##_type(_vl), (uint32_t) (d1 - data), \
98
+ "mp_sizeof_"#_type"("#_vl")"); \
99
+ is(memcmp(s1, s2, _vl), 0, "mp_encode_"#_type"(x, "#_vl") == x"); \
100
+ })
101
+
102
+ #define test_uint(...) DEFINE_TEST(uint, SCALAR, __VA_ARGS__)
103
+ #define test_int(...) DEFINE_TEST(int, SCALAR, __VA_ARGS__)
104
+ #define test_bool(...) DEFINE_TEST(bool, SCALAR, __VA_ARGS__)
105
+ #define test_float(...) DEFINE_TEST(float, SCALAR, __VA_ARGS__)
106
+ #define test_double(...) DEFINE_TEST(double, SCALAR, __VA_ARGS__)
107
+ #define test_strl(...) DEFINE_TEST(strl, COMPLEX, __VA_ARGS__)
108
+ #define test_binl(...) DEFINE_TEST(binl, COMPLEX, __VA_ARGS__)
109
+ #define test_array(...) DEFINE_TEST(array, COMPLEX, __VA_ARGS__)
110
+ #define test_map(...) DEFINE_TEST(map, COMPLEX, __VA_ARGS__)
111
+ #define test_str(...) DEFINE_TEST_STRBIN(str, __VA_ARGS__)
112
+ #define test_bin(...) DEFINE_TEST_STRBIN(bin, __VA_ARGS__)
113
+
114
+ static int
115
+ test_uints(void)
116
+ {
117
+ plan(135);
118
+ header();
119
+
120
+ test_uint(0U, "\x00", 1);
121
+ test_uint(1U, "\x01", 1);
122
+ test_uint(0x7eU, "\x7e", 1);
123
+ test_uint(0x7fU, "\x7f", 1);
124
+
125
+ test_uint(0x80U, "\xcc\x80", 2);
126
+ test_uint(0xfeU, "\xcc\xfe", 2);
127
+ test_uint(0xffU, "\xcc\xff", 2);
128
+
129
+ test_uint(0xfffeU, "\xcd\xff\xfe", 3);
130
+ test_uint(0xffffU, "\xcd\xff\xff", 3);
131
+
132
+ test_uint(0x10000U, "\xce\x00\x01\x00\x00", 5);
133
+ test_uint(0xfffffffeU, "\xce\xff\xff\xff\xfe", 5);
134
+ test_uint(0xffffffffU, "\xce\xff\xff\xff\xff", 5);
135
+
136
+ test_uint(0x100000000ULL,
137
+ "\xcf\x00\x00\x00\x01\x00\x00\x00\x00", 9);
138
+ test_uint(0xfffffffffffffffeULL,
139
+ "\xcf\xff\xff\xff\xff\xff\xff\xff\xfe", 9);
140
+ test_uint(0xffffffffffffffffULL,
141
+ "\xcf\xff\xff\xff\xff\xff\xff\xff\xff", 9);
142
+
143
+ footer();
144
+ return check_plan();
145
+ }
146
+
147
+ static int
148
+ test_ints(void)
149
+ {
150
+ plan(153);
151
+ header();
152
+
153
+ test_int(-0x01, "\xff", 1);
154
+ test_int(-0x1e, "\xe2", 1);
155
+ test_int(-0x1f, "\xe1", 1);
156
+ test_int(-0x20, "\xe0", 1);
157
+ test_int(-0x21, "\xd0\xdf", 2);
158
+
159
+ test_int(-0x7f, "\xd0\x81", 2);
160
+ test_int(-0x80, "\xd0\x80", 2);
161
+
162
+ test_int(-0x81, "\xd1\xff\x7f", 3);
163
+ test_int(-0x7fff, "\xd1\x80\x01", 3);
164
+ test_int(-0x8000, "\xd1\x80\x00", 3);
165
+
166
+ test_int(-0x8001, "\xd2\xff\xff\x7f\xff", 5);
167
+ test_int(-0x7fffffff, "\xd2\x80\x00\x00\x01", 5);
168
+ test_int(-0x80000000LL, "\xd2\x80\x00\x00\x00", 5);
169
+
170
+ test_int(-0x80000001LL,
171
+ "\xd3\xff\xff\xff\xff\x7f\xff\xff\xff", 9);
172
+ test_int(-0x80000001LL,
173
+ "\xd3\xff\xff\xff\xff\x7f\xff\xff\xff", 9);
174
+ test_int(-0x7fffffffffffffffLL,
175
+ "\xd3\x80\x00\x00\x00\x00\x00\x00\x01", 9);
176
+ test_int((int64_t)-0x8000000000000000LL,
177
+ "\xd3\x80\x00\x00\x00\x00\x00\x00\x00", 9);
178
+
179
+ footer();
180
+ return check_plan();
181
+ }
182
+
183
+ static int
184
+ test_bools(void)
185
+ {
186
+ plan(18);
187
+ header();
188
+
189
+ test_bool(true, "\xc3", 1);
190
+ test_bool(false, "\xc2", 1);
191
+
192
+ footer();
193
+ return check_plan();
194
+ }
195
+
196
+ static int
197
+ test_floats(void)
198
+ {
199
+ plan(27);
200
+ header();
201
+
202
+ test_float((float) 1.0, "\xca\x3f\x80\x00\x00", 5);
203
+ test_float((float) 3.141593, "\xca\x40\x49\x0f\xdc", 5);
204
+ test_float((float) -1e38f, "\xca\xfe\x96\x76\x99", 5);
205
+
206
+ footer();
207
+ return check_plan();
208
+ }
209
+
210
+ static int
211
+ test_doubles(void)
212
+ {
213
+ plan(27);
214
+ header();
215
+
216
+ test_double((double) 1.0,
217
+ "\xcb\x3f\xf0\x00\x00\x00\x00\x00\x00", 9);
218
+ test_double((double) 3.141592653589793,
219
+ "\xcb\x40\x09\x21\xfb\x54\x44\x2d\x18", 9);
220
+ test_double((double) -1e99,
221
+ "\xcb\xd4\x7d\x42\xae\xa2\x87\x9f\x2e", 9);
222
+
223
+ footer();
224
+ return check_plan();
225
+ }
226
+
227
+ static int
228
+ test_nils(void)
229
+ {
230
+ plan(6);
231
+ header();
232
+
233
+ const char *d1 = mp_encode_nil(data);
234
+ const char *d2 = data;
235
+ const char *d3 = data;
236
+ const char *d4 = data;
237
+ note("nil");
238
+ mp_decode_nil(&d2);
239
+ mp_next(&d3);
240
+ ok(!mp_check(&d4, d3 + 1), "mp_check_nil()");
241
+ is((d1 - data), 1, "len(mp_encode_nil() == 1");
242
+ is(d1, d2, "len(mp_decode_nil()) == 1");
243
+ is(d1, d3, "len(mp_next_nil()) == 1");
244
+ is(d1, d4, "len(mp_check_nil()) == 1");
245
+ is(mp_sizeof_nil(), 1, "mp_sizeof_nil() == 1");
246
+
247
+ footer();
248
+ return check_plan();
249
+ }
250
+
251
+ static int
252
+ test_arrays(void)
253
+ {
254
+ plan(54);
255
+ header();
256
+
257
+ test_array(0, "\x90", 1);
258
+ test_array(1, "\x91", 1);
259
+ test_array(15, "\x9f", 1);
260
+ test_array(16, "\xdc\x00\x10", 3);
261
+ test_array(0xfffe, "\xdc\xff\xfe", 3);
262
+ test_array(0xffff, "\xdc\xff\xff", 3);
263
+ test_array(0x10000, "\xdd\x00\x01\x00\x00", 5);
264
+ test_array(0xfffffffeU, "\xdd\xff\xff\xff\xfe", 5);
265
+ test_array(0xffffffffU, "\xdd\xff\xff\xff\xff", 5);
266
+
267
+ footer();
268
+ return check_plan();
269
+ }
270
+
271
+ static int
272
+ test_maps(void)
273
+ {
274
+ plan(54);
275
+ header();
276
+
277
+ test_map(0, "\x80", 1);
278
+ test_map(1, "\x81", 1);
279
+ test_map(15, "\x8f", 1);
280
+ test_map(16, "\xde\x00\x10", 3);
281
+ test_map(0xfffe, "\xde\xff\xfe", 3);
282
+ test_map(0xffff, "\xde\xff\xff", 3);
283
+ test_map(0x10000, "\xdf\x00\x01\x00\x00", 5);
284
+ test_map(0xfffffffeU, "\xdf\xff\xff\xff\xfe", 5);
285
+ test_map(0xffffffffU, "\xdf\xff\xff\xff\xff", 5);
286
+
287
+ footer();
288
+ return check_plan();
289
+ }
290
+
291
+ static int
292
+ test_strls(void)
293
+ {
294
+ plan(78);
295
+ header();
296
+
297
+ test_strl(0x00U, "\xa0", 1);
298
+ test_strl(0x01U, "\xa1", 1);
299
+ test_strl(0x1eU, "\xbe", 1);
300
+ test_strl(0x1fU, "\xbf", 1);
301
+
302
+ test_strl(0x20U, "\xd9\x20", 2);
303
+ test_strl(0xfeU, "\xd9\xfe", 2);
304
+ test_strl(0xffU, "\xd9\xff", 2);
305
+
306
+ test_strl(0x0100U, "\xda\x01\x00", 3);
307
+ test_strl(0xfffeU, "\xda\xff\xfe", 3);
308
+ test_strl(0xffffU, "\xda\xff\xff", 3);
309
+
310
+ test_strl(0x00010000U, "\xdb\x00\x01\x00\x00", 5);
311
+ test_strl(0xfffffffeU, "\xdb\xff\xff\xff\xfe", 5);
312
+ test_strl(0xffffffffU, "\xdb\xff\xff\xff\xff", 5);
313
+
314
+ footer();
315
+ return check_plan();
316
+ }
317
+
318
+ static int
319
+ test_binls(void)
320
+ {
321
+ plan(78);
322
+ header();
323
+
324
+ test_binl(0x00U, "\xc4\x00", 2);
325
+ test_binl(0x01U, "\xc4\x01", 2);
326
+ test_binl(0x1eU, "\xc4\x1e", 2);
327
+ test_binl(0x1fU, "\xc4\x1f", 2);
328
+
329
+ test_binl(0x20U, "\xc4\x20", 2);
330
+ test_binl(0xfeU, "\xc4\xfe", 2);
331
+ test_binl(0xffU, "\xc4\xff", 2);
332
+
333
+ test_binl(0x0100U, "\xc5\x01\x00", 3);
334
+ test_binl(0xfffeU, "\xc5\xff\xfe", 3);
335
+ test_binl(0xffffU, "\xc5\xff\xff", 3);
336
+
337
+ test_binl(0x00010000U, "\xc6\x00\x01\x00\x00", 5);
338
+ test_binl(0xfffffffeU, "\xc6\xff\xff\xff\xfe", 5);
339
+ test_binl(0xffffffffU, "\xc6\xff\xff\xff\xff", 5);
340
+
341
+ footer();
342
+ return check_plan();
343
+ }
344
+
345
+ static int
346
+ test_strs(void)
347
+ {
348
+ plan(96);
349
+ header();
350
+
351
+ test_str(0x01);
352
+ test_str(0x1e);
353
+ test_str(0x1f);
354
+ test_str(0x20);
355
+ test_str(0xfe);
356
+ test_str(0xff);
357
+ test_str(0x100);
358
+ test_str(0x101);
359
+ test_str(0xfffe);
360
+ test_str(0xffff);
361
+ test_str(0x10000);
362
+ test_str(0x10001);
363
+
364
+ footer();
365
+ return check_plan();
366
+ }
367
+
368
+ static int
369
+ test_bins(void)
370
+ {
371
+ plan(96);
372
+ header();
373
+
374
+ test_bin(0x01);
375
+ test_bin(0x1e);
376
+ test_bin(0x1f);
377
+ test_bin(0x20);
378
+ test_bin(0xfe);
379
+ test_bin(0xff);
380
+ test_bin(0x100);
381
+ test_bin(0x101);
382
+ test_bin(0xfffe);
383
+ test_bin(0xffff);
384
+ test_bin(0x10000);
385
+ test_bin(0x10001);
386
+
387
+ footer();
388
+ return check_plan();
389
+ }
390
+
391
+ static void
392
+ test_next_on_array(uint32_t count)
393
+ {
394
+ note("next/check on array(%u)", count);
395
+ char *d1 = data;
396
+ d1 = mp_encode_array(d1, count);
397
+ for (uint32_t i = 0; i < count; i++) {
398
+ d1 = mp_encode_uint(d1, i % 0x7f); /* one byte */
399
+ }
400
+ uint32_t len = count + mp_sizeof_array(count);
401
+ const char *d2 = data;
402
+ const char *d3 = data;
403
+ ok(!mp_check(&d2, data + BUF_MAXLEN), "mp_check(array %u))", count);
404
+ is((d1 - data), (ptrdiff_t)len, "len(array %u) == %u", count, len);
405
+ is((d2 - data), (ptrdiff_t)len, "len(mp_check(array %u)) == %u", count, len);
406
+ mp_next(&d3);
407
+ is((d3 - data), (ptrdiff_t)len, "len(mp_next(array %u)) == %u", count, len);
408
+ }
409
+
410
+ static int
411
+ test_next_on_arrays(void)
412
+ {
413
+ plan(52);
414
+ header();
415
+
416
+ test_next_on_array(0x00);
417
+ test_next_on_array(0x01);
418
+ test_next_on_array(0x0f);
419
+ test_next_on_array(0x10);
420
+ test_next_on_array(0x11);
421
+ test_next_on_array(0xfe);
422
+ test_next_on_array(0xff);
423
+ test_next_on_array(0x100);
424
+ test_next_on_array(0x101);
425
+ test_next_on_array(0xfffe);
426
+ test_next_on_array(0xffff);
427
+ test_next_on_array(0x10000);
428
+ test_next_on_array(0x10001);
429
+
430
+ footer();
431
+ return check_plan();
432
+ }
433
+
434
+ static void
435
+ test_next_on_map(uint32_t count)
436
+ {
437
+ note("next/check on map(%u)", count);
438
+ char *d1 = data;
439
+ d1 = mp_encode_map(d1, count);
440
+ for (uint32_t i = 0; i < 2 * count; i++) {
441
+ d1 = mp_encode_uint(d1, i % 0x7f); /* one byte */
442
+ }
443
+ uint32_t len = 2 * count + mp_sizeof_map(count);
444
+ const char *d2 = data;
445
+ const char *d3 = data;
446
+ ok(!mp_check(&d2, data + BUF_MAXLEN), "mp_check(map %u))", count);
447
+ is((d1 - data), (ptrdiff_t)len, "len(map %u) == %u", count, len);
448
+ is((d2 - data), (ptrdiff_t)len, "len(mp_check(map %u)) == %u", count, len);
449
+ mp_next(&d3);
450
+ is((d3 - data), (ptrdiff_t)len, "len(mp_next(map %u)) == %u", count, len);
451
+ }
452
+
453
+ static int
454
+ test_next_on_maps(void)
455
+ {
456
+ plan(52);
457
+ header();
458
+
459
+ test_next_on_map(0x00);
460
+ test_next_on_map(0x01);
461
+ test_next_on_map(0x0f);
462
+ test_next_on_map(0x10);
463
+ test_next_on_map(0x11);
464
+ test_next_on_map(0xfe);
465
+ test_next_on_map(0xff);
466
+ test_next_on_map(0x100);
467
+ test_next_on_map(0x101);
468
+ test_next_on_map(0xfffe);
469
+ test_next_on_map(0xffff);
470
+ test_next_on_map(0x10000);
471
+ test_next_on_map(0x10001);
472
+
473
+ footer();
474
+ return check_plan();
475
+ }
476
+
477
+ static void
478
+ test_compare_uint(uint64_t a, uint64_t b)
479
+ {
480
+ char bufa[9];
481
+ char bufb[9];
482
+ mp_encode_uint(bufa, a);
483
+ mp_encode_uint(bufb, b);
484
+ int r = mp_compare_uint(bufa, bufb);
485
+ if (a < b) {
486
+ ok(r < 0, "mp_compare_uint(%"PRIu64", %" PRIu64 ") < 0", a, b);
487
+ } else if (a > b) {
488
+ ok(r > 0, "mp_compare_uint(%"PRIu64", %" PRIu64") > 0", a, b);
489
+ } else {
490
+ ok(r == 0, "mp_compare_uint(%"PRIu64", %"PRIu64") == 0", a, b);
491
+ }
492
+ }
493
+
494
+ static int
495
+ test_compare_uints(void)
496
+ {
497
+ plan(227);
498
+ header();
499
+
500
+ test_compare_uint(0, 0);
501
+ test_compare_uint(0, 0);
502
+
503
+ uint64_t nums[] = {
504
+ 0, 1, 0x7eU, 0x7fU, 0x80U, 0xfeU, 0xffU, 0xfffeU, 0xffffU,
505
+ 0x10000U, 0xfffffffeU, 0xffffffffU, 0x100000000ULL,
506
+ 0xfffffffffffffffeULL, 0xffffffffffffffffULL
507
+ };
508
+
509
+ int count = sizeof(nums) / sizeof(*nums);
510
+ for (int i = 0; i < count; i++) {
511
+ for (int j = 0; j < count; j++) {
512
+ test_compare_uint(nums[i], nums[j]);
513
+ }
514
+ }
515
+
516
+ footer();
517
+ return check_plan();
518
+ }
519
+
520
+ static bool
521
+ fequal(float a, float b)
522
+ {
523
+ return a > b ? a - b < 1e-5f : b - a < 1e-5f;
524
+ }
525
+
526
+ static bool
527
+ dequal(double a, double b)
528
+ {
529
+ return a > b ? a - b < 1e-10 : b - a < 1e-10;
530
+ }
531
+
532
+ static int
533
+ test_format(void)
534
+ {
535
+ plan(282);
536
+ header();
537
+
538
+ const size_t buf_size = 1024;
539
+ char buf[buf_size];
540
+ size_t sz;
541
+ const char *fmt;
542
+ const char *p, *c, *e;
543
+ uint32_t len = 0;
544
+
545
+ fmt = "%d %u %i %ld %lu %li %lld %llu %lli"
546
+ "%hd %hu %hi %hhd %hhu %hhi";
547
+ sz = mp_format(buf, buf_size, fmt, 1, 2, 3,
548
+ (long)4, (long)5, (long)6,
549
+ (long long)7, (long long)8, (long long)9,
550
+ (short)10, (short)11, (short)12,
551
+ (char)13, (char)14, (char)15);
552
+ p = buf;
553
+ for (unsigned i = 0; i < 15; i++) {
554
+ ok(mp_typeof(*p) == MP_UINT, "Test type on step %d", i);
555
+ ok(mp_decode_uint(&p) == i + 1, "Test value on step %d", i);
556
+ }
557
+ sz = mp_format(buf, buf_size, fmt, -1, -2, -3,
558
+ (long)-4, (long)-5, (long)-6,
559
+ (long long)-7, (long long)-8, (long long)-9,
560
+ (short)-10, (unsigned short)-11, (short)-12,
561
+ (signed char)-13, (unsigned char)-14, (signed char)-15);
562
+ p = buf;
563
+ for (int i = 0; i < 15; i++) {
564
+ uint64_t expects[5] = { UINT_MAX - 1,
565
+ ULONG_MAX - 4,
566
+ ULLONG_MAX - 7,
567
+ USHRT_MAX - 10,
568
+ UCHAR_MAX - 13 };
569
+ if (i % 3 == 1) {
570
+ ok(mp_typeof(*p) == MP_UINT, "Test type on step %d", i);
571
+ ok(mp_decode_uint(&p) == expects[i / 3],
572
+ "Test value on step %d", i);
573
+ } else {
574
+ ok(mp_typeof(*p) == MP_INT, "Test type on step %d", i);
575
+ ok(mp_decode_int(&p) == - i - 1,
576
+ "Test value on step %d", i);
577
+ }
578
+ }
579
+
580
+ char data1[32];
581
+ char *data1_end = data1;
582
+ data1_end = mp_encode_array(data1_end, 2);
583
+ data1_end = mp_encode_str(data1_end, "ABC", 3);
584
+ data1_end = mp_encode_uint(data1_end, 11);
585
+ size_t data1_len = data1_end - data1;
586
+ assert(data1_len <= sizeof(data1));
587
+
588
+ char data2[32];
589
+ char *data2_end = data2;
590
+ data2_end = mp_encode_int(data2_end, -1234567890);
591
+ data2_end = mp_encode_str(data2_end, "DEFGHIJKLMN", 11);
592
+ data2_end = mp_encode_uint(data2_end, 321);
593
+ size_t data2_len = data2_end - data2;
594
+ assert(data2_len <= sizeof(data2));
595
+
596
+ fmt = "%d NIL [%d %b %b] this is test"
597
+ "[%d %%%% [[ %d {%s %f %% %.*s %lf %.*s NIL}"
598
+ "%p %d %.*p ]] %d%d%d]";
599
+ #define TEST_PARAMS 0, 1, true, false, -1, 2, \
600
+ "flt", 0.1, 6, "double#ignored", 0.2, 0, "ignore", \
601
+ data1, 3, data2_len, data2, 4, 5, 6
602
+ sz = mp_format(buf, buf_size, fmt, TEST_PARAMS);
603
+ p = buf;
604
+ e = buf + sz;
605
+
606
+ c = p;
607
+ ok(mp_check(&c, e) == 0, "check");
608
+ ok(mp_typeof(*p) == MP_UINT, "type");
609
+ ok(mp_decode_uint(&p) == 0, "decode");
610
+
611
+ c = p;
612
+ ok(mp_check(&c, e) == 0, "check");
613
+ ok(mp_typeof(*p) == MP_NIL, "type");
614
+ mp_decode_nil(&p);
615
+
616
+ c = p;
617
+ ok(mp_check(&c, e) == 0, "check");
618
+ ok(mp_typeof(*p) == MP_ARRAY, "type");
619
+ ok(mp_decode_array(&p) == 3, "decode");
620
+
621
+ c = p;
622
+ ok(mp_check(&c, e) == 0, "check");
623
+ ok(mp_typeof(*p) == MP_UINT, "type");
624
+ ok(mp_decode_uint(&p) == 1, "decode");
625
+
626
+ c = p;
627
+ ok(mp_check(&c, e) == 0, "check");
628
+ ok(mp_typeof(*p) == MP_BOOL, "type");
629
+ ok(mp_decode_bool(&p) == true, "decode");
630
+
631
+ c = p;
632
+ ok(mp_check(&c, e) == 0, "check");
633
+ ok(mp_typeof(*p) == MP_BOOL, "type");
634
+ ok(mp_decode_bool(&p) == false, "decode");
635
+
636
+ c = p;
637
+ ok(mp_check(&c, e) == 0, "check");
638
+ ok(mp_typeof(*p) == MP_ARRAY, "type");
639
+ ok(mp_decode_array(&p) == 5, "decode");
640
+
641
+ c = p;
642
+ ok(mp_check(&c, e) == 0, "check");
643
+ ok(mp_typeof(*p) == MP_INT, "type");
644
+ ok(mp_decode_int(&p) == -1, "decode");
645
+
646
+ c = p;
647
+ ok(mp_check(&c, e) == 0, "check");
648
+ ok(mp_typeof(*p) == MP_ARRAY, "type");
649
+ ok(mp_decode_array(&p) == 1, "decode");
650
+
651
+ c = p;
652
+ ok(mp_check(&c, e) == 0, "check");
653
+ ok(mp_typeof(*p) == MP_ARRAY, "type");
654
+ ok(mp_decode_array(&p) == 5, "decode");
655
+
656
+ c = p;
657
+ ok(mp_check(&c, e) == 0, "check");
658
+ ok(mp_typeof(*p) == MP_UINT, "type");
659
+ ok(mp_decode_uint(&p) == 2, "decode");
660
+
661
+ c = p;
662
+ ok(mp_check(&c, e) == 0, "check");
663
+ ok(mp_typeof(*p) == MP_MAP, "type");
664
+ ok(mp_decode_map(&p) == 3, "decode");
665
+
666
+ c = p;
667
+ ok(mp_check(&c, e) == 0, "check");
668
+ ok(mp_typeof(*p) == MP_STR, "type");
669
+ c = mp_decode_str(&p, &len);
670
+ ok(len == 3, "decode");
671
+ ok(memcmp(c, "flt", 3) == 0, "compare");
672
+
673
+ c = p;
674
+ ok(mp_check(&c, e) == 0, "check");
675
+ ok(mp_typeof(*p) == MP_FLOAT, "type");
676
+ ok(fequal(mp_decode_float(&p), 0.1), "decode");
677
+
678
+ c = p;
679
+ ok(mp_check(&c, e) == 0, "check");
680
+ ok(mp_typeof(*p) == MP_STR, "type");
681
+ c = mp_decode_str(&p, &len);
682
+ ok(len == 6, "decode");
683
+ ok(memcmp(c, "double", 6) == 0, "compare");
684
+
685
+ c = p;
686
+ ok(mp_check(&c, e) == 0, "check");
687
+ ok(mp_typeof(*p) == MP_DOUBLE, "type");
688
+ ok(dequal(mp_decode_double(&p), 0.2), "decode");
689
+
690
+ c = p;
691
+ ok(mp_check(&c, e) == 0, "check");
692
+ ok(mp_typeof(*p) == MP_STR, "type");
693
+ c = mp_decode_str(&p, &len);
694
+ ok(len == 0, "decode");
695
+
696
+ c = p;
697
+ ok(mp_check(&c, e) == 0, "check");
698
+ ok(mp_typeof(*p) == MP_NIL, "type");
699
+ mp_decode_nil(&p);
700
+
701
+ c = p;
702
+ ok(mp_check(&c, e) == 0, "check");
703
+ ok(((size_t)(c - p) == data1_len) &&
704
+ memcmp(p, data1, data1_len) == 0, "compare");
705
+ p = c;
706
+
707
+ c = p;
708
+ ok(mp_check(&c, e) == 0, "check");
709
+ ok(mp_typeof(*p) == MP_UINT, "type");
710
+ ok(mp_decode_uint(&p) == 3, "decode");
711
+
712
+ c = p;
713
+ ok(mp_check(&c, e) == 0, "check");
714
+ ok(mp_typeof(*p) == MP_INT, "type");
715
+ ok(mp_decode_int(&p) == -1234567890, "decode");
716
+
717
+ c = p;
718
+ ok(mp_check(&c, e) == 0, "check");
719
+ ok(mp_typeof(*p) == MP_STR, "type");
720
+ c = mp_decode_str(&p, &len);
721
+ ok(len == 11, "decode");
722
+ ok(memcmp(c, "DEFGHIJKLMN", 11) == 0, "compare");
723
+
724
+ c = p;
725
+ ok(mp_check(&c, e) == 0, "check");
726
+ ok(mp_typeof(*p) == MP_UINT, "type");
727
+ ok(mp_decode_uint(&p) == 321, "decode");
728
+
729
+ c = p;
730
+ ok(mp_check(&c, e) == 0, "check");
731
+ ok(mp_typeof(*p) == MP_UINT, "type");
732
+ ok(mp_decode_uint(&p) == 4, "decode");
733
+
734
+ c = p;
735
+ ok(mp_check(&c, e) == 0, "check");
736
+ ok(mp_typeof(*p) == MP_UINT, "type");
737
+ ok(mp_decode_uint(&p) == 5, "decode");
738
+
739
+ c = p;
740
+ ok(mp_check(&c, e) == 0, "check");
741
+ ok(mp_typeof(*p) == MP_UINT, "type");
742
+ ok(mp_decode_uint(&p) == 6, "decode");
743
+
744
+ ok(p == e, "nothing more");
745
+
746
+ ok(sz < 70, "no magic detected");
747
+
748
+ for (size_t lim = 0; lim <= 70; lim++) {
749
+ memset(buf, 0, buf_size);
750
+ size_t test_sz = mp_format(buf, lim, fmt, TEST_PARAMS);
751
+ ok(test_sz == sz, "return value on step %d", (int)lim);
752
+ bool all_zero = true;
753
+ for(size_t z = lim; z < buf_size; z++)
754
+ all_zero = all_zero && (buf[z] == 0);
755
+ ok(all_zero, "buffer overflow on step %d", (int)lim);
756
+
757
+ }
758
+
759
+ #undef TEST_PARAMS
760
+
761
+ footer();
762
+ return check_plan();
763
+ }
764
+
765
+ int
766
+ test_mp_print()
767
+ {
768
+ plan(10);
769
+ header();
770
+
771
+ char msgpack[128];
772
+ char *d = msgpack;
773
+ d = mp_encode_array(d, 6);
774
+ d = mp_encode_int(d, -5);
775
+ d = mp_encode_uint(d, 42);
776
+ d = mp_encode_str(d, "kill bill", 9);
777
+ d = mp_encode_map(d, 6);
778
+ d = mp_encode_str(d, "bool true", 9);
779
+ d = mp_encode_bool(d, true);
780
+ d = mp_encode_str(d, "bool false", 10);
781
+ d = mp_encode_bool(d, false);
782
+ d = mp_encode_str(d, "null", 4);
783
+ d = mp_encode_nil(d);
784
+ d = mp_encode_str(d, "float", 5);
785
+ d = mp_encode_float(d, 3.14);
786
+ d = mp_encode_str(d, "double", 6);
787
+ d = mp_encode_double(d, 3.14);
788
+ d = mp_encode_uint(d, 100);
789
+ d = mp_encode_uint(d, 500);
790
+ *d++ = 0xd4; /* let's pack smallest fixed ext */
791
+ *d++ = 0;
792
+ *d++ = 0;
793
+ char bin[] = "\x12test\x34\b\t\n\"bla\\-bla\"\f\r";
794
+ d = mp_encode_bin(d, bin, sizeof(bin));
795
+ assert(d <= msgpack + sizeof(msgpack));
796
+
797
+ const char *expected =
798
+ "[-5, 42, \"kill bill\", "
799
+ "{\"bool true\": true, \"bool false\": false, \"null\": null, "
800
+ "\"float\": 3.14, \"double\": 3.14, 100: 500}, undefined, "
801
+ "\"\\u0012test4\\b\\t\\n\\\"bla\\\\-bla\\\"\\f\\r\\u0000\"]";
802
+ int esize = strlen(expected);
803
+
804
+ char result[256];
805
+
806
+ int fsize = mp_snprint(result, sizeof(result), msgpack);
807
+ ok(fsize == esize, "mp_snprint return value");
808
+ ok(strcmp(result, expected) == 0, "mp_snprint result");
809
+
810
+ fsize = mp_snprint(NULL, 0, msgpack);
811
+ ok(fsize == esize, "mp_snprint limit = 0");
812
+
813
+ fsize = mp_snprint(result, 1, msgpack);
814
+ ok(fsize == esize && result[0] == '\0', "mp_snprint limit = 1");
815
+
816
+ fsize = mp_snprint(result, 2, msgpack);
817
+ ok(fsize == esize && result[1] == '\0', "mp_snprint limit = 2");
818
+
819
+ fsize = mp_snprint(result, esize, msgpack);
820
+ ok(fsize == esize && result[esize - 1] == '\0',
821
+ "mp_snprint limit = expected");
822
+
823
+ fsize = mp_snprint(result, esize + 1, msgpack);
824
+ ok(fsize == esize && result[esize] == '\0',
825
+ "mp_snprint limit = expected + 1");
826
+
827
+ FILE *tmpf = tmpfile();
828
+ if (tmpf != NULL) {
829
+ int fsize = mp_fprint(tmpf, msgpack);
830
+ ok(fsize == esize, "mp_fprint return value");
831
+ (void) rewind(tmpf);
832
+ int rsize = fread(result, 1, sizeof(result), tmpf);
833
+ ok(rsize == esize && memcmp(result, expected, esize) == 0,
834
+ "mp_fprint result");
835
+ fclose(tmpf);
836
+ }
837
+
838
+ /* stdin is read-only */
839
+ int rc = mp_fprint(stdin, msgpack);
840
+ is(rc, -1, "mp_fprint I/O error");
841
+
842
+ footer();
843
+ return check_plan();
844
+ }
845
+
846
+ int
847
+ test_mp_check()
848
+ {
849
+ plan(65);
850
+ header();
851
+
852
+ #define invalid(data, fmt, ...) ({ \
853
+ const char *p = data; \
854
+ isnt(mp_check(&p, p + sizeof(data) - 1), 0, fmt, ## __VA_ARGS__); \
855
+ });
856
+
857
+ /* fixmap */
858
+ invalid("\x81", "invalid fixmap 1");
859
+ invalid("\x81\x01", "invalid fixmap 2");
860
+ invalid("\x8f\x01", "invalid fixmap 3");
861
+
862
+ /* fixarray */
863
+ invalid("\x91", "invalid fixarray 1");
864
+ invalid("\x92\x01", "invalid fixarray 2");
865
+ invalid("\x9f\x01", "invalid fixarray 3");
866
+
867
+ /* fixstr */
868
+ invalid("\xa1", "invalid fixstr 1");
869
+ invalid("\xa2\x00", "invalid fixstr 2");
870
+ invalid("\xbf\x00", "invalid fixstr 3");
871
+
872
+ /* bin8 */
873
+ invalid("\xc4", "invalid bin8 1");
874
+ invalid("\xc4\x01", "invalid bin8 2");
875
+
876
+ /* bin16 */
877
+ invalid("\xc5", "invalid bin16 1");
878
+ invalid("\xc5\x00\x01", "invalid bin16 2");
879
+
880
+ /* bin32 */
881
+ invalid("\xc6", "invalid bin32 1");
882
+ invalid("\xc6\x00\x00\x00\x01", "invalid bin32 2");
883
+
884
+ /* ext8 */
885
+ invalid("\xc7", "invalid ext8 1");
886
+ invalid("\xc7\x00", "invalid ext8 2");
887
+ invalid("\xc7\x01\xff", "invalid ext8 3");
888
+ invalid("\xc7\x02\xff\x00", "invalid ext8 4");
889
+
890
+ /* ext16 */
891
+ invalid("\xc8", "invalid ext16 1");
892
+ invalid("\xc8\x00\x00", "invalid ext16 2");
893
+ invalid("\xc8\x00\x01\xff", "invalid ext16 3");
894
+ invalid("\xc8\x00\x02\xff\x00", "invalid ext16 4");
895
+
896
+ /* ext32 */
897
+ invalid("\xc9", "invalid ext32 1");
898
+ invalid("\xc9\x00\x00\x00\x00", "invalid ext32 2");
899
+ invalid("\xc9\x00\x00\x00\x01\xff", "invalid ext32 3");
900
+ invalid("\xc9\x00\x00\x00\x02\xff\x00", "invalid ext32 4");
901
+
902
+ /* float32 */
903
+ invalid("\xca", "invalid float32 1");
904
+ invalid("\xca\x00\x00\x00", "invalid float32 2");
905
+
906
+ /* float64 */
907
+ invalid("\xcb", "invalid float64 1");
908
+ invalid("\xcb\x00\x00\x00\x00\x00\x00\x00", "invalid float64 2");
909
+
910
+ /* uint8 */
911
+ invalid("\xcc", "invalid uint8 1");
912
+
913
+ /* uint16 */
914
+ invalid("\xcd\x00", "invalid uint16 1");
915
+
916
+ /* uint32 */
917
+ invalid("\xce\x00\x00\x00", "invalid uint32 1");
918
+
919
+ /* uint64 */
920
+ invalid("\xcf\x00\x00\x00\x00\x00\x00\x00", "invalid uint64 1");
921
+
922
+ /* int8 */
923
+ invalid("\xd0", "invalid int8 1");
924
+
925
+ /* int16 */
926
+ invalid("\xd1\x00", "invalid int16 1");
927
+
928
+ /* int32 */
929
+ invalid("\xd2\x00\x00\x00", "invalid int32 1");
930
+
931
+ /* int64 */
932
+ invalid("\xd3\x00\x00\x00\x00\x00\x00\x00", "invalid int64 1");
933
+
934
+ /* fixext8 */
935
+ invalid("\xd4", "invalid fixext8 1");
936
+ invalid("\xd4\x05", "invalid fixext8 2");
937
+
938
+ /* fixext16 */
939
+ invalid("\xd5", "invalid fixext16 1");
940
+ invalid("\xd5\x05\x05", "invalid fixext16 2");
941
+
942
+ /* fixext32 */
943
+ invalid("\xd6", "invalid fixext32 1");
944
+ invalid("\xd6\x00\x00\x05\x05", "invalid fixext32 2");
945
+
946
+ /* fixext64 */
947
+ invalid("\xd7", "invalid fixext64 1");
948
+ invalid("\xd7\x00\x00\x00\x00\x00\x00\x05\x05", "invalid fixext64 2");
949
+
950
+ /* fixext128 */
951
+ invalid("\xd8", "invalid fixext128 1");
952
+ invalid("\xd8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
953
+ "\x00\x05\x05", "invalid fixext128 2");
954
+
955
+ /* str8 */
956
+ invalid("\xd9", "invalid str8 1");
957
+ invalid("\xd9\x01", "invalid str8 2");
958
+
959
+ /* str16 */
960
+ invalid("\xda", "invalid str16 1");
961
+ invalid("\xda\x00\x01", "invalid str16 2");
962
+
963
+ /* str32 */
964
+ invalid("\xdb", "invalid str32 1");
965
+ invalid("\xdb\x00\x00\x00\x01", "invalid str32 2");
966
+
967
+ /* array16 */
968
+ invalid("\xdc", "invalid array16 1");
969
+ invalid("\xdc\x00\x01", "invalid array16 2");
970
+
971
+ /* array32 */
972
+ invalid("\xdd", "invalid array32 1");
973
+ invalid("\xdd\x00\x00\x00\x01", "invalid array32 2");
974
+
975
+ /* map16 */
976
+ invalid("\xde", "invalid map16 1");
977
+ invalid("\xde\x00\x01", "invalid map16 2");
978
+ invalid("\xde\x00\x01\x5", "invalid map16 2");
979
+
980
+ /* map32 */
981
+ invalid("\xdf", "invalid map32 1");
982
+ invalid("\xdf\x00\x00\x00\x01", "invalid map32 2");
983
+ invalid("\xdf\x00\x00\x00\x01\x5", "invalid map32 3");
984
+
985
+ footer();
986
+
987
+ return check_plan();
988
+ }
989
+
990
+ #define int_eq(a, b) (((a) - (b)) == 0)
991
+ #define double_eq(a, b) (fabs((a) - (b)) < 1e-15)
992
+
993
+ #define test_read_number(_func, _eq, _type, _mp_type, _val, _success) do { \
994
+ const char *s = #_func "(mp_encode_" #_mp_type "(" #_val "))"; \
995
+ const char *d1 = data; \
996
+ const char *d2 = mp_encode_##_mp_type(data, _val); \
997
+ _type v; \
998
+ int ret = _func(&d1, &v); \
999
+ if (_success) { \
1000
+ is(ret, 0, "%s check success", s); \
1001
+ is(d1, d2, "%s check pos advanced", s); \
1002
+ ok(_eq(v, _val), "%s check result", s); \
1003
+ } else { \
1004
+ is(ret, -1, "%s check fail", s); \
1005
+ is(d1, data, "%s check pos unchanged", s); \
1006
+ } \
1007
+ } while (0)
1008
+
1009
+ #define test_read_int32(...) test_read_number(mp_read_int32, int_eq, int32_t, __VA_ARGS__)
1010
+ #define test_read_int64(...) test_read_number(mp_read_int64, int_eq, int64_t, __VA_ARGS__)
1011
+ #define test_read_double(...) test_read_number(mp_read_double, double_eq, double, __VA_ARGS__)
1012
+
1013
+ static int
1014
+ test_numbers()
1015
+ {
1016
+ plan(96);
1017
+ header();
1018
+
1019
+ test_read_int32(uint, 123, true);
1020
+ test_read_int32(uint, 12345, true);
1021
+ test_read_int32(uint, 2147483647, true);
1022
+ test_read_int32(uint, 2147483648, false);
1023
+ test_read_int32(int, -123, true);
1024
+ test_read_int32(int, -12345, true);
1025
+ test_read_int32(int, -2147483648, true);
1026
+ test_read_int32(int, -2147483649LL, false);
1027
+ test_read_int32(float, -1e2, false);
1028
+ test_read_int32(double, 1.2345, false);
1029
+ test_read_int32(map, 5, false);
1030
+
1031
+ test_read_int64(uint, 123, true);
1032
+ test_read_int64(uint, 12345, true);
1033
+ test_read_int64(uint, 123456789, true);
1034
+ test_read_int64(uint, 9223372036854775807ULL, true);
1035
+ test_read_int64(uint, 9223372036854775808ULL, false);
1036
+ test_read_int64(int, -123, true);
1037
+ test_read_int64(int, -12345, true);
1038
+ test_read_int64(int, -123456789, true);
1039
+ test_read_int64(int, -9223372036854775807LL, true);
1040
+ test_read_int64(float, 100, false);
1041
+ test_read_int64(double, -5.4321, false);
1042
+ test_read_int64(array, 10, false);
1043
+
1044
+ test_read_double(uint, 123, true);
1045
+ test_read_double(uint, 12345, true);
1046
+ test_read_double(uint, 123456789, true);
1047
+ test_read_double(uint, 1234567890000ULL, true);
1048
+ test_read_double(uint, 123456789123456789ULL, false);
1049
+ test_read_double(int, -123, true);
1050
+ test_read_double(int, -12345, true);
1051
+ test_read_double(int, -123456789, true);
1052
+ test_read_double(int, -1234567890000LL, true);
1053
+ test_read_double(int, -123456789123456789LL, false);
1054
+ test_read_double(float, 6.565e6, true);
1055
+ test_read_double(double, -5.555, true);
1056
+ test_read_double(strl, 100, false);
1057
+
1058
+ footer();
1059
+ return check_plan();
1060
+ }
1061
+
1062
+ static int
1063
+ test_overflow()
1064
+ {
1065
+ plan(4);
1066
+ header();
1067
+
1068
+ const char *chk;
1069
+ char *d;
1070
+ d = data;
1071
+ chk = data;
1072
+ d = mp_encode_array(d, 1);
1073
+ d = mp_encode_array(d, UINT32_MAX);
1074
+ is(mp_check(&chk, d), 1, "mp_check array overflow")
1075
+
1076
+ d = data;
1077
+ chk = data;
1078
+ d = mp_encode_array(d, 1);
1079
+ d = mp_encode_map(d, UINT32_MAX);
1080
+ is(mp_check(&chk, d), 1, "mp_check map overflow")
1081
+
1082
+ d = data;
1083
+ chk = data;
1084
+ d = mp_encode_array(d, 2);
1085
+ d = mp_encode_str(d, "", 0);
1086
+ d = mp_encode_strl(d, UINT32_MAX);
1087
+ is(mp_check(&chk, d), 1, "mp_check str overflow")
1088
+
1089
+ d = data;
1090
+ chk = data;
1091
+ d = mp_encode_array(d, 2);
1092
+ d = mp_encode_bin(d, "", 0);
1093
+ d = mp_encode_binl(d, UINT32_MAX);
1094
+ is(mp_check(&chk, d), 1, "mp_check bin overflow")
1095
+
1096
+ footer();
1097
+ return check_plan();
1098
+ }
1099
+
1100
+
1101
+ int main()
1102
+ {
1103
+ plan(20);
1104
+ test_uints();
1105
+ test_ints();
1106
+ test_bools();
1107
+ test_floats();
1108
+ test_doubles();
1109
+ test_nils();
1110
+ test_strls();
1111
+ test_binls();
1112
+ test_strs();
1113
+ test_bins();
1114
+ test_arrays();
1115
+ test_maps();
1116
+ test_next_on_arrays();
1117
+ test_next_on_maps();
1118
+ test_compare_uints();
1119
+ test_format();
1120
+ test_mp_print();
1121
+ test_mp_check();
1122
+ test_numbers();
1123
+ test_overflow();
1124
+
1125
+ return check_plan();
1126
+ }