|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* This file is part of the Tarantool Client package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Eugene Leonovich <[email protected]> |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
declare(strict_types=1); |
|
13
|
|
|
|
|
14
|
|
|
namespace Tarantool\Client\Tests\Integration\Requests; |
|
15
|
|
|
|
|
16
|
|
|
use Tarantool\Client\Exception\RequestFailed; |
|
17
|
|
|
use Tarantool\Client\Schema\Criteria; |
|
18
|
|
|
use Tarantool\Client\Tests\Integration\TestCase; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @eval space = create_space('request_replace') |
|
22
|
|
|
* @eval space:create_index('primary', {type = 'hash', parts = {1, 'unsigned'}}) |
|
23
|
|
|
* @eval space:create_index('secondary', {type = 'tree', parts = {2, 'str'}}) |
|
24
|
|
|
* @eval space:insert{2, 'replace_me'} |
|
25
|
|
|
*/ |
|
26
|
|
|
final class ReplaceTest extends TestCase |
|
27
|
|
|
{ |
|
28
|
|
|
public function testReplace() : void |
|
29
|
|
|
{ |
|
30
|
|
|
$space = $this->client->getSpace('request_replace'); |
|
31
|
|
|
|
|
32
|
|
|
self::assertSame([[2, 'replace_me']], $space->select(Criteria::key([2]))); |
|
33
|
|
|
self::assertSame([[2, 'replaced']], $space->replace([2, 'replaced'])); |
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
|
|
public function testReplaceEmptyTuple() : void |
|
37
|
|
|
{ |
|
38
|
|
|
$space = $this->client->getSpace('request_replace'); |
|
39
|
|
|
|
|
40
|
|
|
$this->expectException(RequestFailed::class); |
|
41
|
|
|
$this->expectExceptionCode(39); // ER_FIELD_MISSING |
|
42
|
|
|
|
|
43
|
|
|
$space->replace([]); |
|
44
|
|
|
} |
|
45
|
|
|
} |
|
46
|
|
|
|