forked from sfackler/rust-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.rs
311 lines (238 loc) · 8.92 KB
/
test.rs
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
use std::io::{Read, Write};
use std::thread;
use std::time::Duration;
use tokio_postgres::error::SqlState;
use tokio_postgres::types::Type;
use tokio_postgres::NoTls;
use super::*;
use crate::binary_copy::{BinaryCopyInWriter, BinaryCopyOutIter};
use fallible_iterator::FallibleIterator;
#[test]
fn prepare() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
let stmt = client.prepare("SELECT 1::INT, $1::TEXT").unwrap();
assert_eq!(stmt.params(), &[Type::TEXT]);
assert_eq!(stmt.columns().len(), 2);
assert_eq!(stmt.columns()[0].type_(), &Type::INT4);
assert_eq!(stmt.columns()[1].type_(), &Type::TEXT);
}
#[test]
fn query_prepared() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
let stmt = client.prepare("SELECT $1::TEXT").unwrap();
let rows = client.query(&stmt, &[&"hello"]).unwrap();
assert_eq!(rows.len(), 1);
assert_eq!(rows[0].get::<_, &str>(0), "hello");
}
#[test]
fn query_unprepared() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
let rows = client.query("SELECT $1::TEXT", &[&"hello"]).unwrap();
assert_eq!(rows.len(), 1);
assert_eq!(rows[0].get::<_, &str>(0), "hello");
}
#[test]
fn transaction_commit() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id SERIAL PRIMARY KEY)")
.unwrap();
let mut transaction = client.transaction().unwrap();
transaction
.execute("INSERT INTO foo DEFAULT VALUES", &[])
.unwrap();
transaction.commit().unwrap();
let rows = client.query("SELECT * FROM foo", &[]).unwrap();
assert_eq!(rows.len(), 1);
assert_eq!(rows[0].get::<_, i32>(0), 1);
}
#[test]
fn transaction_rollback() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id SERIAL PRIMARY KEY)")
.unwrap();
let mut transaction = client.transaction().unwrap();
transaction
.execute("INSERT INTO foo DEFAULT VALUES", &[])
.unwrap();
transaction.rollback().unwrap();
let rows = client.query("SELECT * FROM foo", &[]).unwrap();
assert_eq!(rows.len(), 0);
}
#[test]
fn transaction_drop() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id SERIAL PRIMARY KEY)")
.unwrap();
let mut transaction = client.transaction().unwrap();
transaction
.execute("INSERT INTO foo DEFAULT VALUES", &[])
.unwrap();
drop(transaction);
let rows = client.query("SELECT * FROM foo", &[]).unwrap();
assert_eq!(rows.len(), 0);
}
#[test]
fn nested_transactions() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.batch_execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)")
.unwrap();
let mut transaction = client.transaction().unwrap();
transaction
.execute("INSERT INTO foo (id) VALUES (1)", &[])
.unwrap();
let mut transaction2 = transaction.transaction().unwrap();
transaction2
.execute("INSERT INTO foo (id) VALUES (2)", &[])
.unwrap();
transaction2.rollback().unwrap();
let rows = transaction
.query("SELECT id FROM foo ORDER BY id", &[])
.unwrap();
assert_eq!(rows.len(), 1);
assert_eq!(rows[0].get::<_, i32>(0), 1);
let mut transaction3 = transaction.transaction().unwrap();
transaction3
.execute("INSERT INTO foo (id) VALUES(3)", &[])
.unwrap();
let mut transaction4 = transaction3.transaction().unwrap();
transaction4
.execute("INSERT INTO foo (id) VALUES(4)", &[])
.unwrap();
transaction4.commit().unwrap();
transaction3.commit().unwrap();
transaction.commit().unwrap();
let rows = client.query("SELECT id FROM foo ORDER BY id", &[]).unwrap();
assert_eq!(rows.len(), 3);
assert_eq!(rows[0].get::<_, i32>(0), 1);
assert_eq!(rows[1].get::<_, i32>(0), 3);
assert_eq!(rows[2].get::<_, i32>(0), 4);
}
#[test]
fn copy_in() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id INT, name TEXT)")
.unwrap();
let mut writer = client.copy_in("COPY foo FROM stdin").unwrap();
writer.write_all(b"1\tsteven\n2\ttimothy").unwrap();
writer.finish().unwrap();
let rows = client
.query("SELECT id, name FROM foo ORDER BY id", &[])
.unwrap();
assert_eq!(rows.len(), 2);
assert_eq!(rows[0].get::<_, i32>(0), 1);
assert_eq!(rows[0].get::<_, &str>(1), "steven");
assert_eq!(rows[1].get::<_, i32>(0), 2);
assert_eq!(rows[1].get::<_, &str>(1), "timothy");
}
#[test]
fn copy_in_abort() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id INT, name TEXT)")
.unwrap();
let mut writer = client.copy_in("COPY foo FROM stdin").unwrap();
writer.write_all(b"1\tsteven\n2\ttimothy").unwrap();
drop(writer);
let rows = client
.query("SELECT id, name FROM foo ORDER BY id", &[])
.unwrap();
assert_eq!(rows.len(), 0);
}
#[test]
fn binary_copy_in() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query("CREATE TEMPORARY TABLE foo (id INT, name TEXT)")
.unwrap();
let writer = client.copy_in("COPY foo FROM stdin BINARY").unwrap();
let mut writer = BinaryCopyInWriter::new(writer, &[Type::INT4, Type::TEXT]);
writer.write(&[&1i32, &"steven"]).unwrap();
writer.write(&[&2i32, &"timothy"]).unwrap();
writer.finish().unwrap();
let rows = client
.query("SELECT id, name FROM foo ORDER BY id", &[])
.unwrap();
assert_eq!(rows.len(), 2);
assert_eq!(rows[0].get::<_, i32>(0), 1);
assert_eq!(rows[0].get::<_, &str>(1), "steven");
assert_eq!(rows[1].get::<_, i32>(0), 2);
assert_eq!(rows[1].get::<_, &str>(1), "timothy");
}
#[test]
fn copy_out() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query(
"CREATE TEMPORARY TABLE foo (id INT, name TEXT);
INSERT INTO foo (id, name) VALUES (1, 'steven'), (2, 'timothy');",
)
.unwrap();
let mut reader = client.copy_out("COPY foo (id, name) TO STDOUT").unwrap();
let mut s = String::new();
reader.read_to_string(&mut s).unwrap();
drop(reader);
assert_eq!(s, "1\tsteven\n2\ttimothy\n");
client.simple_query("SELECT 1").unwrap();
}
#[test]
fn binary_copy_out() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query(
"CREATE TEMPORARY TABLE foo (id INT, name TEXT);
INSERT INTO foo (id, name) VALUES (1, 'steven'), (2, 'timothy');",
)
.unwrap();
let reader = client
.copy_out("COPY foo (id, name) TO STDOUT BINARY")
.unwrap();
let rows = BinaryCopyOutIter::new(reader, &[Type::INT4, Type::TEXT])
.collect::<Vec<_>>()
.unwrap();
assert_eq!(rows.len(), 2);
assert_eq!(rows[0].get::<i32>(0), 1);
assert_eq!(rows[0].get::<&str>(1), "steven");
assert_eq!(rows[1].get::<i32>(0), 2);
assert_eq!(rows[1].get::<&str>(1), "timothy");
client.simple_query("SELECT 1").unwrap();
}
#[test]
fn portal() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
client
.simple_query(
"CREATE TEMPORARY TABLE foo (id INT);
INSERT INTO foo (id) VALUES (1), (2), (3);",
)
.unwrap();
let mut transaction = client.transaction().unwrap();
let portal = transaction
.bind("SELECT * FROM foo ORDER BY id", &[])
.unwrap();
let rows = transaction.query_portal(&portal, 2).unwrap();
assert_eq!(rows.len(), 2);
assert_eq!(rows[0].get::<_, i32>(0), 1);
assert_eq!(rows[1].get::<_, i32>(0), 2);
let rows = transaction.query_portal(&portal, 2).unwrap();
assert_eq!(rows.len(), 1);
assert_eq!(rows[0].get::<_, i32>(0), 3);
}
#[test]
fn cancel_query() {
let mut client = Client::connect("host=localhost port=5433 user=postgres", NoTls).unwrap();
let cancel_token = client.cancel_token();
let cancel_thread = thread::spawn(move || {
thread::sleep(Duration::from_millis(100));
cancel_token.cancel_query(NoTls).unwrap();
});
match client.batch_execute("SELECT pg_sleep(100)") {
Err(e) if e.code() == Some(&SqlState::QUERY_CANCELED) => {}
t => panic!("unexpected return: {:?}", t),
}
cancel_thread.join().unwrap();
}