-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathInsertQueryTest.php
More file actions
244 lines (204 loc) · 7.27 KB
/
Copy pathInsertQueryTest.php
File metadata and controls
244 lines (204 loc) · 7.27 KB
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
<?php
declare(strict_types=1);
namespace Cycle\Database\Tests\Functional\Driver\SQLite\Query;
// phpcs:ignore
use Cycle\Database\Driver\SQLite\Query\SQLiteInsertQuery;
use Cycle\Database\Exception\BuilderException;
use Cycle\Database\Injection\Fragment;
use Cycle\Database\Tests\Functional\Driver\Common\Query\InsertQueryTest as CommonClass;
/**
* @group driver
* @group driver-sqlite
*/
class InsertQueryTest extends CommonClass
{
public const DRIVER = 'sqlite';
public function testQueryInstance(): void
{
parent::testQueryInstance();
$this->assertInstanceOf(SQLiteInsertQuery::class, $this->database->insert());
}
public function testCustomReturning(): void
{
$insert = $this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->returning('name');
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) VALUES (?, ?) RETURNING {name}',
$insert,
);
}
public function testCustomMultipleReturning(): void
{
$insert = $this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->returning('name', 'created_at');
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) VALUES (?, ?) RETURNING {name}, {created_at}',
$insert,
);
}
public function testCustomReturningWithFragment(): void
{
$insert = $this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->returning(new Fragment('"name" as "full_name"'));
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) VALUES (?, ?) RETURNING {name} as {full_name}',
$insert,
);
}
public function testReturningWithoutColumnsShouldThrowAnException(): void
{
$this->expectException(BuilderException::class);
$this->expectExceptionMessage('RETURNING clause should contain at least 1 column.');
$this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->returning();
}
public function testReturningSingleValueFromDatabase(): void
{
$schema = $this->schema('returning_value');
$schema->primary('id');
$schema->string('name');
$schema->save();
$returning = $this->database
->insert('returning_value')
->values(['name' => 'foo'])
->returning('id')
->run();
$this->assertSame(1, $returning);
}
public function testReturningValuesFromDatabase(): void
{
$schema = $this->schema('returning_values');
$schema->primary('id');
$schema->string('name');
$schema->save();
$returning = $this->database
->insert('returning_values')
->values(['name' => 'foo'])
->returning('id', 'name')
->run();
$this->assertSame(1, $returning['id']);
$this->assertSame('foo', $returning['name']);
$returning = $this->database
->insert('returning_values')
->values(['name' => 'bar'])
->returning('id', new Fragment('"name" as "title"'))
->run();
$this->assertSame(2, $returning['id']);
$this->assertSame('bar', $returning['title']);
}
/**
* A part of a composite key generated by the database can only be read back via RETURNING:
* the `lastInsertId` fallback is limited to single-column keys.
*/
public function testReturningGeneratedPartOfCompositeKey(): void
{
$this->database->execute(
<<<'SQL'
CREATE TABLE composite_key (
parent_id varchar(36) NOT NULL,
id integer NOT NULL PRIMARY KEY AUTOINCREMENT,
UNIQUE (parent_id, id)
)
SQL,
);
$id = $this->database
->insert('composite_key')
->values(['parent_id' => 'parent'])
->returning('id')
->run();
$this->assertSame(1, $id);
}
public function testSimpleInsertMultipleRows(): void
{
$insert = $this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->values('John', 200);
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) SELECT ? AS {name}, ? AS {balance}
UNION ALL SELECT ?, ?',
$insert,
);
}
public function testInsertMultipleRowsAsArray(): void
{
$insert = $this->database->insert()->into('table')->values([
['name' => 'Anton', 'balance' => 100],
['name' => 'John', 'balance' => 200],
]);
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) SELECT ? AS {name}, ? AS {balance}
UNION ALL SELECT ?, ?',
$insert,
);
}
public function testSimpleInsertMultipleRows2(): void
{
$insert = $this->database->insert()->into('table')
->columns('name', 'balance')
->values('Anton', 100)
->values('John', 200)
->values('Pitt', 200);
$this->assertSameQuery(
'INSERT INTO {table} ({name}, {balance}) SELECT ? AS {name}, ? AS {balance}'
. ' UNION ALL SELECT ?, ?'
. ' UNION ALL SELECT ?, ?',
$insert,
);
}
public function testInsertMicroseconds(): void
{
$schema = $this->schema(
table: 'with_microseconds',
driverConfig: ['options' => ['withDatetimeMicroseconds' => true]],
);
$schema->primary('id');
$schema->datetime('datetime', 6);
$schema->save();
$expected = new \DateTimeImmutable();
$id = $this->db(
driverConfig: ['options' => ['withDatetimeMicroseconds' => true]],
)->insert('with_microseconds')->values([
'datetime' => $expected,
])->run();
$result = $this->db(
driverConfig: ['options' => ['withDatetimeMicroseconds' => true]],
)->select('datetime')
->from('with_microseconds')
->where('id', $id)
->run()
->fetch();
$this->assertSame(
$expected->setTimezone($this->database->getDriver()->getTimezone())->format('Y-m-d H:i:s.u'),
$result['datetime'],
);
}
public function testInsertDatetimeWithoutMicroseconds(): void
{
$schema = $this->schema('without_microseconds');
$schema->primary('id');
$schema->datetime('datetime');
$schema->save();
$expected = new \DateTimeImmutable();
$id = $this->database->insert('without_microseconds')->values([
'datetime' => $expected,
])->run();
$result = $this->database->select('datetime')
->from('without_microseconds')
->where('id', $id)
->run()
->fetch();
$this->assertSame(
$expected->setTimezone($this->database->getDriver()->getTimezone())->format('Y-m-d H:i:s'),
$result['datetime'],
);
}
}