forked from basho/riak-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUseCasesTest.php
400 lines (340 loc) · 14 KB
/
UseCasesTest.php
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
// vim: set ts=4 sw=4 sts=4 et:
/**
* PHP version 5.3.0
*
* @author Rusty Klophaus (@rklophaus) (rusty@basho.com)
* @author Maxim Shamaev (maxim.shamaev@gmail.com)
* @license Apache License 2.0 http://www.apache.org/licenses/LICENSE-2.0
* @version $id$
* @link http://www.basho.com/
* @since 1.0.0
*/
class UseCasesTest extends PHPUnit_Framework_TestCase
{
public function testIsAlive()
{
$client = new \Riak\Client(HOST, PORT);
$this->assertTrue($client->isAlive(), 'check server live status');
}
public function testStoreAndGet()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$rand = rand();
$obj = $bucket->newObject('foo', $rand);
$obj->store();
$obj = $bucket->get('foo');
$this->assertTrue($obj->exists(), 'object must be exists');
$this->assertEquals('bucket', $obj->getBucket()->getName(), 'check bucket name');
$this->assertEquals('foo', $obj->getKey(), 'check key name');
$this->assertEquals($rand, $obj->getData(), 'check cell data');
}
public function testStoreAndGetWithoutKey()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$rand = rand();
$obj = $bucket->newObject(null, $rand);
$obj->store();
$key = $obj->getKey();
$obj = $bucket->get($key);
$this->assertTrue($obj->exists(), 'object must be exists');
$this->assertEquals('bucket', $obj->getBucket()->getName(), 'check bucket name');
$this->assertEquals($key, $obj->getKey(), 'check key name');
$this->assertEquals($rand, $obj->getData(), 'check cell data');
}
public function testBinaryStoreAndGet()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
// Store as binary, retrieve as binary, then compare...
$rand = rand();
$obj = $bucket->newBinary('foo1', $rand);
$obj->store();
$obj = $bucket->getBinary('foo1');
$this->assertTrue($obj->exists(), 'object must be exists');
$this->assertEquals($rand, $obj->getData(), 'check cell data');
//Store as JSON, retrieve as binary, JSON-decode, then compare...
$data = array(rand(), rand(), rand());
$obj = $bucket->newObject('foo2', $data);
$obj->store();
$obj = $bucket->getBinary('foo2');
$this->assertEquals($data, json_decode($obj->getData()), 'check cell JSON data');
}
public function testMissingObject()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$obj = $bucket->get('missing');
$this->assertFalse($obj->exists(), 'object must be NOT exists');
$this->assertNull($obj->getData(), 'check cell data - must be null');
}
public function testDelete()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$rand = rand();
$obj = $bucket->newObject('foo', $rand);
$obj->store();
$obj = $bucket->get('foo');
$this->assertTrue($obj->exists(), 'object must be exists');
$obj->delete();
$obj->reload();
$this->assertFalse($obj->exists(), 'object must be NOT exists - cell is removed');
}
public function testSetBucketProperties()
{
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
// Test setting allow mult...
$bucket->setAllowMultiples(true);
$this->assertTrue($bucket->getAllowMultiples(), 'check allowMultiples property - checked');
// Test setting nval...
$bucket->setNVal(3);
$this->assertEquals(3, $bucket->getNVal(), 'check NVal');
// Test setting multiple properties...
$bucket->setProperties(array('allow_mult' => false, 'n_val' => 2));
$this->assertFalse($bucket->getAllowMultiples(), 'check allowMultiples property - unchecked');
$this->assertEquals(2, $bucket->getNVal(), 'check new NVal');
}
public function testSiblings()
{
// Set up the bucket, clear any existing object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('multiBucket');
$bucket->setAllowMultiples('true');
$obj = $bucket->get('foo');
$obj->delete();
// Store the same object multiple times...
for ($i = 0; $i < 5; $i++) {
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('multiBucket');
$obj = $bucket->newObject('foo', rand());
$obj->store();
}
// Make sure the object has 5 siblings...
$this->assertTrue($obj->hasSiblings(), 'check hasSiblings flag');
$this->assertEquals(5, $obj->getSiblingCount(), 'check siblings count');
// Test getSibling()/getSiblings()...
$siblings = $obj->getSiblings();
$obj3 = $obj->getSibling(3);
$this->assertEquals($siblings[3]->getData(), $obj3->getData(), 'check equal data');
// Resolve the conflict, and then do a get...
$obj3 = $obj->getSibling(3);
$obj3->store();
$obj->reload();
$this->assertEquals($obj->getData(), $obj3->getData(), 'check equal data after update');
// Clean up for next test...
$obj->delete();
}
public function testJavascriptSourceMap()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
// Run the map...
$result = $client
->add('bucket', 'foo')
->map('function (v) { return [JSON.parse(v.values[0].data)]; }')
->run();
$this->assertEquals(array(2), $result, 'check result');
}
public function testJavascriptNamedMap()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
// Run the map...
$result = $client
->add('bucket', 'foo')
->map('Riak.mapValuesJson')
->run();
$this->assertEquals(array(2), $result, 'check result');
}
public function testJavascriptSourceMapReduce()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
$bucket->newObject('bar', 3)->store();
$bucket->newObject('baz', 4)->store();
// Run the map...
$result = $client
->add('bucket', 'foo')
->add('bucket', 'bar')
->add('bucket', 'baz')
->map('function (v) { return [1]; }')
->reduce('Riak.reduceSum')
->run();
$this->assertEquals(3, $result[0], 'check result');
}
public function testJavascriptNamedMapReduce()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
$bucket->newObject('bar', 3)->store();
$bucket->newObject('baz', 4)->store();
// Run the map...
$result = $client
->add('bucket', 'foo')
->add('bucket', 'bar')
->add('bucket', 'baz')
->map('Riak.mapValuesJson')
->reduce('Riak.reduceSum')
->run();
$this->assertEquals(array(9), $result, 'check result');
}
public function testJavascriptBucketMapReduce()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket_' . rand());
$bucket->newObject('foo', 2)->store();
$bucket->newObject('bar', 3)->store();
$bucket->newObject('baz', 4)->store();
// Run the map...
$result = $client
->add($bucket->getName())
->map('Riak.mapValuesJson')
->reduce('Riak.reduceSum')
->run();
$this->assertEquals(array(9), $result, 'check result');
}
public function testJavascriptArgMapReduce()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
// Run the map...
$result = $client
->add('bucket', 'foo', 5)
->add('bucket', 'foo', 10)
->add('bucket', 'foo', 15)
->add('bucket', 'foo', -15)
->add('bucket', 'foo', -5)
->map('function(v, arg) { return [arg]; }')
->reduce('Riak.reduceSum')
->run();
$this->assertEquals(array(10), $result, 'check result');
}
public function testErlangMapReduce()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
$bucket->newObject('bar', 2)->store();
$bucket->newObject('baz', 4)->store();
// Run the map...
$result = $client
->add('bucket', 'foo')
->add('bucket', 'bar')
->add('bucket', 'baz')
->map(array('riak_kv_mapreduce', 'map_object_value'))
->reduce(array('riak_kv_mapreduce', 'reduce_set_union'))
->run();
$this->assertEquals(2, count($result), 'check result');
}
public function testMapReduceFromObject()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->store();
$obj = $bucket->get('foo');
$result = $obj->map('Riak.mapValuesJson')->run();
$this->assertEquals(array(2), $result, 'check result');
}
public function testKeyFilter()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('filter_bucket');
$bucket->newObject('foo_one', array('foo' => 'one' ))->store();
$bucket->newObject('foo_two', array('foo' => 'two' ))->store();
$bucket->newObject('foo_three', array('foo' => 'three'))->store();
$bucket->newObject('foo_four', array('foo' => 'four' ))->store();
$bucket->newObject('moo_five', array('foo' => 'five' ))->store();
$mapred = $client
->add($bucket->getName())
->keyFilter(array('tokenize', '_', 1), array('eq', 'foo'));
$results = $mapred->run();
$this->assertEquals(4, count($results), 'check result');
}
public function testKeyFilterOperator()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('filter_bucket');
$bucket->newObject('foo_one', array('foo' => 'one' ))->store();
$bucket->newObject('foo_two', array('foo' => 'two' ))->store();
$bucket->newObject('foo_three', array('foo' => 'three'))->store();
$bucket->newObject('foo_four', array('foo' => 'four' ))->store();
$bucket->newObject('moo_five', array('foo' => 'five' ))->store();
$mapred = $client
->add($bucket->getName())
->keyFilter(array('starts_with', 'foo'))
->keyFilterOr(array('ends_with', 'five'));
$results = $mapred->run();
$this->assertEquals(5, count($results), 'check result');
}
public function testStoreAndGetLinks()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)->
addLink($bucket->newObject('foo1'))->
addLink($bucket->newObject('foo2'), 'tag')->
addLink($bucket->newObject('foo3'), 'tag2!@//$%^&*')->
store();
$obj = $bucket->get('foo');
$links = $obj->getLinks();
$this->assertEquals(3, count($links), 'check links number');
}
public function testLinkWalking()
{
// Create the object...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('bucket');
$bucket->newObject('foo', 2)
->addLink($bucket->newObject('foo1', 'test1')->store())
->addLink($bucket->newObject('foo2', 'test2')->store(), 'tag')
->addLink($bucket->newObject('foo3', 'test3')->store(), 'tag2!@//$%^&*')
->store();
$obj = $bucket->get('foo');
$results = $obj->link('bucket')->run();
$this->assertEquals(3, count($results), 'check results length');
$results = $obj->link('bucket', 'tag')->run();
$this->assertEquals(1, count($results), 'check new results length');
}
public function testSearchIntegration()
{
// Create some objects to search across...
$client = new \Riak\Client(HOST, PORT);
$bucket = $client->bucket('searchbucket');
$bucket->newObject('one', array('foo' => 'one', 'bar' => 'red'))->store();
$bucket->newObject('two', array('foo' => 'two', 'bar' => 'green'))->store();
$bucket->newObject('three', array('foo' => 'three', 'bar' => 'blue'))->store();
$bucket->newObject('four', array('foo' => 'four', 'bar' => 'orange'))->store();
$bucket->newObject('five', array('foo' => 'five', 'bar' => 'yellow'))->store();
// Run some operations...
$results = $client->search('searchbucket', 'foo:one OR foo:two')->run();
if (count($results) == 0) {
$this->markTestSkipped(
'Not running test "testSearchIntegration()"' . PHP_EOL
. 'Please ensure that you have installed the Riak Search hook on bucket "searchbucket" by running "bin/search-cmd install searchbucket"'
);
}
$this->assertEquals(2, count($results), 'check results length');
$results = $client->search('searchbucket', '(foo:one OR foo:two OR foo:three OR foo:four) AND (NOT bar:green)')->run();
$this->assertEquals(3, count($results), 'check new results length');
}
}