1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/*
* Copyright 2010-2015, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and iproto forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in iproto form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
extern "C" {
#include "unit.h"
} /* extern "C" */
#include "trivia/util.h"
#include "box/error.h"
#include "box/xrow.h"
#include "box/iproto_constants.h"
#include "uuid/tt_uuid.h"
#include "version.h"
#include "random.h"
#include "memory.h"
#include "fiber.h"
int
test_iproto_constants()
{
/*
* Check that there are no gaps in the iproto_key_strs
* array. In a case of a gap the iproto_key_strs will be
* accessed by an index out of the range
* [0, IPROTO_KEY_MAX).
*/
for (int i = 0; i < IPROTO_KEY_MAX; ++i)
(void) iproto_key_name((enum iproto_key) i);
/* Same for iproto_type. */
for (uint32_t i = 0; i < IPROTO_TYPE_STAT_MAX; ++i)
(void) iproto_type_name(i);
return 0;
}
int
test_greeting()
{
plan(40);
char greetingbuf[IPROTO_GREETING_SIZE + 1];
struct greeting source, greeting;
/*
* Round-trip
*/
memset(&source, 0, sizeof(source));
tt_uuid_create(&source.uuid);
source.version_id = version_id(2 + rand() % 98, rand() % 100, 9);
strcpy(source.protocol, "Binary");
source.salt_len = 20 + rand() % 23;
random_bytes(source.salt, source.salt_len);
greeting_encode(greetingbuf, source.version_id, &source.uuid,
source.salt, source.salt_len);
int rc = greeting_decode(greetingbuf, &greeting);
is(rc, 0, "round trip");
is(greeting.version_id, source.version_id, "roundtrip.version_id");
ok(strcmp(greeting.protocol, source.protocol) == 0, "roundtrip.protocol");
ok(tt_uuid_is_equal(&greeting.uuid, &source.uuid), "roundtrip.uuid");
is(greeting.salt_len, source.salt_len, "roundtrip.salt_len");
is(memcmp(greeting.salt, source.salt, greeting.salt_len), 0,
"roundtrip.salt");
/*
* Iproto greeting
*/
const char *greetingbuf_iproto =
"Tarantool 1.6.7 (Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n";
uint8_t iproto_salt[] = { 0x16, 0x7e, 0x63, 0x31, 0x62, 0x93, 0xbf, 0x2f,
0xd7, 0xcf, 0x8c, 0xff, 0x03, 0x60, 0x98, 0x73,
0x1b, 0x01, 0x42, 0x14, 0x13, 0x2f, 0x46, 0x27,
0x77, 0xcc, 0x32, 0xab, 0x2d, 0x21, 0x66, 0xbb };
rc = greeting_decode(greetingbuf_iproto, &greeting);
is(rc, 0, "decode iproto");
is(greeting.version_id, version_id(1, 6, 7), "iproto.version_id");
ok(strcmp(greeting.protocol, "Binary") == 0, "iproto.protocol");
ok(strcmp(tt_uuid_str(&greeting.uuid),
"7170b4af-c72f-4f07-8729-08fc678543a1") == 0, "iproto.uuid");
is(greeting.salt_len, sizeof(iproto_salt), "iproto.salt_len");
is(memcmp(greeting.salt, iproto_salt, greeting.salt_len), 0,
"iproto.salt");
/*
* Lua greeting
*/
const char *greetingbuf_lua =
"Tarantool 1.6.7 (Lua console) \n"
"type 'help' for interactive help \n";
rc = greeting_decode(greetingbuf_lua, &greeting);
is(rc, 0, "decode lua");
is(greeting.version_id, version_id(1, 6, 7), "lua.version_id");
ok(strcmp(greeting.protocol, "Lua console") == 0, "lua.protocol");
ok(tt_uuid_is_nil(&greeting.uuid), "lua.uuid");
is(greeting.salt_len, 0, "lua.salt_len");
/*
* Iproto greeting < 1.6.6
*/
const char *greetingbuf_iproto_166 =
"Tarantool 1.6.6-201-g2495838 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n";
rc = greeting_decode(greetingbuf_iproto_166, &greeting);
is(rc, 0, "decode iproto166");
is(greeting.version_id, version_id(1, 6, 6), "iproto166.version_id");
ok(strcmp(greeting.protocol, "Binary") == 0, "iproto166.protocol");
ok(tt_uuid_is_nil(&greeting.uuid), "iproto166.uuid");
is(greeting.salt_len, sizeof(iproto_salt), "iproto166.salt_len");
is(memcmp(greeting.salt, iproto_salt, greeting.salt_len), 0,
"iproto166.salt");
/*
* Lua greeting < 1.6.6
*/
const char *greetingbuf_lua_166 =
"Tarantool 1.6.6-201-g2495838 (Lua console) \n"
"type 'help' for interactive help \n";
rc = greeting_decode(greetingbuf_lua_166, &greeting);
is(rc, 0, "decode lua166");
is(greeting.version_id, version_id(1, 6, 6), "lua166.version_id");
ok(strcmp(greeting.protocol, "Lua console") == 0, "lua166.protocol");
ok(tt_uuid_is_nil(&greeting.uuid), "lua166.uuid");
is(greeting.salt_len, 0, "lua166.salt_len");
/*
* Invalid
*/
const char *invalid[] = {
"Tarantool 1.6.7 (Binary) \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool1.6.7 (Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7(Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 (Binary)7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 (Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 "
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= ",
"Tarantool 1.6.7 (Binary) 7170b4af-c72f-4f07-8729-08fc678543 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 (Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z \n",
"Tarantool 1.6.7 (Binary) \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 (Binary 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 Binary 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Apache 2.4.6 (Binary) 7170b4af-c72f-4f07-8729-08fc678543a1 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
"Tarantool 1.6.7 \n"
"Fn5jMWKTvy/Xz4z/A2CYcxsBQhQTL0Ynd8wyqy0hZrs= \n",
};
int count = sizeof(invalid) / sizeof(invalid[0]);
for (int i = 0; i < count; i++) {
rc = greeting_decode(invalid[i], &greeting);
isnt(rc, 0, "invalid %d", i);
}
return check_plan();
}
void
test_xrow_header_encode_decode()
{
plan(10);
struct xrow_header header;
char buffer[2048];
char *pos = mp_encode_uint(buffer, 300);
is(xrow_header_decode(&header, (const char **) &pos,
buffer + 100, true), -1, "bad msgpack end");
header.type = 100;
header.replica_id = 200;
header.lsn = 400;
header.tm = 123.456;
header.bodycnt = 0;
header.tsn = header.lsn;
header.is_commit = true;
uint64_t sync = 100500;
struct iovec vec[1];
is(1, xrow_header_encode(&header, sync, vec, 200), "encode");
int fixheader_len = 200;
pos = (char *)vec[0].iov_base + fixheader_len;
is(mp_decode_map((const char **)&pos), 5, "header map size");
struct xrow_header decoded_header;
const char *begin = (const char *)vec[0].iov_base;
begin += fixheader_len;
const char *end = (const char *)vec[0].iov_base;
end += vec[0].iov_len;
is(xrow_header_decode(&decoded_header, &begin, end, true), 0,
"header decode");
is(header.type, decoded_header.type, "decoded type");
is(header.replica_id, decoded_header.replica_id, "decoded replica_id");
is(header.lsn, decoded_header.lsn, "decoded lsn");
is(header.tm, decoded_header.tm, "decoded tm");
is(decoded_header.sync, sync, "decoded sync");
is(decoded_header.bodycnt, 0, "decoded bodycnt");
check_plan();
}
void
test_request_str()
{
plan(1);
struct xrow_header header;
header.replica_id = 5;
header.lsn = 100;
struct request request;
request.header = &header;
request.type = 1;
request.space_id = 512;
request.index_id = 1;
char buffer[2048];
request.key = buffer;
char *pos = mp_encode_array(buffer, 1);
pos = mp_encode_uint(pos, 200);
request.tuple = pos;
pos = mp_encode_array(pos, 1);
pos = mp_encode_uint(pos, 300);
request.ops = pos;
pos = mp_encode_array(pos, 1);
pos = mp_encode_uint(pos, 400);
is(strcmp("{type: 'SELECT', replica_id: 5, lsn: 100, "
"space_id: 512, index_id: 1, "
"key: [200], tuple: [300], ops: [400]}",
request_str(&request)), 0, "request_str");
check_plan();
}
int
main(void)
{
memory_init();
fiber_init(fiber_c_invoke);
plan(3);
random_init();
test_iproto_constants();
test_greeting();
test_xrow_header_encode_decode();
test_request_str();
random_free();
fiber_free();
memory_free();
return check_plan();
}
|