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,840 @@
1
+ #include "test.h"
2
+ #include <string.h>
3
+ #include <stdlib.h>
4
+ #include <stdint.h>
5
+
6
+ #include <msgpuck.h>
7
+
8
+ #include <tarantool/tarantool.h>
9
+
10
+ #include <tarantool/tnt_net.h>
11
+ #include <tarantool/tnt_opt.h>
12
+
13
+ #include "common.h"
14
+
15
+ #define header() note("*** %s: prep ***", __func__)
16
+ #define footer() note("*** %s: done ***", __func__)
17
+
18
+ int
19
+ tnt_request_set_sspace(struct tnt_stream *s, struct tnt_request *req,
20
+ const char *space, uint32_t slen)
21
+ {
22
+ int32_t sno = tnt_get_spaceno(s, space, slen);
23
+ if (sno == -1) return -1;
24
+ return tnt_request_set_space(req, sno);
25
+ }
26
+
27
+ int
28
+ tnt_request_set_sspacez(struct tnt_stream *s, struct tnt_request *req,
29
+ const char *space)
30
+ {
31
+ return tnt_request_set_sspace(s, req, space, strlen(space));
32
+ }
33
+
34
+ int
35
+ tnt_request_set_sindex(struct tnt_stream *s, struct tnt_request *req,
36
+ const char *index, uint32_t ilen)
37
+ {
38
+ int32_t ino = tnt_get_indexno(s, req->space_id, index, ilen);
39
+ if (ino == -1) return -1;
40
+ return tnt_request_set_index(req, ino);
41
+ }
42
+
43
+ int
44
+ tnt_request_set_sindexz(struct tnt_stream *s, struct tnt_request *req,
45
+ const char *index)
46
+ {
47
+ return tnt_request_set_sindex(s, req, index, strlen(index));
48
+ }
49
+
50
+ /*
51
+ static int
52
+ test_() {
53
+ plan(0);
54
+ header();
55
+
56
+ footer();
57
+ return check_plan();
58
+ }
59
+ */
60
+
61
+ static int
62
+ test_connect_tcp() {
63
+ plan(7);
64
+ header();
65
+
66
+ char uri[128] = {0};
67
+ snprintf(uri, 128, "%s%s%s", "test:test@", "localhost:",
68
+ getenv("PRIMARY_PORT"));
69
+
70
+ struct tnt_stream *s = NULL; s = tnt_net(NULL);
71
+ isnt(s, NULL, "Checking that stream is allocated");
72
+ is (s->alloc, 1, "Checking s->alloc");
73
+ isnt(tnt_set(s, TNT_OPT_URI, uri), -1, "Setting URI");
74
+ isnt(tnt_connect(s), -1, "Connecting");
75
+ // isnt(tnt_authenticate(s), -1, "Authenticating");
76
+ tnt_close(s);
77
+ tnt_stream_free(s);
78
+
79
+ struct tnt_stream sa = {0}; tnt_net(&sa);
80
+ is (sa.alloc, 0, "Checking sa.alloc");
81
+ isnt(tnt_set(&sa, TNT_OPT_URI, uri), -1, "Setting URI");
82
+ isnt(tnt_connect(&sa), -1, "Connecting");
83
+ // isnt(tnt_authenticate(&sa), -1, "Authenticating");
84
+ tnt_close(&sa);
85
+ tnt_stream_free(&sa);
86
+
87
+ footer();
88
+ return check_plan();
89
+ }
90
+
91
+ static int
92
+ test_object() {
93
+ plan(102);
94
+ header();
95
+
96
+ struct tnt_stream *s = NULL; s = tnt_object(NULL);
97
+
98
+
99
+ char str1[] = "I'm totaly duck, i can quack";
100
+ ssize_t str1_len = strlen(str1);
101
+
102
+ isnt(s, NULL, "Checking that object is allocated");
103
+ is (s->alloc, 1, "Checking s->alloc");
104
+ is (tnt_object_add_int(s, 1211), 3, "encoding int > 0");
105
+ is (tnt_object_add_int(s, -1211), 3, "encoding int < 0");
106
+ is (tnt_object_add_nil(s), 1, "encoding nil");
107
+ is (tnt_object_add_str(s, str1, str1_len), str1_len + 1, "encoding str");
108
+ is (tnt_object_add_strz(s, str1), str1_len + 1, "encoding strz");
109
+
110
+ is (tnt_object_type(s, TNT_SBO_SPARSE), -1, "Check type set (must fail)");
111
+
112
+ is (tnt_object_reset(s), 0, "Reset bytestring");
113
+ is (tnt_object_type(s, TNT_SBO_SPARSE), 0, "Check type set (must be ok)");
114
+ is (tnt_object_add_array(s, 0), 5, "Sparse array");
115
+ is (tnt_object_add_nil(s), 1, "encoding nil");
116
+ is (tnt_object_add_nil(s), 1, "encoding nil");
117
+ is (tnt_object_add_nil(s), 1, "encoding nil");
118
+ is (tnt_object_add_nil(s), 1, "encoding nil");
119
+ is (tnt_object_container_close(s), 0, "Closing container");
120
+ is (tnt_object_container_close(s), -1, "Erroneous container close");
121
+
122
+
123
+ is (tnt_object_reset(s), 0, "Reset bytestring");
124
+ is (tnt_object_type(s, TNT_SBO_PACKED), 0, "Check type set (must be ok)");
125
+ is (tnt_object_add_array(s, 0), 1, "Packed array");
126
+ is (tnt_object_add_nil(s), 1, "encoding nil");
127
+ is (tnt_object_add_nil(s), 1, "encoding nil");
128
+ is (tnt_object_add_nil(s), 1, "encoding nil");
129
+ is (tnt_object_add_nil(s), 1, "encoding nil");
130
+ is (tnt_object_container_close(s), 0, "Closing container");
131
+ is (tnt_object_container_close(s), -1, "Erroneous container close");
132
+
133
+
134
+ /*
135
+ * {"menu": {
136
+ * "popup": {
137
+ * "menuitem": [
138
+ * {"value": "New", "onclick": "CreateNewDoc()"},
139
+ * {"value": "Open", "onclick": "OpenDoc()"},
140
+ * {"value": "Close", "onclick": "CloseDoc()"}
141
+ * ]
142
+ * }
143
+ * "id": "file",
144
+ * "value": "File",
145
+ * }}
146
+ */
147
+
148
+ is (tnt_object_reset(s), 0, "Reset bytestring");
149
+ is (tnt_object_type(s, TNT_SBO_PACKED), 0, "Check type set (must be ok)");
150
+ is (tnt_object_add_map(s, 0), 1, "Packing map-1");
151
+ is (tnt_object_add_strz(s, "menu"), 5, " Packing key (str)");
152
+ is (tnt_object_add_map(s, 0), 1, " Packing value (map-2)");
153
+ is (tnt_object_add_strz(s, "popup"), 6, " Packing key (str)");
154
+ is (tnt_object_add_map(s, 0), 1, " Packing value (map-3)");
155
+ is (tnt_object_add_strz(s, "menuitem"), 9, " Packing key (str)");
156
+ is (tnt_object_add_array(s, 0), 1, " Packing value (array)");
157
+ is (tnt_object_add_map(s, 0), 1, " Packing value (map-4)");
158
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
159
+ is (tnt_object_add_strz(s, "CreateNewDoc()"), 15, " Packing value (str)");
160
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
161
+ is (tnt_object_add_strz(s, "New"), 4, " Packing value (str)");
162
+ is (tnt_object_container_close(s), 0, " Closing map-4");
163
+ is (tnt_object_add_map(s, 0), 1, " Packing value (map-5)");
164
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
165
+ is (tnt_object_add_strz(s, "OpenDoc()"), 10, " Packing value (str)");
166
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
167
+ is (tnt_object_add_strz(s, "Open"), 5, " Packing value (str)");
168
+ is (tnt_object_container_close(s), 0, " Closing map-5");
169
+ is (tnt_object_add_map(s, 0), 1, " Packing value (map-6)");
170
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
171
+ is (tnt_object_add_strz(s, "CloseDoc()"), 11, " Packing value (str)");
172
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
173
+ is (tnt_object_add_strz(s, "Close"), 6, " Packing value (str)");
174
+ is (tnt_object_container_close(s), 0, " Closing map-6");
175
+ is (tnt_object_container_close(s), 0, " Closing map-3");
176
+ is (tnt_object_container_close(s), 0, " Closing array");
177
+ is (tnt_object_add_strz(s, "id"), 3, " Packing key (str)");
178
+ is (tnt_object_add_strz(s, "file"), 5, " Packing value (str)");
179
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
180
+ is (tnt_object_add_strz(s, "File"), 5, " Packing value (str)");
181
+ is (tnt_object_container_close(s), 0, " Closing map-2");
182
+ is (tnt_object_container_close(s), 0, "Closing map-1");
183
+
184
+ is (tnt_object_reset(s), 0, "Reset bytestring");
185
+ is (tnt_object_type(s, TNT_SBO_SPARSE), 0, "Check type set (must be ok)");
186
+ is (tnt_object_add_map(s, 0), 5, "Packing map-1");
187
+ is (tnt_object_add_strz(s, "menu"), 5, " Packing key (str)");
188
+ is (tnt_object_add_map(s, 0), 5, " Packing value (map-2)");
189
+ is (tnt_object_add_strz(s, "popup"), 6, " Packing key (str)");
190
+ is (tnt_object_add_map(s, 0), 5, " Packing value (map-3)");
191
+ is (tnt_object_add_strz(s, "menuitem"), 9, " Packing key (str)");
192
+ is (tnt_object_add_array(s, 0), 5, " Packing value (array)");
193
+ is (tnt_object_add_map(s, 0), 5, " Packing value (map-4)");
194
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
195
+ is (tnt_object_add_strz(s, "CreateNewDoc()"), 15, " Packing value (str)");
196
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
197
+ is (tnt_object_add_strz(s, "New"), 4, " Packing value (str)");
198
+ is (tnt_object_container_close(s), 0, " Closing map-4");
199
+ is (tnt_object_add_map(s, 0), 5, " Packing value (map-5)");
200
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
201
+ is (tnt_object_add_strz(s, "OpenDoc()"), 10, " Packing value (str)");
202
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
203
+ is (tnt_object_add_strz(s, "Open"), 5, " Packing value (str)");
204
+ is (tnt_object_container_close(s), 0, " Closing map-5");
205
+ is (tnt_object_add_map(s, 0), 5, " Packing value (map-6)");
206
+ is (tnt_object_add_strz(s, "onclick"), 8, " Packing key (str)");
207
+ is (tnt_object_add_strz(s, "CloseDoc()"), 11, " Packing value (str)");
208
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
209
+ is (tnt_object_add_strz(s, "Close"), 6, " Packing value (str)");
210
+ is (tnt_object_container_close(s), 0, " Closing map-6");
211
+ is (tnt_object_container_close(s), 0, " Closing map-3");
212
+ is (tnt_object_container_close(s), 0, " Closing array");
213
+ is (tnt_object_add_strz(s, "id"), 3, " Packing key (str)");
214
+ is (tnt_object_add_strz(s, "file"), 5, " Packing value (str)");
215
+ is (tnt_object_add_strz(s, "value"), 6, " Packing key (str)");
216
+ is (tnt_object_add_strz(s, "File"), 5, " Packing value (str)");
217
+ is (tnt_object_container_close(s), 0, " Closing map-2");
218
+ is (tnt_object_container_close(s), 0, "Closing map-1");
219
+
220
+ is (tnt_object_reset(s), 0, "Reset bytestring");
221
+ is (tnt_object_type(s, TNT_SBO_PACKED), 0, "Check type set (must be ok)");
222
+ is (tnt_object_add_array(s, 0), 1, "Packing array (size more 1 byte)");
223
+ for (int i = 0; i < 32; ++i) tnt_object_add_nil(s);
224
+ is (tnt_object_container_close(s), 0, "Closing array (size more 1 byte)");
225
+
226
+ is (tnt_object_reset(s), 0, "Reset bytestring");
227
+ isnt(tnt_object_format(s, "{%s{%s{%s[{%s%s%s%s}{%s%s%s%s}{%s%s%s%s}]}%s%s%s%s}}",
228
+ "menu", "popup", "menuitem",
229
+ "onclick", "CreateNewDoc()", "value", "New",
230
+ "onclick", "OpenDoc()", "value", "Open",
231
+ "onclick", "CloseDoc()", "value", "Close",
232
+ "id", "file", "value", "File"), -1, "Pack with format");
233
+
234
+ tnt_stream_free(s);
235
+
236
+ footer();
237
+ return check_plan();
238
+ }
239
+
240
+ static int
241
+ test_request_01(char *uri) {
242
+ plan(5);
243
+ header();
244
+
245
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
246
+ isnt(tnt, NULL, "Check connection creation");
247
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
248
+ isnt(tnt_connect(tnt), -1, "Connecting");
249
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
250
+
251
+ struct tnt_stream *arg = tnt_object(NULL);
252
+ isnt(arg, NULL, "Check object creation");
253
+ is (tnt_object_add_array(arg, 0), 1, "Append elem");
254
+
255
+ struct tnt_request *req1 = tnt_request_call_16(NULL);
256
+ tnt_request_set_funcz(req1, "test_4");
257
+ tnt_request_set_tuple(req1, arg);
258
+ uint64_t sync1 = tnt_request_compile(tnt, req1);
259
+ tnt_request_free(req1);
260
+
261
+ struct tnt_request *req2 = tnt_request_eval(NULL);
262
+ tnt_request_set_exprz(req2, "return test_4()");
263
+ tnt_request_set_tuple(req2, arg);
264
+ uint64_t sync2 = tnt_request_compile(tnt, req2);
265
+ tnt_request_free(req2);
266
+
267
+
268
+ tnt_flush(tnt);
269
+
270
+ struct tnt_iter it; tnt_iter_reply(&it, tnt);
271
+ while (tnt_next(&it)) {
272
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
273
+ if (r->sync == sync1) {
274
+ ;
275
+ } else if (r->sync == sync2) {
276
+ ;
277
+ } else {
278
+ assert(0);
279
+ }
280
+ }
281
+
282
+ tnt_stream_free(tnt);
283
+ tnt_stream_free(arg);
284
+
285
+ footer();
286
+ return check_plan();
287
+ }
288
+
289
+ static int
290
+ test_request_02(char *uri) {
291
+ plan(15);
292
+ header();
293
+
294
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
295
+ isnt(tnt, NULL, "Check connection creation");
296
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
297
+ isnt(tnt_connect(tnt), -1, "Connecting");
298
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
299
+
300
+ struct tnt_stream *key = tnt_object(NULL);
301
+ isnt(key, NULL, "Check object creation");
302
+ is (tnt_object_add_array(key, 1), 1, "Create key");
303
+ is (tnt_object_add_strz(key, "_vspace"), 8, "Create key");
304
+
305
+ struct tnt_request *req = NULL;
306
+ req = tnt_request_select(NULL);
307
+ isnt(req, NULL, "Check request creation");
308
+ is (req->hdr.type, TNT_OP_SELECT, "Check that we inited select");
309
+ is (tnt_request_set_space(req, 281), 0, "Set space");
310
+ is (tnt_request_set_index(req, 2), 0, "Set index");
311
+ is (tnt_request_set_key(req, key), 0, "Set key");
312
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
313
+
314
+ isnt(tnt_flush(tnt), -1, "Send package to server");
315
+ tnt_request_free(req);
316
+ tnt_stream_free(key);
317
+
318
+ struct tnt_reply reply;
319
+ isnt(tnt_reply_init(&reply), NULL, "Init reply");
320
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply");
321
+
322
+ tnt_reply_free(&reply);
323
+
324
+ tnt_stream_free(tnt);
325
+
326
+ footer();
327
+ return check_plan();
328
+ }
329
+
330
+ static int
331
+ test_request_03(char *uri) {
332
+ plan(15);
333
+ header();
334
+
335
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
336
+ isnt(tnt, NULL, "Check connection creation");
337
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
338
+ isnt(tnt_connect(tnt), -1, "Connecting");
339
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
340
+
341
+ struct tnt_stream *key = tnt_object(NULL);
342
+ isnt(key, NULL, "Check object creation");
343
+ is (tnt_object_add_array(key, 1), 1, "Create key");
344
+ is (tnt_object_add_strz(key, "_vspace"), 8, "Create key");
345
+
346
+ struct tnt_request *req = NULL; req = tnt_request_select(NULL);
347
+ isnt(req, NULL, "Check request creation");
348
+ is (req->hdr.type, TNT_OP_SELECT, "Check that we inited select");
349
+ is (tnt_request_set_sspace(tnt, req, "_vspace", 7), 0, "Set space");
350
+ is (tnt_request_set_sindex(tnt, req, "name", 4), 0, "Set index");
351
+ is (tnt_request_set_key(req, key), 0, "Set key");
352
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
353
+
354
+ isnt(tnt_flush(tnt), -1, "Send package to server");
355
+ tnt_request_free(req);
356
+ tnt_stream_free(key);
357
+
358
+ struct tnt_reply reply;
359
+ isnt(tnt_reply_init(&reply), NULL, "Init reply");
360
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply");
361
+
362
+ tnt_reply_free(&reply);
363
+
364
+ tnt_stream_free(tnt);
365
+
366
+ footer();
367
+ return check_plan();
368
+ }
369
+
370
+ static int
371
+ test_request_04(char *uri) {
372
+ plan(18);
373
+ header();
374
+
375
+
376
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
377
+ isnt(tnt, NULL, "Check connection creation");
378
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
379
+ isnt(tnt_connect(tnt), -1, "Connecting");
380
+ // isnt(tnt_authenticate(tnt), -1, "Authenticating");
381
+
382
+ struct tnt_stream *key = NULL; key = tnt_object(NULL);
383
+ isnt(key, NULL, "Check object creation");
384
+ is (tnt_object_add_array(key, 1), 1, "Create key");
385
+ is (tnt_object_add_strz(key, "_vspace"), 8, "Create key");
386
+
387
+ struct tnt_request *req = NULL; req = tnt_request_select(NULL);
388
+ isnt(req, NULL, "Check request creation");
389
+ is (req->hdr.type, TNT_OP_SELECT, "Check that we inited select");
390
+ is (tnt_request_set_sspace(tnt, req, "_vspace", 7), 0, "Set space");
391
+ is (tnt_request_set_sindex(tnt, req, "name", 4), 0, "Set index");
392
+ is (tnt_request_set_key(req, key), 0, "Set key");
393
+ is (tnt_request_set_offset(req, 1), 0, "Set offset");
394
+ is (tnt_request_set_limit(req, 1), 0, "Set limit");
395
+ is (tnt_request_set_iterator(req, TNT_ITER_GT), 0, "Set iterator");
396
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
397
+ isnt(tnt_flush(tnt), -1, "Send package to server");
398
+ tnt_request_free(req);
399
+ tnt_stream_free(key);
400
+
401
+ struct tnt_reply reply;
402
+ isnt(tnt_reply_init(&reply), NULL, "Init reply");
403
+ isnt(tnt->read_reply(tnt, &reply), -1, "Read reply");
404
+
405
+ tnt_reply_free(&reply);
406
+
407
+ tnt_stream_free(tnt);
408
+
409
+ footer();
410
+ return check_plan();
411
+ }
412
+
413
+
414
+
415
+ static int
416
+ test_request_05(char *uri) {
417
+ plan(351);
418
+ header();
419
+
420
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
421
+ isnt(tnt, NULL, "Check connection creation");
422
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
423
+ isnt(tnt_connect(tnt), -1, "Connecting");
424
+ tnt_stream_reqid(tnt, 0);
425
+
426
+ for (int i = 0; i < 10; ++i) {
427
+ char ex[128] = {0};
428
+ size_t ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
429
+
430
+ struct tnt_stream *val = tnt_object(NULL);
431
+ tnt_object_format(val, "[%d%d%.*s]", i, i + 10, ex_len, ex);
432
+
433
+ struct tnt_request *req = tnt_request_insert(NULL);
434
+ isnt(req, NULL, "Check request creation");
435
+ is (req->hdr.type, TNT_OP_INSERT, "Check that we inited insert");
436
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
437
+ is (tnt_request_set_tuple(req, val), 0, "Set tuple");
438
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
439
+
440
+ tnt_request_free(req);
441
+ tnt_stream_free(val);
442
+ }
443
+
444
+ isnt(tnt_flush(tnt), -1, "Send package to server");
445
+
446
+ struct tnt_iter it; tnt_iter_reply(&it, tnt);
447
+ while (tnt_next(&it)) {
448
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
449
+ uint32_t i = r->sync, str_len = 0;
450
+ char ex[128] = {0};
451
+ size_t ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
452
+ isnt(r->data, NULL, "check that we get answer");
453
+ if (r->code!=0) {
454
+ fprintf(stderr,"# tnt_next error %s\n",r->error);
455
+ break;
456
+ }
457
+ if (!r->data) {
458
+ fprintf(stderr,"# tnt_next returns no data.\n");
459
+ break;
460
+ }
461
+ const char *data = r->data;
462
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
463
+ is (mp_decode_array(&data), 1, "Check array, again");
464
+ is (mp_decode_array(&data), 3, "And again (another)");
465
+ ok (mp_typeof(*data) == MP_UINT &&
466
+ mp_decode_uint(&data) == i &&
467
+ mp_typeof(*data) == MP_UINT &&
468
+ mp_decode_uint(&data) == i + 10 &&
469
+ mp_typeof(*data) == MP_STR &&
470
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
471
+ "Check fields");
472
+ }
473
+
474
+ tnt_stream_reqid(tnt, 0);
475
+
476
+ for (int i = 0; i < 5; ++i) {
477
+ char ex[128] = {0};
478
+ size_t ex_len = snprintf(ex, 128, "anotherexamplestr %d %d", i, i*i);
479
+
480
+ struct tnt_stream *val = tnt_object(NULL);
481
+ tnt_object_format(val, "[%d%d%.*s]", i, i + 5, ex_len, ex);
482
+
483
+ struct tnt_request *req = tnt_request_replace(NULL);
484
+ isnt(req, NULL, "Check request creation");
485
+ is (req->hdr.type, TNT_OP_REPLACE, "Check that we inited replace");
486
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
487
+ is (tnt_request_set_tuple(req, val), 0, "Set tuple");
488
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
489
+
490
+ tnt_request_free(req);
491
+ tnt_stream_free(val);
492
+ }
493
+
494
+ isnt(tnt_flush(tnt), -1, "Send package to server");
495
+ tnt_iter_reply(&it, tnt);
496
+ while (tnt_next(&it)) {
497
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
498
+ uint32_t i = r->sync, str_len = 0;
499
+ char ex[128] = {0};
500
+ size_t ex_len = 0;
501
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d", i, i*i);
502
+ isnt(r->data, NULL, "check that we get answer");
503
+ const char *data = r->data;
504
+ if (r->code!=0) {
505
+ fprintf(stderr,"# tnt_next error %s\n",r->error);
506
+ break;
507
+ }
508
+ if (!r->data) {
509
+ fprintf(stderr,"# tnt_next returns no data.\n");
510
+ break;
511
+ }
512
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
513
+ is (mp_decode_array(&data), 1, "Check array, again");
514
+ is (mp_decode_array(&data), 3, "And again (another)");
515
+ ok (mp_typeof(*data) == MP_UINT &&
516
+ mp_decode_uint(&data) == i &&
517
+ mp_typeof(*data) == MP_UINT &&
518
+ mp_decode_uint(&data) == i + 5 &&
519
+ mp_typeof(*data) == MP_STR &&
520
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
521
+ "Check fields");
522
+ }
523
+
524
+ struct tnt_stream *key = NULL; key = tnt_object(NULL);
525
+ isnt(key, NULL, "Check object creation");
526
+ is (tnt_object_add_array(key, 0), 1, "Create key");
527
+ struct tnt_request *req = tnt_request_select(NULL);
528
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
529
+ tnt_request_set_key(req, key);
530
+ tnt_request_compile(tnt, req);
531
+
532
+ tnt_flush(tnt);
533
+
534
+ struct tnt_reply reply; tnt_reply_init(&reply);
535
+ tnt->read_reply(tnt, &reply);
536
+ const char *data = reply.data;
537
+
538
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
539
+ is (mp_decode_array(&data), 10, "Check array, again");
540
+
541
+ uint32_t arrsz = 10;
542
+ uint32_t str_len = 0;
543
+
544
+ while (arrsz-- > 0) {
545
+ is (mp_decode_array(&data), 3, "And again (another)");
546
+ is (mp_typeof(*data), MP_UINT, "check int");
547
+ uint32_t sz = mp_decode_uint(&data);
548
+ is (mp_typeof(*data), MP_UINT, "check int");
549
+ uint32_t sz_z = sz + 10; if (sz < 5) sz_z -= 5;
550
+ is (mp_decode_uint(&data), sz_z, "check int val");
551
+ char ex[128] = {0};
552
+ size_t ex_len = 0;
553
+ if (sz < 5)
554
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d",
555
+ sz, sz*sz);
556
+ else
557
+ ex_len = snprintf(ex, 128, "examplestr %d %d", sz, sz*sz);
558
+ ok (mp_typeof(*data) == MP_STR &&
559
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
560
+ "Check str");
561
+ }
562
+
563
+ tnt_request_free(req);
564
+ tnt_stream_free(key);
565
+ tnt_reply_free(&reply);
566
+
567
+ tnt_stream_reqid(tnt, 0);
568
+
569
+ for (int i = 0; i < 10; ++i) {
570
+ struct tnt_stream *key = tnt_object(NULL);
571
+ tnt_object_format(key, "[%d]", i);
572
+
573
+ struct tnt_request *req = tnt_request_delete(NULL);
574
+ isnt(req, NULL, "Check request creation");
575
+ is (req->hdr.type, TNT_OP_DELETE, "Check that we inited delete");
576
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
577
+ is (tnt_request_set_key(req, key), 0, "Set key");
578
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
579
+
580
+ tnt_request_free(req);
581
+ tnt_stream_free(key);
582
+ }
583
+
584
+ isnt(tnt_flush(tnt), -1, "Send package to server");
585
+
586
+ int j=0;
587
+ tnt_iter_reply(&it, tnt);
588
+ while (tnt_next(&it)) {
589
+ struct tnt_reply *r = TNT_IREPLY_PTR(&it);
590
+ uint32_t i = r->sync, str_len = 0;
591
+ char ex[128] = {0};
592
+ size_t ex_len = 0;
593
+ if (i < 5)
594
+ ex_len = snprintf(ex, 128, "anotherexamplestr %d %d",
595
+ i, i*i);
596
+ else
597
+ ex_len = snprintf(ex, 128, "examplestr %d %d", i, i*i);
598
+ isnt(r->data, NULL, "check that we get answer");
599
+ const char *data = r->data;
600
+ if (r->code!=0) {
601
+ fprintf(stderr,"# tnt_next (%d) error %s\n",j,r->error);
602
+ break;
603
+ }
604
+ if (!r->data) {
605
+ fprintf(stderr,"# tnt_next return no data.\n");
606
+ break;
607
+ }
608
+ j++;
609
+ is (mp_typeof(*data), MP_ARRAY, "Check array");
610
+ is (mp_decode_array(&data), 1, "Check array, again");
611
+ is (mp_decode_array(&data), 3, "And again (another)");
612
+
613
+ is (mp_typeof(*data), MP_UINT, "Check int");
614
+ uint32_t v=mp_decode_uint(&data);
615
+ is (v,i,"Check int val");
616
+
617
+ uint32_t sz_z = v + 10; if (v < 5) sz_z -= 5;
618
+
619
+ is (mp_typeof(*data), MP_UINT, "Check int");
620
+ v=mp_decode_uint(&data);
621
+ is (v,sz_z,"Check int val +5");
622
+
623
+ ok (mp_typeof(*data) == MP_STR &&
624
+ strncmp(mp_decode_str(&data, &str_len), ex, ex_len) == 0,
625
+ "Check str");
626
+ }
627
+
628
+ tnt_stream_free(tnt);
629
+
630
+ footer();
631
+ return check_plan();
632
+ }
633
+
634
+ static inline int
635
+ test_msgpack_array_iter() {
636
+ plan(32);
637
+ header();
638
+
639
+ /* simple array and array of arrays */
640
+ struct tnt_stream *sa, *aofa;
641
+ sa = tnt_object(NULL);
642
+ isnt(tnt_object_format(sa, "[%s%d%s%d]", "hello", 11, "world", 12),
643
+ -1, "Pack with format sa");
644
+ size_t sz = 0;
645
+ struct tnt_iter *it = tnt_iter_array_object(NULL, sa);
646
+ isnt(it, NULL, "check allocation");
647
+ while (tnt_next(it)) {
648
+ uint32_t str_len = 0;
649
+ const char *pos = TNT_IARRAY_ELEM(it);
650
+ switch (sz) {
651
+ case (0):
652
+ is (mp_typeof(*pos), MP_STR, "check str type");
653
+ is (strncmp(mp_decode_str(&pos, &str_len), "hello", 5),
654
+ 0, "check str value");
655
+ is (str_len, 5, "check string length");
656
+ break;
657
+ case (1):
658
+ is (mp_typeof(*pos), MP_UINT, "check int type");
659
+ is (mp_decode_uint(&pos), 11, "check int");
660
+ break;
661
+ case (2):
662
+ is (mp_typeof(*pos), MP_STR, "check str type");
663
+ is (strncmp(mp_decode_str(&pos, &str_len), "world", 5),
664
+ 0, "check str value");
665
+ is (str_len, 5, "check string length");
666
+ break;
667
+ case (3):
668
+ is (mp_typeof(*pos), MP_UINT, "check int type");
669
+ is (mp_decode_uint(&pos), 12, "check int");
670
+ break;
671
+ default:
672
+ fail("unreacheable section");
673
+ }
674
+ sz += 1;
675
+ }
676
+ tnt_iter_free(it);
677
+ tnt_stream_free(sa);
678
+
679
+ aofa = tnt_object(NULL);
680
+ isnt(tnt_object_format(aofa, "[[%d%d] [%d%d] [%d%d]]", 1, 2, 3,
681
+ 4, 5, 6), -1, "Pack with format aofa");
682
+ it = tnt_iter_array_object(NULL, aofa);
683
+ isnt(it, NULL, "check allocation");
684
+ sz = 1;
685
+ while (tnt_next(it)) {
686
+ const char *pos = TNT_IARRAY_ELEM(it);
687
+ size_t elen = TNT_IARRAY_ELEM_END(it) - pos;
688
+ is (mp_typeof(*pos), MP_ARRAY, "check for array");
689
+ struct tnt_iter *wit = tnt_iter_array(NULL, pos, elen);
690
+ isnt(wit, NULL, "check allocation");
691
+ while (tnt_next(wit)) {
692
+ const char *wpos = TNT_IARRAY_ELEM(wit);
693
+ is (mp_typeof(*wpos), MP_UINT, "check int type");
694
+ is (mp_decode_uint(&wpos), sz, "check int");
695
+ sz += 1;
696
+ }
697
+ tnt_iter_free(wit);
698
+ }
699
+ tnt_iter_free(it);
700
+ tnt_stream_free(aofa);
701
+
702
+ footer();
703
+ return check_plan();
704
+ }
705
+
706
+ static inline int
707
+ test_msgpack_mapa_iter() {
708
+ plan(34);
709
+ header();
710
+
711
+ /* simple map and map with arrays */
712
+ struct tnt_stream *sm, *mofa;
713
+ isnt(sm = tnt_object(NULL), NULL, "check allocation");
714
+ isnt(tnt_object_format(sm, "{%s%d%s%d}", "hello", 11, "world", 12),
715
+ -1, "Pack with format s,");
716
+
717
+ size_t sz = 0;
718
+ struct tnt_iter *it = tnt_iter_map_object(NULL, sm);
719
+ isnt(it, NULL, "check allocation");
720
+ while (tnt_next(it)) {
721
+ uint32_t str_len = 0;
722
+ const char *kpos = TNT_IMAP_KEY(it);
723
+ const char *vpos = TNT_IMAP_VAL(it);
724
+ switch (sz) {
725
+ case (0):
726
+ is (mp_typeof(*kpos), MP_STR, "check str type");
727
+ is (strncmp(mp_decode_str(&kpos, &str_len), "hello", 5),
728
+ 0, "check str value");
729
+ is (str_len, 5, "check string length");
730
+ is (mp_typeof(*vpos), MP_UINT, "check int type");
731
+ is (mp_decode_uint(&vpos), 11, "check int");
732
+ break;
733
+ case (1):
734
+ is (mp_typeof(*kpos), MP_STR, "check str type");
735
+ is (strncmp(mp_decode_str(&kpos, &str_len), "world", 5),
736
+ 0, "check str value");
737
+ is (str_len, 5, "check string length");
738
+ is (mp_typeof(*vpos), MP_UINT, "check int type");
739
+ is (mp_decode_uint(&vpos), 12, "check int");
740
+ break;
741
+ default:
742
+ fail("unreacheable section");
743
+ }
744
+ sz += 1;
745
+ }
746
+ tnt_iter_free(it);
747
+ tnt_stream_free(sm);
748
+
749
+ isnt(mofa = tnt_object(NULL), NULL, "check allocation");
750
+ isnt(tnt_object_format(mofa, "{%s [%d%d] %s [%d%d]}",
751
+ "hello", 0, 1,
752
+ "world", 2, 3), -1, "Pack with format aofa");
753
+ it = tnt_iter_map_object(NULL, mofa);
754
+ isnt(it, NULL, "check allocation");
755
+ sz = 0;
756
+ while (tnt_next(it)) {
757
+ const char *kpos = TNT_IMAP_KEY(it);
758
+ uint32_t str_len = 0;
759
+ if (sz == 0) {
760
+ is (mp_typeof(*kpos), MP_STR, "check str type");
761
+ is (strncmp(mp_decode_str(&kpos, &str_len), "hello", 5),
762
+ 0, "check str value");
763
+ is (str_len, 5, "check string length");
764
+ } else {
765
+ is (mp_typeof(*kpos), MP_STR, "check str type");
766
+ is (strncmp(mp_decode_str(&kpos, &str_len), "world", 5),
767
+ 0, "check str value");
768
+ is (str_len, 5, "check string length");
769
+ }
770
+ const char *vpos = TNT_IMAP_VAL(it);
771
+ size_t vlen = TNT_IMAP_VAL_END(it) - vpos;
772
+ is (mp_typeof(*vpos), MP_ARRAY, "check for array");
773
+ struct tnt_iter *wit = tnt_iter_array(NULL, vpos, vlen);
774
+ isnt(wit, NULL, "check allocation");
775
+ while (tnt_next(wit)) {
776
+ const char *wpos = TNT_IARRAY_ELEM(wit);
777
+ is (mp_typeof(*wpos), MP_UINT, "check int type");
778
+ is (mp_decode_uint(&wpos), sz, "check int");
779
+ sz += 1;
780
+ }
781
+ tnt_iter_free(wit);
782
+ }
783
+ tnt_iter_free(it);
784
+ tnt_stream_free(mofa);
785
+
786
+ footer();
787
+ return check_plan();
788
+ }
789
+
790
+ /*
791
+ static inline int
792
+ test_msgpack_mapa_iter() {
793
+ plan(5);
794
+ header();
795
+
796
+ struct tnt_stream *tnt = NULL; tnt = tnt_net(NULL);
797
+ isnt(tnt, NULL, "Check connection creation");
798
+ isnt(tnt_set(tnt, TNT_OPT_URI, uri), -1, "Setting URI");
799
+ isnt(tnt_connect(tnt), -1, "Connecting");
800
+ tnt_stream_reqid(tnt, 0);
801
+
802
+ struct tnt_request *req = tnt_request_replace(NULL);
803
+ isnt(req, NULL, "Check request creation");
804
+ is (req->hdr.type, TNT_OP_REPLACE, "Check that we inited replace");
805
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
806
+ is (tnt_request_set_tuple_format(req, "[%d%s%d%s]", 1, "hello", 2, "world"), 0, "Set tuple");
807
+ isnt(tnt_request_compile(tnt, req), -1, "Compile request");
808
+ tnt_request_free(req);
809
+
810
+ struct tnt_request *req = tnt_request_upsert(NULL);
811
+ isnt(req, NULL, "Check request creation");
812
+ is (req->hdr.type, TNT_OP_UPDATE, "CHeck that we inited upsert");
813
+ is (tnt_request_set_sspacez(tnt, req, "test"), 0, "Set space");
814
+ is (tnt_request_set_tuple(req, val), 0, ""
815
+ tnt_stream_free(val);
816
+ tnt_stream_free(val);
817
+
818
+ footer();
819
+ return check_plan();
820
+ }
821
+ */
822
+ int main() {
823
+ plan(9);
824
+
825
+ char uri[128] = {0};
826
+ snprintf(uri, 128, "%s%s%s", "test:test@", "localhost:", getenv("PRIMARY_PORT"));
827
+
828
+ test_connect_tcp();
829
+ test_object();
830
+ test_request_01(uri);
831
+ test_request_02(uri);
832
+ test_request_03(uri);
833
+ test_request_04(uri);
834
+ test_request_05(uri);
835
+ test_msgpack_array_iter();
836
+ test_msgpack_mapa_iter();
837
+
838
+ return check_plan();
839
+ }
840
+