File: 030-spaces.t

package info (click to toggle)
libdr-tarantool-perl 0.15-1%2Bdeb70u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 308 kB
  • sloc: perl: 2,901; makefile: 21
file content (289 lines) | stat: -rw-r--r-- 10,871 bytes parent folder | download
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
#!/usr/bin/perl

use warnings;
use strict;
use utf8;
use open qw(:std :utf8);
use lib qw(lib ../lib);

use Test::More tests    => 123;
use Encode qw(decode encode);


BEGIN {
    # Подготовка объекта тестирования для работы с utf8
    my $builder = Test::More->builder;
    binmode $builder->output,         ":utf8";
    binmode $builder->failure_output, ":utf8";
    binmode $builder->todo_output,    ":utf8";

    use_ok 'DR::Tarantool::Spaces';
}

use constant MODEL => 'DR::Tarantool::Spaces';


ok !eval { MODEL->new }, 'no arguments';
like $@, qr{HASHREF}, 'error message';
ok !eval { MODEL->new('abc') }, 'wrong arguments';
like $@, qr{HASHREF}, 'error message';
ok !eval { MODEL->new({a => 1}) }, 'wrong arguments';
like $@, qr{space number}, 'error message';
ok !eval { MODEL->new({}) }, 'empty spaces';

my $s = MODEL->new({
    0 => {
        name    => 'test',
        default_type    => 'NUM',
        fields  => [
            qw(a b c),
            {
                type    => 'UTF8STR',
                name    => 'd'
            },
            {
                type    => 'NUM',
                name    => 'a123',
            },
            {
                type    => 'STR',
                name    => 'abcd',
            },
            {
                type    => 'INT',
                name    => 'int',
            },
            {
                type    => 'MONEY',
                name    => 'money',
            }
        ],
        indexes => {
            0   => [ qw(a b) ],
            1   => 'd',
            2   => 'c',
            3   => {
                name    => 'abc',
                fields  => [ qw(a b c) ]
            }
        }
    },
    1   => {
        name    => 'json',
        fields  => [
            {
                name => 'f',
                type => 'JSON',
            }
        ],
        indexes => {}
    }
});

my $v = unpack 'L<', $s->pack_field( test => a => '10' );
cmp_ok $v, '~~', 10, 'pack_field NUM';
$v = unpack 'L<', $s->pack_field( test => 0 => 11 );
cmp_ok $v, '~~', 11, 'pack_field NUM';
$v = unpack 'L<', $s->pack_field( 0 => 0 => 13 );
cmp_ok $v, '~~', 13, 'pack_field NUM';
$v = unpack 'L<', $s->pack_field( test => a123 => 13 );
cmp_ok $v, '~~', 13, 'pack_field NUM64';
$v = $s->pack_field( test => d => 'test' );
cmp_ok $v, '~~', 'test', 'pack_field STR';
$v = decode utf8 => $s->pack_field( test => d => 'привет' );
cmp_ok $v, '~~', 'привет', 'pack_field STR';
$v = unpack 'l<' => $s->pack_field( test => int => -10 );
cmp_ok $v, '~~', -10, 'pack_field INT';
$v = decode utf8 => $s->pack_field( test => d => encode utf8 => 'привет' );
cmp_ok $v, '~~', 'привет', 'pack_field STR';

# money
$v = unpack 'l<' => $s->pack_field( test => money => '123');
cmp_ok $v, '~~', 12300, 'pack_field MONEY(123)';
$v = unpack 'l<' => $s->pack_field( test => money => '-123');
cmp_ok $v, '~~', -12300, 'pack_field MONEY(-123)';
$v = unpack 'l<' => $s->pack_field( test => money => '.123');
cmp_ok $v, '~~', 12, 'pack_field MONEY(.12)';
$v = unpack 'l<' => $s->pack_field( test => money => '0');
cmp_ok $v, '~~', 0, 'pack_field MONEY(0)';
$v = unpack 'l<' => $s->pack_field( test => money => '12345.21');
cmp_ok $v, '~~', 1234521, 'pack_field MONEY(12345.21)';
$v = unpack 'l<' => $s->pack_field( test => money => '12345.2');
cmp_ok $v, '~~', 1234520, 'pack_field MONEY(12345.20)';
$v = unpack 'l<' => $s->pack_field( test => money => '-12345.21');
cmp_ok $v, '~~', -1234521, 'pack_field MONEY(-12345.21)';



$v = $s->unpack_field( test => a => pack 'L<' => 14);
cmp_ok $v, '~~', 14, 'unpack_field NUM';
$v = $s->unpack_field( test => int => pack 'l<' => -14);
cmp_ok $v, '~~', -14, 'unpack_field INT';
$v = $s->unpack_field( test => 0 => pack 'L<' => 14);
cmp_ok $v, '~~', 14, 'unpack_field NUM';
$v = $s->unpack_field( 0 => 0 => pack 'L<' => 14);
cmp_ok $v, '~~', 14, 'unpack_field NUM';
$v = $s->unpack_field( 0 => 'abcd' => 'test');
cmp_ok $v, '~~', 'test', 'unpack_field STR';
$v = $s->unpack_field( 0 => 'abcd' => 'привет');
cmp_ok $v, '~~', encode(utf8 => 'привет'), 'unpack_field STR';
$v = $s->unpack_field( 0 => 'd' => 'привет');
cmp_ok $v, '~~', 'привет', 'unpack_field STR';

$v = $s->unpack_field( test => money => pack 'l<' => 12345);
cmp_ok $v, '~~', 123.45, 'unpack_field MONEY(123.45)';
$v = $s->unpack_field( test => money => pack 'l<' => 0);
cmp_ok $v, '~~', '0.00', 'unpack_field MONEY(0)';
$v = $s->unpack_field( test => money => pack 'l<' => -1234);
cmp_ok $v, '~~', '-12.34', 'unpack_field MONEY(-12.34)';
$v = $s->unpack_field( test => money => pack 'l<' => 4);
cmp_ok $v, '~~', '0.04', 'unpack_field MONEY(0.04)';


my $tt = [0, 1, 2, 'медвед', 10, 'test'];
my $t = $s->pack_tuple(test => $tt);
isa_ok $t => 'ARRAY';
my $ut = $s->unpack_tuple(0 => $t);
isa_ok $ut => 'ARRAY';
ok @$tt ~~ @$ut, 'unpacked packed tuple';

cmp_ok unpack('L<', $t->[0]), '~~', 0, 'tuple[0]';
cmp_ok unpack('L<', $t->[1]), '~~', 1, 'tuple[1]';
cmp_ok unpack('L<', $t->[2]), '~~', 2, 'tuple[2]';
cmp_ok $t->[3], '~~', encode(utf8 => 'медвед'), 'tuple[3]';
cmp_ok unpack('L<', $t->[4]), '~~', 10, 'tuple[4]';
cmp_ok $t->[5], '~~', 'test', 'tuple[5]';

# indexes
{
    my $w;
    local $SIG{__WARN__} = sub { $w = $_[0] };
    $t = $s->space('test')->pack_keys([1, 2], 'i0');
    like $w => qr{Ambiguous keys list}, 'ambiguous keys warning';
    ok @{ $t->[0] } ~~ @{[ pack('L<', 1), pack 'L<', 2 ]}, 'pack_keys';
    undef $w;
    $t = $s->space('test')->pack_keys([[2, 3]], 'i0');
    ok @{ $t->[0] } ~~ @{[ pack('L<', 2), pack 'L<', 3 ]}, 'pack_keys';
    cmp_ok $w, '~~', undef, 'there was no ambiguous warning';
}
$t = eval { $s->space('test')->pack_keys([[1, 2, 3]], 'i0'); };
like $@, qr{must have 2}, 'error message';
cmp_ok $t, '~~', undef, 'wrong elements count';

{
    my $w;
    local $SIG{__WARN__} = sub { $w = $_[0] };
    $t = $s->space('test')->pack_keys([2, 3], 0);
    like $w => qr{Ambiguous keys list}, 'ambiguous keys warning';
    ok @{ $t->[0] } ~~ @{[ pack('L<', 2), pack 'L<', 3 ]}, 'pack_keys';
    undef $w;
    $t = $s->space('test')->pack_keys([[2, 3]], 0);
    ok @{ $t->[0] } ~~ @{[ pack('L<', 2), pack 'L<', 3 ]}, 'pack_keys';
    cmp_ok $w, '~~', undef, 'there was no ambiguous warning';
}
$t = eval { $s->space('test')->pack_keys([[1,2,3]], 0); };
like $@, qr{must have 2}, 'error message';
cmp_ok $t, '~~', undef, 'wrong elements count';

$t = $s->space('test')->pack_keys(4, 'i2');
cmp_ok unpack('L<', $t->[0][0]), '~~', 4, 'pack_keys';
$t = $s->space('test')->pack_keys([5], 'i2');
cmp_ok unpack('L<', $t->[0][0]), '~~', 5, 'pack_keys';
$t = $s->space('test')->pack_keys([[6]], 'i2');
cmp_ok unpack('L<', $t->[0][0]), '~~', 6, 'pack_keys';
$t = $s->space('test')->pack_keys([7,8,9], 'i2');
cmp_ok unpack('L<', $t->[0][0]), '~~', 7, 'pack_keys';
cmp_ok unpack('L<', $t->[1][0]), '~~', 8, 'pack_keys';
cmp_ok unpack('L<', $t->[2][0]), '~~', 9, 'pack_keys';
$t = eval { $s->space('test')->pack_keys([[7,8,9]], 'i2') };
like $@, qr{must have 1}, 'error message';




# pack_operation
my $op = $s->space('test')->pack_operation([d => 'delete']);
cmp_ok $op->[0], '~~', 3, '* operation field';
cmp_ok $op->[1], '~~', 'delete', 'operation name';

for (qw(insert add and or xor set)) {
    my $n = int rand 100000;
    $op = $s->space('test')->pack_operation([a123 => $_ => $n]);
    cmp_ok $op->[0], '~~', 4, "operation field: $_";
    cmp_ok $op->[1], '~~', $_, 'operation name';
    cmp_ok unpack('L<', $op->[2]), '~~', $n, 'operation argument';
}

$op = $s->space('test')->pack_operation([d => 'substr', 1, 2]);
cmp_ok $op->[0], '~~', 3, 'operation field: substr';
cmp_ok $op->[1], '~~', 'substr', 'operation name';
cmp_ok $op->[2], '~~', 1, 'operation argument 1';
cmp_ok $op->[3], '~~', 2, 'operation argument 2';
cmp_ok $op->[4], '~~', undef, 'operation argument 3';

$op = $s->space('test')->pack_operation([d => 'substr', 231, 232, 'привет']);
cmp_ok $op->[0], '~~', 3, 'operation field: substr';
cmp_ok $op->[1], '~~', 'substr', 'operation name';
cmp_ok $op->[2], '~~', 231, 'operation argument 1';
cmp_ok $op->[3], '~~', 232, 'operation argument 2';
cmp_ok $op->[4], '~~', 'привет', 'operation argument 3';

$op = $s->space('test')->pack_operations([ d => set => 'тест']);
cmp_ok $op->[0][0], '~~', 3, "operation field: set";
cmp_ok $op->[0][1], '~~', 'set', 'operation name';
cmp_ok decode(utf8 => $op->[0][2]), '~~', 'тест', 'operation argument';
$op = $s->space('test')->pack_operations([
    [ d => set => 'тест'], [1 => insert => 500]
]);
cmp_ok $op->[0][0], '~~', 3, "operation field: set";
cmp_ok $op->[0][1], '~~', 'set', 'operation name';
cmp_ok decode(utf8 => $op->[0][2]), '~~', 'тест', 'operation argument';

cmp_ok $op->[1][0], '~~', 1, "operation field: set";
cmp_ok $op->[1][1], '~~', 'insert', 'operation name';
cmp_ok unpack('L<', $op->[1][2]), '~~', 500, 'operation argument';


$op = $s->pack_field(json => f => undef);
cmp_ok $op, '~~', 'null', 'pack json: undef';
cmp_ok $s->unpack_field(json => f => $op), '~~', undef, 'unpack json: undef';

$op = $s->pack_field(json => f => 123);
cmp_ok $op, '~~', '123', 'pack json: scalar';
cmp_ok $s->unpack_field(json => f => $op), '~~', 123, 'unpack json: scalar';

$op = $s->pack_field(json => f => []);
cmp_ok $op, '~~', '[]', 'pack json: empty array';
isa_ok $s->unpack_field(json => f => $op) => 'ARRAY',
    'unpack json: empty array';

$op = $s->pack_field(json => f => {});
cmp_ok $op, '~~', '{}', 'pack json: empty hash';
isa_ok $s->unpack_field(json => f => $op) => 'HASH',
    'unpack json: empty hash';

$op = $s->pack_field(json => f => [qw(hello world)]);
cmp_ok decode(utf8 => $op), '~~', '["hello","world"]', 'pack json: array';
$op = $s->unpack_field(json => f => $op);
isa_ok $op => 'ARRAY', 'unpack json: array';
cmp_ok $op->[0], '~~', 'hello', 'first element';
cmp_ok $op->[1], '~~', 'world', 'second element';

$op = $s->pack_field(json => f => [qw(привет медвед)]);
cmp_ok decode(utf8 => $op), '~~', '["привет","медвед"]', 'pack json: array';
$op = $s->unpack_field(json => f => $op);
isa_ok $op => 'ARRAY', 'unpack json: array';
cmp_ok $op->[0], '~~', 'привет', 'first utf8 element';
cmp_ok $op->[1], '~~', 'медвед', 'second utf8 element';

$op = $s->pack_field(json => f => {qw(hello world)});
cmp_ok decode(utf8 => $op), '~~', '{"hello":"world"}', 'pack json: hash';
$op = $s->unpack_field(json => f => $op);
isa_ok $op => 'HASH', 'unpack json: hash';
cmp_ok $op->{hello}, '~~', 'world', 'key element';

$op = $s->pack_field(json => f => {qw(привет медвед)});
cmp_ok decode(utf8 => $op), '~~', '{"привет":"медвед"}', 'pack json: hash';
$op = $s->unpack_field(json => f => $op);
isa_ok $op => 'HASH', 'unpack json: hash';
cmp_ok $op->{привет}, '~~', 'медвед', 'key utf8 element';