|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Licensed to CRATE Technology GmbH("Crate") under one or more contributor |
|
4
|
|
|
* license agreements. See the NOTICE file distributed with this work for |
|
5
|
|
|
* additional information regarding copyright ownership. Crate licenses |
|
6
|
|
|
* this file to you under the Apache License, Version 2.0 (the "License"); |
|
7
|
|
|
* you may not use this file except in compliance with the License. You may |
|
8
|
|
|
* obtain a copy of the License at |
|
9
|
|
|
* |
|
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
11
|
|
|
* |
|
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
|
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
|
14
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
|
15
|
|
|
* License for the specific language governing permissions and limitations |
|
16
|
|
|
* under the License. |
|
17
|
|
|
* |
|
18
|
|
|
* However, if you have executed another commercial license agreement |
|
19
|
|
|
* with Crate these terms will supersede the license and you may use the |
|
20
|
|
|
* software solely pursuant to the terms of the relevant commercial agreement. |
|
21
|
|
|
*/ |
|
22
|
|
|
|
|
23
|
|
|
namespace CrateIntegrationTest\PDO; |
|
24
|
|
|
|
|
25
|
|
|
use Crate\PDO\PDO; |
|
26
|
|
|
use PHPUnit\Framework\TestCase; |
|
27
|
|
|
|
|
28
|
|
|
abstract class AbstractIntegrationTest extends TestCase |
|
29
|
|
|
{ |
|
30
|
|
|
/** |
|
31
|
|
|
* @var PDO |
|
32
|
|
|
*/ |
|
33
|
|
|
protected $pdo; |
|
34
|
|
|
|
|
35
|
|
|
protected function setUp(): void |
|
36
|
|
|
{ |
|
37
|
|
|
$this->pdo = new PDO('crate:localhost:4200', null, null, [ |
|
38
|
|
|
PDO::CRATE_ATTR_SSL_MODE => PDO::CRATE_ATTR_SSL_MODE_ENABLED_BUT_WITHOUT_HOST_VERIFICATION, |
|
39
|
|
|
PDO::ATTR_TIMEOUT => 5, |
|
40
|
|
|
]); |
|
41
|
|
|
|
|
42
|
|
|
$query = 'CREATE TABLE test_table (id INTEGER PRIMARY KEY, name STRING,'; |
|
43
|
|
|
$query .= 'int_type INTEGER, long_type LONG, boolean_type BOOLEAN,'; |
|
44
|
|
|
$query .= 'double_type DOUBLE, float_type FLOAT, array_type ARRAY(INTEGER),'; |
|
45
|
|
|
$query .= 'object_type OBJECT) CLUSTERED INTO 1 SHARDS WITH (number_of_replicas = 0)'; |
|
46
|
|
|
$this->pdo->query($query); |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
protected function tearDown(): void |
|
50
|
|
|
{ |
|
51
|
|
|
$this->pdo->query('DROP TABLE test_table'); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
protected function insertRows($count = 1) |
|
55
|
|
|
{ |
|
56
|
|
|
for ($i = 1; $i <= $count; $i++) { |
|
57
|
|
|
$this->pdo->exec(sprintf("INSERT INTO test_table (id, name) VALUES (%d, 'hello world')", $i)); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
$this->pdo->query('refresh table test_table'); |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
protected function insertRow($id, $name) |
|
64
|
|
|
{ |
|
65
|
|
|
$this->pdo->exec(sprintf("INSERT INTO test_table (id, name) VALUES (%d, '%s')", $id, $name)); |
|
66
|
|
|
$this->pdo->query('refresh table test_table'); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
|