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,384 @@
1
+ #include "test.h"
2
+ #include <string.h>
3
+ #include <stdlib.h>
4
+ #include <stdint.h>
5
+
6
+ #include <tarantool/tarantool.h>
7
+
8
+ #include <tarantool/tnt_net.h>
9
+ #include <tarantool/tnt_opt.h>
10
+
11
+ #include "common.h"
12
+
13
+ #define header() note("*** %s: prep ***", __func__)
14
+ #define footer() note("*** %s: done ***", __func__)
15
+
16
+ static int
17
+ test_connect_unix(char *uri) {
18
+ plan(3);
19
+ header();
20
+
21
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
22
+ isnt(tnt, NULL, "Check connection creation");
23
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
24
+ isnt(tnt_connect(tnt), -1, "Connecting");
25
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
26
+
27
+ tnt_stream_free(tnt);
28
+
29
+ footer();
30
+ return check_plan();
31
+ }
32
+
33
+ static int
34
+ test_ping(char *uri) {
35
+ plan(7);
36
+ header();
37
+
38
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
39
+ isnt(tnt, NULL, "Check connection creation");
40
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
41
+ isnt(tnt_connect(tnt), -1, "Connecting");
42
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
43
+
44
+ isnt(tnt_ping(tnt), -1, "Create ping");
45
+ isnt(tnt_flush(tnt), -1, "Send to server");
46
+
47
+ struct tnt_reply reply;
48
+ tnt_reply_init(&reply);
49
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
50
+ is (reply.error, NULL, "Check error absence");
51
+
52
+ tnt_reply_free(&reply);
53
+ tnt_stream_free(tnt);
54
+
55
+ footer();
56
+ return check_plan();
57
+ }
58
+
59
+ static int
60
+ test_auth_call(char *uri) {
61
+ plan(21);
62
+ header();
63
+
64
+ struct tnt_stream *args = NULL; args = tnt_object(NULL);
65
+ isnt(args, NULL, "Check object creation");
66
+ isnt(tnt_object_format(args, "[]"), -1, "check object filling");
67
+
68
+ struct tnt_reply reply;
69
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
70
+ isnt(tnt, NULL, "Check connection creation");
71
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
72
+ isnt(tnt_connect(tnt), -1, "Connecting");
73
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
74
+
75
+ isnt(tnt_deauth(tnt), -1, "Create deauth");
76
+ isnt(tnt_flush(tnt), -1, "Send to server");
77
+
78
+ tnt_reply_init(&reply);
79
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
80
+ isnt(reply.error, NULL, "Check error absence");
81
+ tnt_reply_free(&reply);
82
+
83
+ isnt(tnt_call_16(tnt, "test_4", 6, args), -1, "Create call request");
84
+ isnt(tnt_flush(tnt), -1, "Send to server");
85
+
86
+ tnt_reply_init(&reply);
87
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
88
+ is (reply.error, NULL, "Check error absence");
89
+
90
+ tnt_reply_free(&reply);
91
+
92
+ isnt(tnt_auth(tnt, "test", 4, "test", 4), -1, "Create auth");
93
+ isnt(tnt_flush(tnt), -1, "Send to server");
94
+
95
+ tnt_reply_init(&reply);
96
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
97
+ is (reply.error, NULL, "Check error absence");
98
+ tnt_reply_free(&reply);
99
+
100
+ isnt(tnt_eval(tnt, "return test_4()", 15, args), -1, "Create eval "
101
+ "request");
102
+ isnt(tnt_flush(tnt), -1, "Send to server");
103
+
104
+ tnt_reply_init(&reply);
105
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
106
+ is (reply.error, NULL, "Check error absence");
107
+
108
+ tnt_stream_free(args);
109
+ tnt_reply_free(&reply);
110
+ tnt_stream_free(tnt);
111
+
112
+ footer();
113
+ return check_plan();
114
+ }
115
+
116
+ static int
117
+ test_insert_replace_delete(char *uri) {
118
+ plan(186);
119
+ header();
120
+
121
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
122
+ isnt(tnt, NULL, "Check connection creation");
123
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
124
+ isnt(tnt_connect(tnt), -1, "Connecting");
125
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
126
+ tnt_stream_reqid(tnt, 0);
127
+
128
+ for (int i = 0; i < 10; ++i) {
129
+ char ex[128] = {0};
130
+ size_t ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
131
+
132
+ struct tnt_stream *val = tnt_object(NULL);
133
+ tnt_object_format(val, "[%d%d%.*s]", i, i + 10, ex_len, ex);
134
+ tnt_insert(tnt, 512, val);
135
+
136
+ tnt_stream_free(val);
137
+ }
138
+
139
+ isnt(tnt_flush(tnt), -1, "Send package to server");
140
+
141
+ struct tnt_iter it;
142
+ tnt_iter_reply(&it, tnt);
143
+ while (tnt_next(&it)) {
144
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
145
+ uint32_t i = r->sync, str_len = 0;
146
+ char ex[128] = {0};
147
+ size_t ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
148
+ isnt(r->data, NULL, "check that we get answer");
149
+ const char *data = r->data;
150
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
151
+ is (mp_decode_array(&data), 1, "Check array, again");
152
+ is (mp_decode_array(&data), 3, "And again (another)");
153
+ ok (mp_typeof(*data) == MP_UINT &&
154
+ mp_decode_uint(&data) == i &&
155
+ mp_typeof(*data) == MP_UINT &&
156
+ mp_decode_uint(&data) == i + 10 &&
157
+ mp_typeof(*data) == MP_STR &&
158
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
159
+ "Check fields");
160
+ }
161
+
162
+ tnt_stream_reqid(tnt, 0);
163
+ for (int i = 0; i < 5; ++i) {
164
+ char ex[128] = {0};
165
+ size_t ex_len;
166
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d", i, i*i);
167
+
168
+ struct tnt_stream *val = tnt_object(NULL);
169
+ tnt_object_format(val, "[%d%d%.*s]", i, i + 5, ex_len, ex);
170
+ tnt_replace(tnt, 512, val);
171
+
172
+ tnt_stream_free(val);
173
+ }
174
+
175
+ isnt(tnt_flush(tnt), -1, "Send package to server");
176
+
177
+ tnt_iter_reply(&it, tnt);
178
+ while (tnt_next(&it)) {
179
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
180
+ uint32_t i = r->sync, str_len = 0;
181
+ char ex[128] = {0};
182
+ size_t ex_len;
183
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d", i, i*i);
184
+ isnt(r->data, NULL, "check that we get answer");
185
+ const char *data = r->data;
186
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
187
+ is (mp_decode_array(&data), 1, "Check array, again");
188
+ is (mp_decode_array(&data), 3, "And again (another)");
189
+ ok (mp_typeof(*data) == MP_UINT &&
190
+ mp_decode_uint(&data) == i &&
191
+ mp_typeof(*data) == MP_UINT &&
192
+ mp_decode_uint(&data) == i + 5 &&
193
+ mp_typeof(*data) == MP_STR &&
194
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
195
+ "Check fields");
196
+ }
197
+
198
+ struct tnt_stream *key = NULL; key = tnt_object(NULL);
199
+ isnt(key, NULL, "Check object creation");
200
+ is (tnt_object_add_array(key, 0), 1, "Create key");
201
+ tnt_select(tnt, 512, 0, UINT32_MAX, 0, 0, key);
202
+ tnt_stream_free(key);
203
+
204
+ tnt_flush(tnt);
205
+
206
+ struct tnt_reply reply; tnt_reply_init(&reply);
207
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply");
208
+ const char *data = reply.data;
209
+
210
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
211
+ uint32_t vsz = mp_decode_array(&data);
212
+ is (vsz, 10, "Check array, again");
213
+
214
+ uint32_t arrsz = vsz;
215
+ uint32_t str_len = 0;
216
+
217
+ while (arrsz-- > 0) {
218
+ is (mp_decode_array(&data), 3, "And again (another)");
219
+ is (mp_typeof(*data), MP_UINT, "check int");
220
+ uint32_t sz = mp_decode_uint(&data);
221
+ is (mp_typeof(*data), MP_UINT, "check int");
222
+ uint32_t sz_z = sz + 10; if (sz < 5) sz_z -= 5;
223
+ uint32_t vsz = mp_decode_uint(&data);
224
+ is (vsz, sz_z, "check int val");
225
+ char ex[128] = {0};
226
+ size_t ex_len = 0;
227
+ if (sz < 5)
228
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d",
229
+ sz, sz*sz);
230
+ else
231
+ ex_len = snprintf(ex, 128, "examplestr %d %d", sz, sz*sz);
232
+ ok (mp_typeof(*data) == MP_STR &&
233
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
234
+ "Check str");
235
+ }
236
+
237
+ tnt_reply_free(&reply);
238
+ tnt_stream_reqid(tnt, 0);
239
+
240
+ for (int i = 0; i < 10; ++i) {
241
+ struct tnt_stream *key = tnt_object(NULL);
242
+ tnt_object_format(key, "[%d]", i);
243
+ tnt_delete(tnt, 512, 0, key);
244
+
245
+ tnt_stream_free(key);
246
+ }
247
+
248
+ isnt(tnt_flush(tnt), -1, "Send package to server");
249
+
250
+ tnt_iter_reply(&it, tnt);
251
+ while (tnt_next(&it)) {
252
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
253
+ uint32_t i = r->sync, str_len = 0, nlen = (i < 5 ? i + 5 : i + 10);
254
+ char ex[128] = {0};
255
+ size_t ex_len = 0;
256
+ if (i < 5)
257
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d",
258
+ i, i*i);
259
+ else
260
+ ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
261
+ isnt(r->data, NULL, "check that we get answer");
262
+ const char *data = r->data;
263
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
264
+ is (mp_decode_array(&data), 1, "Check array, again");
265
+ is (mp_decode_array(&data), 3, "And again (another)");
266
+ ok (mp_typeof(*data) == MP_UINT &&
267
+ mp_decode_uint(&data) == i &&
268
+ mp_typeof(*data) == MP_UINT &&
269
+ mp_decode_uint(&data) == nlen &&
270
+ mp_typeof(*data) == MP_STR &&
271
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
272
+ "Check fields");
273
+ }
274
+ tnt_stream_free(tnt);
275
+
276
+ footer();
277
+ return check_plan();
278
+ }
279
+
280
+ static int
281
+ test_execute(char *uri) {
282
+ plan(39);
283
+ header();
284
+
285
+
286
+
287
+
288
+ struct tnt_reply reply;
289
+ char *query;
290
+ struct tnt_stream *args = NULL;
291
+
292
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
293
+ isnt(tnt, NULL, "Check connection creation");
294
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
295
+ isnt(tnt_connect(tnt), -1, "Connecting");
296
+
297
+ args = tnt_object(NULL);
298
+ isnt(args, NULL, "Check object creation");
299
+ isnt(tnt_object_format(args, "[]"), -1, "check object filling");
300
+ query = "CREATE TABLE test_table(id INTEGER, PRIMARY KEY (id))";
301
+ isnt(tnt_execute(tnt, query, strlen(query), args), -1,
302
+ "Create execute sql request: create table");
303
+ isnt(tnt_flush(tnt), -1, "Send to server");
304
+ tnt_stream_free(args);
305
+
306
+ tnt_reply_init(&reply);
307
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
308
+ is (reply.error, NULL, "Check error absence");
309
+ isnt(reply.sqlinfo, NULL, "Check sqlinfo presence");
310
+ is (reply.metadata, NULL, "Check metadata absence");
311
+ is (reply.data, NULL, "Check data absence");
312
+ tnt_reply_free(&reply);
313
+
314
+ args = tnt_object(NULL);
315
+ isnt(args, NULL, "Check object creation");
316
+ isnt(tnt_object_format(args, "[%d]", 0), -1, "check object filling");
317
+ query = "INSERT INTO test_table(id) VALUES (?)";
318
+ isnt(tnt_execute(tnt, query, strlen(query), args), -1,
319
+ "Create execute sql request: insert row");
320
+ isnt(tnt_flush(tnt), -1, "Send to server");
321
+ tnt_stream_free(args);
322
+
323
+ tnt_reply_init(&reply);
324
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
325
+ is (reply.error, NULL, "Check error absence");
326
+ isnt(reply.sqlinfo, NULL, "Check sqlinfo presence");
327
+ is (reply.metadata, NULL, "Check metadata absence");
328
+ is (reply.data, NULL, "Check data absence");
329
+ tnt_reply_free(&reply);
330
+
331
+ args = tnt_object(NULL);
332
+ isnt(args, NULL, "Check object creation");
333
+ isnt(tnt_object_format(args, "[]"), -1, "check object filling");
334
+ query = "select * from test_table";
335
+ isnt(tnt_execute(tnt, query, strlen(query), args), -1,
336
+ "Create execute sql request: select");
337
+ isnt(tnt_flush(tnt), -1, "Send to server");
338
+ tnt_stream_free(args);
339
+
340
+ tnt_reply_init(&reply);
341
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
342
+ is (reply.error, NULL, "Check error absence");
343
+ is (reply.sqlinfo, NULL, "Check sqlinfo absence");
344
+ isnt(reply.metadata, NULL, "Check metadata presence");
345
+ isnt(reply.data, NULL, "Check data presence");
346
+ tnt_reply_free(&reply);
347
+
348
+ args = tnt_object(NULL);
349
+ isnt(args, NULL, "Check object creation");
350
+ isnt(tnt_object_format(args, "[]"), -1, "check object filling");
351
+ query = "drop table test_table";
352
+ isnt(tnt_execute(tnt, query, strlen(query), args), -1,
353
+ "Create execute sql request: drop table");
354
+ isnt(tnt_flush(tnt), -1, "Send to server");
355
+ tnt_stream_free(args);
356
+
357
+ tnt_reply_init(&reply);
358
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply from server");
359
+ is (reply.error, NULL, "Check error absence");
360
+ isnt(reply.sqlinfo, NULL, "Check sqlinfo presence");
361
+ is (reply.metadata, NULL, "Check metadata absence");
362
+ is (reply.data, NULL, "Check data absence");
363
+ tnt_reply_free(&reply);
364
+
365
+ tnt_stream_free(tnt);
366
+
367
+ footer();
368
+ return check_plan();
369
+ }
370
+
371
+ int main() {
372
+ plan(5);
373
+
374
+ char uri[128] = {0};
375
+ snprintf(uri, 128, "%s%s", "test:test@", getenv("PRIMARY_PORT"));
376
+
377
+ test_connect_unix(uri);
378
+ test_ping(uri);
379
+ test_auth_call(uri);
380
+ test_insert_replace_delete(uri);
381
+ test_execute(uri);
382
+
383
+ return check_plan();
384
+ }
@@ -0,0 +1,72 @@
1
+ #include "test.h"
2
+
3
+ #include <stdio.h>
4
+ #include <stdarg.h>
5
+
6
+ enum { MAX_LEVELS = 10 };
7
+ static int tests_done[MAX_LEVELS];
8
+ static int tests_failed[MAX_LEVELS];
9
+ static int plan_test[MAX_LEVELS];
10
+ static int level = -1;
11
+
12
+ void
13
+ __space(FILE *stream)
14
+ {
15
+ for (int i = 0 ; i < level; i++) {
16
+ fprintf(stream, " ");
17
+ }
18
+ }
19
+
20
+ void
21
+ plan(int count)
22
+ {
23
+ ++level;
24
+ plan_test[level] = count;
25
+ tests_done[level] = 0;
26
+ tests_failed[level] = 0;
27
+
28
+ __space(stdout);
29
+ printf("%d..%d\n", 1, plan_test[level]);
30
+ }
31
+
32
+ int
33
+ check_plan(void)
34
+ {
35
+ int r = 0;
36
+ if (tests_done[level] != plan_test[level]) {
37
+ __space(stderr);
38
+ fprintf(stderr,
39
+ "# Looks like you planned %d tests but ran %d.\n",
40
+ plan_test[level], tests_done[level]);
41
+ r = -1;
42
+ }
43
+
44
+ if (tests_failed[level]) {
45
+ __space(stderr);
46
+ fprintf(stderr,
47
+ "# Looks like you failed %d test of %d run.\n",
48
+ tests_failed[level], tests_done[level]);
49
+ r = tests_failed[level];
50
+ }
51
+ --level;
52
+ if (level >= 0) {
53
+ is(r, 0, "subtests");
54
+ }
55
+ return r;
56
+ }
57
+
58
+ int
59
+ __ok(int condition, const char *fmt, ...)
60
+ {
61
+ va_list ap;
62
+
63
+ __space(stdout);
64
+ printf("%s %d - ", condition ? "ok" : "not ok", ++tests_done[level]);
65
+ if (!condition)
66
+ tests_failed[level]++;
67
+ va_start(ap, fmt);
68
+ vprintf(fmt, ap);
69
+ printf("\n");
70
+ return condition;
71
+ }
72
+
@@ -0,0 +1,94 @@
1
+ #ifndef TEST_H_INCLUDED
2
+ #define TEST_H_INCLUDED
3
+
4
+ #include <stdio.h>
5
+
6
+ /**
7
+ @brief example
8
+
9
+ @code
10
+ #include "test.h"
11
+
12
+ int main(void) {
13
+ plan(3); // count of test You planned to check
14
+ ok(1, "Test name 1");
15
+ is(4, 2 * 2, "2 * 2 == 4");
16
+ isnt(5, 2 * 2, "2 * 2 != 5);
17
+ return check_plan(); // print resume
18
+ }
19
+ @endcode
20
+
21
+
22
+ */
23
+
24
+ /* private function, use ok(...) instead */
25
+ int __ok(int condition, const char *fmt, ...);
26
+
27
+ /* private function, use note(...) or diag(...) instead */
28
+ void __space(FILE *stream);
29
+
30
+ #define msg(stream, ...) ({ __space(stream); fprintf(stream, "# "); \
31
+ fprintf(stream, __VA_ARGS__); fprintf(stream, "\n"); })
32
+
33
+ #define note(...) msg(stdout, __VA_ARGS__)
34
+ #define diag(...) msg(stderr, __VA_ARGS__)
35
+
36
+ /**
37
+ @brief set and print plan
38
+ @param count
39
+ Before anything else, you need a testing plan. This basically declares
40
+ how many tests your program is going to run to protect against premature
41
+ failure.
42
+ */
43
+ void plan(int count);
44
+
45
+ /**
46
+ @brief check if plan is reached and print report
47
+ */
48
+ int check_plan(void);
49
+
50
+ #define ok(condition, fmt, args...) { \
51
+ int res = __ok(condition, fmt, ##args); \
52
+ if (!res) { \
53
+ __space(stderr); \
54
+ fprintf(stderr, "# Failed test '"); \
55
+ fprintf(stderr, fmt, ##args); \
56
+ fprintf(stderr, "'\n"); \
57
+ __space(stderr); \
58
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
59
+ } \
60
+ res = res; \
61
+ }
62
+
63
+ #define is(a, b, fmt, args...) { \
64
+ int res = __ok((a) == (b), fmt, ##args); \
65
+ if (!res) { \
66
+ __space(stderr); \
67
+ fprintf(stderr, "# Failed test '"); \
68
+ fprintf(stderr, fmt, ##args); \
69
+ fprintf(stderr, "'\n"); \
70
+ __space(stderr); \
71
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
72
+ } \
73
+ res = res; \
74
+ }
75
+
76
+ #define isnt(a, b, fmt, args...) { \
77
+ int res = __ok((a) != (b), fmt, ##args); \
78
+ if (!res) { \
79
+ __space(stderr); \
80
+ fprintf(stderr, "# Failed test '"); \
81
+ fprintf(stderr, fmt, ##args); \
82
+ fprintf(stderr, "'\n"); \
83
+ __space(stderr); \
84
+ fprintf(stderr, "# in %s at line %d\n", __FILE__, __LINE__); \
85
+ } \
86
+ res = res; \
87
+ }
88
+
89
+ #define fail(fmt, args...) \
90
+ ok(0, fmt, ##args)
91
+
92
+
93
+ #endif /* TEST_H_INCLUDED */
94
+
@@ -0,0 +1,6 @@
1
+ #include <stdint.h>
2
+ #include <string.h>
3
+
4
+ #include <tarantool/tnt_mem.h>
5
+
6
+ #include "tnt_assoc.h"
@@ -0,0 +1,67 @@
1
+ #if defined(__cplusplus)
2
+ extern "C" {
3
+ #endif /* defined(__cplusplus) */
4
+
5
+ struct assoc_key {
6
+ const char *id;
7
+ uint32_t id_len;
8
+ };
9
+
10
+ struct assoc_val {
11
+ struct assoc_key key;
12
+ void *data;
13
+ };
14
+
15
+ static inline int
16
+ mh_cmp_eq(
17
+ const struct assoc_val **lval,
18
+ const struct assoc_val **rval,
19
+ void *arg) {
20
+ (void )arg;
21
+ if ((*lval)->key.id_len != (*rval)->key.id_len) return 0;
22
+ return !memcmp((*lval)->key.id, (*rval)->key.id, (*rval)->key.id_len);
23
+ }
24
+
25
+ static inline int
26
+ mh_cmp_key_eq(
27
+ const struct assoc_key *key,
28
+ const struct assoc_val **val,
29
+ void *arg) {
30
+ (void )arg;
31
+ if (key->id_len != (*val)->key.id_len) return 0;
32
+ return !memcmp(key->id, (*val)->key.id, key->id_len);
33
+ }
34
+
35
+ static inline void *
36
+ tnt_mem_calloc(size_t count, size_t size) {
37
+ size_t sz = count * size;
38
+ void *alloc = tnt_mem_alloc(sz);
39
+ if (!alloc) return 0;
40
+ memset(alloc, 0, sz);
41
+ return alloc;
42
+
43
+ }
44
+
45
+ #define MH_INCREMENTAL_RESIZE 1
46
+
47
+ #define mh_arg_t void *
48
+
49
+ #define mh_eq(a, b, arg) mh_cmp_eq(a, b, arg)
50
+ #define mh_eq_key(a, b, arg) mh_cmp_key_eq(a, b, arg)
51
+ #define mh_hash(x, arg) PMurHash32(MUR_SEED, (*x)->key.id, (*x)->key.id_len)
52
+ #define mh_hash_key(x, arg) PMurHash32(MUR_SEED, (x)->id, (x)->id_len);
53
+
54
+ #define mh_node_t struct assoc_val *
55
+ #define mh_key_t const struct assoc_key *
56
+
57
+ #define MH_CALLOC(x, y) tnt_mem_calloc((x), (y))
58
+ #define MH_FREE(x) tnt_mem_free((x))
59
+
60
+ #define mh_name _assoc
61
+ #define MUR_SEED 13
62
+ #include <PMurHash.h>
63
+ #include <mhash.h>
64
+
65
+ #if defined(__cplusplus)
66
+ }
67
+ #endif /* defined(__cplusplus) */