2015-01-09 18:50:54 +00:00
|
|
|
#![allow(unstable)]
|
2015-01-07 16:23:40 +00:00
|
|
|
#![feature(slicing_syntax)]
|
2014-07-01 04:30:39 +00:00
|
|
|
|
|
|
|
extern crate postgres;
|
2014-12-19 01:08:58 +00:00
|
|
|
extern crate "rustc-serialize" as serialize;
|
2015-01-17 06:07:04 +00:00
|
|
|
extern crate url;
|
2014-07-01 04:30:39 +00:00
|
|
|
extern crate openssl;
|
|
|
|
|
2014-11-28 20:24:34 +00:00
|
|
|
use openssl::ssl::SslContext;
|
2014-12-22 17:14:20 +00:00
|
|
|
use openssl::ssl::SslMethod;
|
2014-12-03 04:34:46 +00:00
|
|
|
use std::io::{IoError, IoErrorKind};
|
2013-11-13 05:33:52 +00:00
|
|
|
use std::io::timer;
|
2014-08-15 03:00:13 +00:00
|
|
|
use std::time::Duration;
|
2014-12-22 17:14:20 +00:00
|
|
|
use std::thread::Thread;
|
2014-07-01 04:30:39 +00:00
|
|
|
|
2014-11-01 23:16:50 +00:00
|
|
|
use postgres::{NoticeHandler,
|
2014-11-01 23:18:09 +00:00
|
|
|
Notification,
|
2014-11-01 23:21:47 +00:00
|
|
|
Connection,
|
2014-10-09 03:29:26 +00:00
|
|
|
GenericConnection,
|
2014-08-19 05:02:16 +00:00
|
|
|
ResultDescription,
|
2014-11-17 21:46:33 +00:00
|
|
|
SslMode,
|
2014-11-04 05:29:16 +00:00
|
|
|
Type,
|
2014-11-04 06:24:11 +00:00
|
|
|
ToSql,
|
2014-11-21 05:47:13 +00:00
|
|
|
Error,
|
|
|
|
ConnectError,
|
2015-01-22 04:25:01 +00:00
|
|
|
DbError,
|
|
|
|
VecStreamIterator};
|
2014-11-04 06:24:11 +00:00
|
|
|
use postgres::SqlState::{SyntaxError,
|
|
|
|
QueryCanceled,
|
|
|
|
UndefinedTable,
|
|
|
|
InvalidCatalogName,
|
|
|
|
InvalidPassword,
|
|
|
|
CardinalityViolation};
|
|
|
|
use postgres::ErrorPosition::Normal;
|
2013-09-29 04:19:27 +00:00
|
|
|
|
2014-12-19 18:43:42 +00:00
|
|
|
macro_rules! or_panic {
|
2014-03-28 05:43:10 +00:00
|
|
|
($e:expr) => (
|
|
|
|
match $e {
|
|
|
|
Ok(ok) => ok,
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("{:?}", err)
|
2014-03-28 05:43:10 +00:00
|
|
|
}
|
|
|
|
)
|
2014-12-19 18:43:42 +00:00
|
|
|
}
|
2014-03-28 05:43:10 +00:00
|
|
|
|
2014-07-07 23:08:50 +00:00
|
|
|
mod types;
|
2013-08-18 03:30:31 +00:00
|
|
|
|
2013-10-05 03:26:52 +00:00
|
|
|
#[test]
|
|
|
|
fn test_non_default_database() {
|
2014-11-17 21:46:33 +00:00
|
|
|
or_panic!(Connection::connect("postgres://postgres@localhost/postgres", &SslMode::None));
|
2013-10-05 03:26:52 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 05:01:40 +00:00
|
|
|
#[test]
|
|
|
|
fn test_url_terminating_slash() {
|
2014-11-17 21:46:33 +00:00
|
|
|
or_panic!(Connection::connect("postgres://postgres@localhost/", &SslMode::None));
|
2013-10-25 05:01:40 +00:00
|
|
|
}
|
|
|
|
|
2013-08-27 05:06:53 +00:00
|
|
|
#[test]
|
|
|
|
fn test_prepare_err() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-03-28 04:08:22 +00:00
|
|
|
match conn.prepare("invalid sql statment") {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(DbError { code: SyntaxError, position: Some(Normal(1)), .. })) => (),
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(e) => panic!("Unexpected result {:?}", e),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Unexpected result"),
|
2013-08-29 04:24:43 +00:00
|
|
|
}
|
2013-08-27 05:06:53 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 05:01:40 +00:00
|
|
|
#[test]
|
|
|
|
fn test_unknown_database() {
|
2014-11-17 21:46:33 +00:00
|
|
|
match Connection::connect("postgres://postgres@localhost/asdf", &SslMode::None) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(ConnectError::DbError(DbError { code: InvalidCatalogName, .. })) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(resp) => panic!("Unexpected result {:?}", resp),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Unexpected result"),
|
2013-10-25 05:01:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_connection_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(conn.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2014-04-18 21:29:51 +00:00
|
|
|
#[test]
|
|
|
|
fn test_unix_connection() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SHOW unix_socket_directories"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-10-26 06:43:59 +00:00
|
|
|
let unix_socket_directories: String = result.map(|row| row.get(0)).next().unwrap();
|
2014-04-19 09:04:37 +00:00
|
|
|
|
2014-04-22 04:01:44 +00:00
|
|
|
if unix_socket_directories.is_empty() {
|
2014-10-30 04:26:03 +00:00
|
|
|
panic!("can't test connect_unix; unix_socket_directories is empty");
|
2014-04-19 09:04:37 +00:00
|
|
|
}
|
|
|
|
|
2014-10-05 21:47:57 +00:00
|
|
|
let unix_socket_directory = unix_socket_directories[].split(',').next().unwrap();
|
2014-04-19 09:04:37 +00:00
|
|
|
|
2014-10-26 19:39:53 +00:00
|
|
|
let path = url::utf8_percent_encode(unix_socket_directory, url::USERNAME_ENCODE_SET);
|
2015-01-17 06:07:04 +00:00
|
|
|
let url = format!("postgres://postgres@{}", path);
|
|
|
|
let conn = or_panic!(Connection::connect(&url[], &SslMode::None));
|
2014-04-18 21:29:51 +00:00
|
|
|
assert!(conn.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2013-09-03 07:00:43 +00:00
|
|
|
#[test]
|
2013-09-04 03:50:02 +00:00
|
|
|
fn test_transaction_commit() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2013-09-04 03:50:02 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("INSERT INTO foo (id) VALUES ($1)", &[&1i32]));
|
2014-07-26 05:41:10 +00:00
|
|
|
trans.set_commit();
|
2013-12-05 06:24:49 +00:00
|
|
|
drop(trans);
|
2013-09-03 07:00:43 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-09-03 07:00:43 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2013-09-03 07:00:43 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_transaction_commit_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("INSERT INTO foo (id) VALUES ($1)", &[&1i32]));
|
2014-07-26 05:41:10 +00:00
|
|
|
trans.set_commit();
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans.finish().is_ok());
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-02-10 07:55:16 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 05:41:10 +00:00
|
|
|
#[test]
|
|
|
|
fn test_transaction_commit_method() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2014-07-26 05:41:10 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("INSERT INTO foo (id) VALUES ($1)", &[&1i32]));
|
2014-07-26 05:41:10 +00:00
|
|
|
assert!(trans.commit().is_ok());
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-07-26 05:41:10 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-07-26 05:41:10 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 03:50:02 +00:00
|
|
|
#[test]
|
|
|
|
fn test_transaction_rollback() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2013-08-23 07:13:42 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES ($1)", &[&1i32]));
|
2013-12-05 06:24:49 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("INSERT INTO foo (id) VALUES ($1)", &[&2i32]));
|
2013-12-05 06:24:49 +00:00
|
|
|
drop(trans);
|
2013-08-31 23:11:42 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-09-04 03:50:02 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
2013-08-25 03:47:36 +00:00
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_transaction_rollback_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES ($1)", &[&1i32]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("INSERT INTO foo (id) VALUES ($1)", &[&2i32]));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans.finish().is_ok());
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-02-10 07:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-05 06:28:44 +00:00
|
|
|
#[test]
|
|
|
|
fn test_nested_transactions() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES (1)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2013-10-14 01:58:31 +00:00
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans1 = or_panic!(conn.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans1.execute("INSERT INTO foo (id) VALUES (2)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2013-10-14 01:58:31 +00:00
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans2 = or_panic!(trans1.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans2.execute("INSERT INTO foo (id) VALUES (3)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-10-14 01:58:31 +00:00
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans2 = or_panic!(trans1.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans2.execute("INSERT INTO foo (id) VALUES (4)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2013-10-14 01:58:31 +00:00
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans3 = or_panic!(trans2.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans3.execute("INSERT INTO foo (id) VALUES (5)", &[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-10-14 01:58:31 +00:00
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans3 = or_panic!(trans2.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans3.execute("INSERT INTO foo (id) VALUES (6)", &[]));
|
2014-07-26 05:41:10 +00:00
|
|
|
assert!(trans3.commit().is_ok());
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
2014-07-26 05:41:10 +00:00
|
|
|
|
|
|
|
assert!(trans2.commit().is_ok());
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(trans1.prepare("SELECT * FROM foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32, 2, 4, 6], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-09-05 06:28:44 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_nested_transactions_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES (1)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans1 = or_panic!(conn.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans1.execute("INSERT INTO foo (id) VALUES (2)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans2 = or_panic!(trans1.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans2.execute("INSERT INTO foo (id) VALUES (3)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans2.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans2 = or_panic!(trans1.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans2.execute("INSERT INTO foo (id) VALUES (4)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans3 = or_panic!(trans2.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans3.execute("INSERT INTO foo (id) VALUES (5)", &[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans3.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans3 = or_panic!(trans2.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans3.execute("INSERT INTO foo (id) VALUES (6)", &[]));
|
2014-07-26 05:41:10 +00:00
|
|
|
trans3.set_commit();
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans3.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2014-07-26 05:41:10 +00:00
|
|
|
trans2.set_commit();
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(trans2.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2014-05-19 02:34:01 +00:00
|
|
|
// in a block to unborrow trans1 for the finish call
|
|
|
|
{
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(trans1.prepare("SELECT * FROM foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32, 2, 4, 6], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-05-19 02:34:01 +00:00
|
|
|
}
|
2014-02-10 07:55:16 +00:00
|
|
|
|
|
|
|
assert!(trans1.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i32], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-02-10 07:55:16 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 02:46:21 +00:00
|
|
|
#[test]
|
2015-01-23 06:24:47 +00:00
|
|
|
fn test_conn_trans_when_nested() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let _trans = or_panic!(conn.transaction());
|
2014-05-19 02:46:21 +00:00
|
|
|
match conn.transaction() {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongTransaction) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(r) => panic!("Unexpected error {:?}", r),
|
2014-10-30 04:26:03 +00:00
|
|
|
Ok(_) => panic!("Unexpected success"),
|
2014-05-19 02:46:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_trans_prepare_with_nested_trans() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
let _trans2 = or_panic!(trans.transaction());
|
2014-12-02 06:42:36 +00:00
|
|
|
let stmt = or_panic!(trans.prepare("SELECT 1"));
|
2015-01-23 06:52:29 +00:00
|
|
|
match stmt.lazy_query(&trans, &[], 10) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongTransaction) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(r) => panic!("Unexpected error {:?}", r),
|
2014-10-30 04:26:03 +00:00
|
|
|
Ok(_) => panic!("Unexpected success"),
|
2014-05-19 02:46:21 +00:00
|
|
|
}
|
|
|
|
match trans.transaction() {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongTransaction) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(r) => panic!("Unexpected error {:?}", r),
|
2014-10-30 04:26:03 +00:00
|
|
|
Ok(_) => panic!("Unexpected success"),
|
2014-05-19 02:46:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 06:42:36 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stmt_execute_after_transaction() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
let stmt = or_panic!(trans.prepare("SELECT 1"));
|
|
|
|
or_panic!(trans.finish());
|
|
|
|
let mut result = or_panic!(stmt.query(&[]));
|
|
|
|
assert_eq!(1i32, result.next().unwrap().get(0));
|
|
|
|
}
|
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_stmt_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY)", &[]));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(stmt.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2014-06-08 23:07:15 +00:00
|
|
|
#[test]
|
|
|
|
fn test_batch_execute() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-06-08 23:07:15 +00:00
|
|
|
let query = "CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY);
|
|
|
|
INSERT INTO foo (id) VALUES (10);";
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(conn.batch_execute(query));
|
2014-06-08 23:07:15 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * from foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-06-08 23:07:15 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![10i64], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-06-08 23:07:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_batch_execute_error() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-06-08 23:07:15 +00:00
|
|
|
let query = "CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY);
|
|
|
|
INSERT INTO foo (id) VALUES (10);
|
|
|
|
asdfa;
|
|
|
|
INSERT INTO foo (id) VALUES (11)";
|
|
|
|
conn.batch_execute(query).unwrap_err();
|
|
|
|
|
|
|
|
match conn.prepare("SELECT * from foo ORDER BY id") {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(DbError { code: UndefinedTable, .. })) => {},
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(e) => panic!("unexpected error {:?}", e),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("unexpected success"),
|
2014-06-08 23:07:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-30 02:48:56 +00:00
|
|
|
#[test]
|
|
|
|
fn test_transaction_batch_execute() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
2014-07-30 02:48:56 +00:00
|
|
|
let query = "CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY);
|
|
|
|
INSERT INTO foo (id) VALUES (10);";
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(trans.batch_execute(query));
|
2014-07-30 02:48:56 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(trans.prepare("SELECT * from foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-07-30 02:48:56 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![10i64], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2014-07-30 02:48:56 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 03:47:36 +00:00
|
|
|
#[test]
|
2013-09-04 03:50:02 +00:00
|
|
|
fn test_query() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY)", &[]));
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES ($1), ($2)",
|
2014-08-31 22:09:53 +00:00
|
|
|
&[&1i64, &2i64]));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * from foo ORDER BY id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-08-25 03:47:36 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![1i64, 2], result.map(|row| row.get(0)).collect::<Vec<_>>());
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
2014-07-25 01:00:28 +00:00
|
|
|
#[test]
|
|
|
|
fn test_error_after_datarow() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("
|
2014-07-25 01:00:28 +00:00
|
|
|
SELECT
|
|
|
|
(SELECT generate_series(1, ss.i))
|
|
|
|
FROM (SELECT gs.i
|
|
|
|
FROM generate_series(1, 2) gs(i)
|
|
|
|
ORDER BY gs.i
|
|
|
|
LIMIT 2) ss"));
|
2014-11-19 18:20:20 +00:00
|
|
|
match stmt.query(&[]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(DbError { code: CardinalityViolation, .. })) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
Ok(_) => panic!("Expected failure"),
|
2014-07-25 01:00:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 07:55:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_result_finish() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id BIGINT PRIMARY KEY)", &[]));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT * FROM foo"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2014-02-10 07:55:16 +00:00
|
|
|
assert!(result.finish().is_ok());
|
|
|
|
}
|
|
|
|
|
2013-09-04 05:20:21 +00:00
|
|
|
#[test]
|
|
|
|
fn test_lazy_query() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2013-09-04 05:20:21 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(trans.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", &[]));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(trans.prepare("INSERT INTO foo (id) VALUES ($1)"));
|
2014-03-28 02:45:36 +00:00
|
|
|
let values = vec!(0i32, 1, 2, 3, 4, 5);
|
2014-03-26 04:01:38 +00:00
|
|
|
for value in values.iter() {
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(stmt.execute(&[value]));
|
2014-03-26 04:01:38 +00:00
|
|
|
}
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(trans.prepare("SELECT id FROM foo ORDER BY id"));
|
2015-01-23 06:52:29 +00:00
|
|
|
let result = or_panic!(stmt.lazy_query(&trans, &[], 2));
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(values, result.map(|row| row.unwrap().get(0)).collect::<Vec<_>>());
|
2014-03-26 04:01:38 +00:00
|
|
|
}
|
2013-09-04 05:20:21 +00:00
|
|
|
|
2014-03-26 04:01:38 +00:00
|
|
|
#[test]
|
|
|
|
fn test_lazy_query_wrong_conn() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn1 = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
let conn2 = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-03-26 04:01:38 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn1.transaction());
|
|
|
|
let stmt = or_panic!(conn2.prepare("SELECT 1::INT"));
|
2015-01-23 06:52:29 +00:00
|
|
|
match stmt.lazy_query(&trans, &[], 1) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongConnection) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
Ok(_) => panic!("Expected failure")
|
2013-09-04 05:20:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 04:51:21 +00:00
|
|
|
#[test]
|
|
|
|
fn test_param_types() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT $1::INT, $2::VARCHAR"));
|
2015-01-09 18:50:54 +00:00
|
|
|
assert_eq!(stmt.param_types(), [Type::Int4, Type::Varchar].as_slice());
|
2013-09-05 04:51:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_result_descriptions() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT 1::INT as a, 'hi'::VARCHAR as b"));
|
2014-03-02 04:06:04 +00:00
|
|
|
assert!(stmt.result_descriptions() ==
|
2014-12-05 15:58:11 +00:00
|
|
|
[ResultDescription { name: "a".to_string(), ty: Type::Int4},
|
2014-11-04 05:29:16 +00:00
|
|
|
ResultDescription { name: "b".to_string(), ty: Type::Varchar}]);
|
2013-09-05 04:51:21 +00:00
|
|
|
}
|
|
|
|
|
2014-01-02 05:54:13 +00:00
|
|
|
#[test]
|
|
|
|
fn test_execute_counts() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
assert_eq!(0, or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (
|
2014-03-28 04:08:22 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
b INT
|
2014-11-19 18:20:20 +00:00
|
|
|
)", &[])));
|
2014-10-30 04:26:03 +00:00
|
|
|
assert_eq!(3, or_panic!(conn.execute("INSERT INTO foo (b) VALUES ($1), ($2), ($2)",
|
2014-08-31 22:09:53 +00:00
|
|
|
&[&1i32, &2i32])));
|
2014-11-19 18:20:20 +00:00
|
|
|
assert_eq!(2, or_panic!(conn.execute("UPDATE foo SET b = 0 WHERE b = 2", &[])));
|
|
|
|
assert_eq!(3, or_panic!(conn.execute("SELECT * FROM foo", &[])));
|
2014-01-02 05:54:13 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 17:27:09 +00:00
|
|
|
#[test]
|
|
|
|
fn test_wrong_param_type() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-08-31 22:09:53 +00:00
|
|
|
match conn.execute("SELECT $1::VARCHAR", &[&1i32]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongType(_)) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res)
|
2014-03-28 05:43:10 +00:00
|
|
|
}
|
2013-08-29 05:33:27 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 05:33:19 +00:00
|
|
|
#[test]
|
|
|
|
fn test_too_few_params() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-08-31 22:09:53 +00:00
|
|
|
match conn.execute("SELECT $1::INT, $2::INT", &[&1i32]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongParamCount { expected: 2, actual: 1 }) => {},
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res)
|
2014-03-28 04:39:03 +00:00
|
|
|
}
|
2013-09-12 05:33:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_too_many_params() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-08-31 22:09:53 +00:00
|
|
|
match conn.execute("SELECT $1::INT, $2::INT", &[&1i32, &2i32, &3i32]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WrongParamCount { expected: 2, actual: 3 }) => {},
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res)
|
2014-03-28 04:39:03 +00:00
|
|
|
}
|
2013-09-12 05:33:19 +00:00
|
|
|
}
|
|
|
|
|
2013-09-03 00:07:08 +00:00
|
|
|
#[test]
|
2014-03-30 00:01:41 +00:00
|
|
|
fn test_index_named() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT 10::INT as val"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let result = or_panic!(stmt.query(&[]));
|
2013-09-04 03:50:02 +00:00
|
|
|
|
2014-12-05 15:58:11 +00:00
|
|
|
assert_eq!(vec![10i32], result.map(|row| row.get("val")).collect::<Vec<_>>());
|
2013-09-03 01:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2014-03-30 00:01:41 +00:00
|
|
|
fn test_index_named_fail() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT 10::INT as id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let mut result = or_panic!(stmt.query(&[]));
|
2013-09-03 01:53:03 +00:00
|
|
|
|
2014-07-10 19:35:57 +00:00
|
|
|
let _: i32 = result.next().unwrap().get("asdf");
|
2013-09-03 00:07:08 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:01:41 +00:00
|
|
|
#[test]
|
|
|
|
fn test_get_named_err() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT 10::INT as id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let mut result = or_panic!(stmt.query(&[]));
|
2014-03-30 00:01:41 +00:00
|
|
|
|
2014-07-10 19:35:57 +00:00
|
|
|
match result.next().unwrap().get_opt::<&str, i32>("asdf") {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::InvalidColumn) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res),
|
2014-03-30 00:01:41 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-03-30 02:01:23 +00:00
|
|
|
#[test]
|
|
|
|
fn test_get_was_null() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT NULL::INT as id"));
|
2014-11-19 18:20:20 +00:00
|
|
|
let mut result = or_panic!(stmt.query(&[]));
|
2014-03-30 02:01:23 +00:00
|
|
|
|
2015-01-09 18:50:54 +00:00
|
|
|
match result.next().unwrap().get_opt::<usize, i32>(0) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::WasNull) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res),
|
2014-03-30 02:01:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-12-06 18:41:49 +00:00
|
|
|
#[test]
|
|
|
|
fn test_get_off_by_one() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
let stmt = or_panic!(conn.prepare("SELECT 10::INT as id"));
|
|
|
|
let mut result = or_panic!(stmt.query(&[]));
|
|
|
|
|
2015-01-09 18:50:54 +00:00
|
|
|
match result.next().unwrap().get_opt::<usize, i32>(1) {
|
2014-12-06 18:41:49 +00:00
|
|
|
Err(Error::InvalidColumn) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
res => panic!("unexpected result {:?}", res),
|
2014-12-06 18:41:49 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-09-12 02:57:26 +00:00
|
|
|
#[test]
|
|
|
|
fn test_custom_notice_handler() {
|
2015-01-09 18:50:54 +00:00
|
|
|
static mut count: usize = 0;
|
2013-09-12 02:57:26 +00:00
|
|
|
struct Handler;
|
|
|
|
|
2014-11-01 23:16:50 +00:00
|
|
|
impl NoticeHandler for Handler {
|
2014-11-04 06:24:11 +00:00
|
|
|
fn handle(&mut self, notice: DbError) {
|
2015-01-09 18:50:54 +00:00
|
|
|
assert_eq!("note", &*notice.message);
|
2013-09-12 02:57:26 +00:00
|
|
|
unsafe { count += 1; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-01 23:21:47 +00:00
|
|
|
let conn = or_panic!(Connection::connect(
|
2014-11-17 21:46:33 +00:00
|
|
|
"postgres://postgres@localhost?client_min_messages=NOTICE", &SslMode::None));
|
2015-01-09 18:50:54 +00:00
|
|
|
conn.set_notice_handler(Box::new(Handler));
|
2014-10-30 04:26:03 +00:00
|
|
|
or_panic!(conn.execute("CREATE FUNCTION pg_temp.note() RETURNS INT AS $$
|
2014-03-28 04:08:22 +00:00
|
|
|
BEGIN
|
|
|
|
RAISE NOTICE 'note';
|
|
|
|
RETURN 1;
|
2014-11-19 18:20:20 +00:00
|
|
|
END; $$ LANGUAGE plpgsql", &[]));
|
|
|
|
or_panic!(conn.execute("SELECT pg_temp.note()", &[]));
|
2013-09-12 02:57:26 +00:00
|
|
|
|
|
|
|
assert_eq!(unsafe { count }, 1);
|
|
|
|
}
|
|
|
|
|
2013-10-15 05:41:03 +00:00
|
|
|
#[test]
|
|
|
|
fn test_notification_iterator_none() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2013-10-15 05:41:03 +00:00
|
|
|
assert!(conn.notifications().next().is_none());
|
|
|
|
}
|
|
|
|
|
2014-11-28 23:01:01 +00:00
|
|
|
fn check_notification(expected: Notification, actual: Notification) {
|
2014-11-26 02:30:28 +00:00
|
|
|
assert_eq!(&expected.channel, &actual.channel);
|
|
|
|
assert_eq!(&expected.payload, &actual.payload);
|
|
|
|
}
|
|
|
|
|
2013-10-15 05:41:03 +00:00
|
|
|
#[test]
|
|
|
|
fn test_notification_iterator_some() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2013-10-15 05:41:03 +00:00
|
|
|
let mut it = conn.notifications();
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("LISTEN test_notification_iterator_one_channel", &[]));
|
|
|
|
or_panic!(conn.execute("LISTEN test_notification_iterator_one_channel2", &[]));
|
|
|
|
or_panic!(conn.execute("NOTIFY test_notification_iterator_one_channel, 'hello'", &[]));
|
|
|
|
or_panic!(conn.execute("NOTIFY test_notification_iterator_one_channel2, 'world'", &[]));
|
2013-10-15 05:41:03 +00:00
|
|
|
|
2014-11-01 23:18:09 +00:00
|
|
|
check_notification(Notification {
|
2013-10-15 05:41:03 +00:00
|
|
|
pid: 0,
|
2014-07-10 19:35:57 +00:00
|
|
|
channel: "test_notification_iterator_one_channel".to_string(),
|
|
|
|
payload: "hello".to_string()
|
2014-11-26 02:30:28 +00:00
|
|
|
}, it.next().unwrap());
|
2014-11-01 23:18:09 +00:00
|
|
|
check_notification(Notification {
|
2013-10-15 05:41:03 +00:00
|
|
|
pid: 0,
|
2014-07-10 19:35:57 +00:00
|
|
|
channel: "test_notification_iterator_one_channel2".to_string(),
|
|
|
|
payload: "world".to_string()
|
2014-11-26 02:30:28 +00:00
|
|
|
}, it.next().unwrap());
|
2013-10-15 05:41:03 +00:00
|
|
|
assert!(it.next().is_none());
|
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("NOTIFY test_notification_iterator_one_channel, '!'", &[]));
|
2014-11-01 23:18:09 +00:00
|
|
|
check_notification(Notification {
|
2013-10-15 05:41:03 +00:00
|
|
|
pid: 0,
|
2014-07-10 19:35:57 +00:00
|
|
|
channel: "test_notification_iterator_one_channel".to_string(),
|
|
|
|
payload: "!".to_string()
|
2014-11-26 02:30:28 +00:00
|
|
|
}, it.next().unwrap());
|
2013-10-15 05:41:03 +00:00
|
|
|
assert!(it.next().is_none());
|
|
|
|
}
|
|
|
|
|
2014-11-26 02:30:28 +00:00
|
|
|
#[test]
|
|
|
|
fn test_notifications_next_block() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
or_panic!(conn.execute("LISTEN test_notifications_next_block", &[]));
|
|
|
|
|
2014-12-22 17:14:20 +00:00
|
|
|
let _t = Thread::spawn(|| {
|
2014-11-26 02:30:28 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
timer::sleep(Duration::milliseconds(500));
|
|
|
|
or_panic!(conn.execute("NOTIFY test_notifications_next_block, 'foo'", &[]));
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut notifications = conn.notifications();
|
|
|
|
check_notification(Notification {
|
|
|
|
pid: 0,
|
|
|
|
channel: "test_notifications_next_block".to_string(),
|
|
|
|
payload: "foo".to_string()
|
|
|
|
}, or_panic!(notifications.next_block()));
|
|
|
|
}
|
|
|
|
|
2014-12-03 04:34:46 +00:00
|
|
|
#[test]
|
|
|
|
fn test_notifications_next_block_for() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
or_panic!(conn.execute("LISTEN test_notifications_next_block_for", &[]));
|
|
|
|
|
2014-12-22 17:14:20 +00:00
|
|
|
let _t = Thread::spawn(|| {
|
2014-12-03 04:34:46 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
timer::sleep(Duration::milliseconds(500));
|
|
|
|
or_panic!(conn.execute("NOTIFY test_notifications_next_block_for, 'foo'", &[]));
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut notifications = conn.notifications();
|
|
|
|
check_notification(Notification {
|
|
|
|
pid: 0,
|
|
|
|
channel: "test_notifications_next_block_for".to_string(),
|
|
|
|
payload: "foo".to_string()
|
|
|
|
}, or_panic!(notifications.next_block_for(Duration::seconds(2))));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_notifications_next_block_for_timeout() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
or_panic!(conn.execute("LISTEN test_notifications_next_block_for_timeout", &[]));
|
|
|
|
|
2014-12-22 17:14:20 +00:00
|
|
|
let _t = Thread::spawn(|| {
|
2014-12-03 04:34:46 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
timer::sleep(Duration::seconds(2));
|
|
|
|
or_panic!(conn.execute("NOTIFY test_notifications_next_block_for_timeout, 'foo'", &[]));
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut notifications = conn.notifications();
|
|
|
|
match notifications.next_block_for(Duration::milliseconds(500)) {
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(Error::IoError(IoError { kind: IoErrorKind::TimedOut, .. })) => {}
|
|
|
|
Err(e) => panic!("Unexpected error {:?}", e),
|
2014-12-03 04:34:46 +00:00
|
|
|
Ok(_) => panic!("expected error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
or_panic!(conn.execute("SELECT 1", &[]));
|
|
|
|
}
|
|
|
|
|
2013-10-21 00:32:14 +00:00
|
|
|
#[test]
|
|
|
|
// This test is pretty sad, but I don't think there's a better way :(
|
2013-10-21 00:54:50 +00:00
|
|
|
fn test_cancel_query() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2013-10-21 00:32:14 +00:00
|
|
|
let cancel_data = conn.cancel_data();
|
|
|
|
|
2014-12-22 17:14:20 +00:00
|
|
|
let _t = Thread::spawn(move || {
|
2014-08-15 03:00:13 +00:00
|
|
|
timer::sleep(Duration::milliseconds(500));
|
2014-11-17 21:46:33 +00:00
|
|
|
assert!(postgres::cancel_query("postgres://postgres@localhost", &SslMode::None,
|
2014-07-01 04:30:39 +00:00
|
|
|
cancel_data).is_ok());
|
2014-01-31 04:44:44 +00:00
|
|
|
});
|
2013-10-21 00:32:14 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
match conn.execute("SELECT pg_sleep(10)", &[]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(DbError { code: QueryCanceled, .. })) => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(res) => panic!("Unexpected result {:?}", res),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Unexpected result"),
|
2013-10-21 00:32:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-10 05:55:29 +00:00
|
|
|
#[test]
|
2013-11-10 06:30:20 +00:00
|
|
|
fn test_require_ssl_conn() {
|
2014-12-22 17:14:20 +00:00
|
|
|
let ctx = SslContext::new(SslMethod::Sslv23).unwrap();
|
2014-11-01 23:21:47 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost",
|
2014-11-17 21:46:33 +00:00
|
|
|
&SslMode::Require(ctx)));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("SELECT 1::VARCHAR", &[]));
|
2013-11-10 05:55:29 +00:00
|
|
|
}
|
|
|
|
|
2013-11-10 06:30:20 +00:00
|
|
|
#[test]
|
|
|
|
fn test_prefer_ssl_conn() {
|
2014-12-22 17:14:20 +00:00
|
|
|
let ctx = SslContext::new(SslMethod::Sslv23).unwrap();
|
2014-11-01 23:21:47 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost",
|
2014-11-17 21:46:33 +00:00
|
|
|
&SslMode::Prefer(ctx)));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("SELECT 1::VARCHAR", &[]));
|
2013-11-10 06:30:20 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 05:08:37 +00:00
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
or_panic!(Connection::connect("postgres://pass_user:password@localhost/postgres", &SslMode::None));
|
2013-08-26 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass_no_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let ret = Connection::connect("postgres://pass_user@localhost/postgres", &SslMode::None);
|
2013-08-29 04:24:43 +00:00
|
|
|
match ret {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(ConnectError::MissingPassword) => (),
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error")
|
2013-08-29 04:24:43 +00:00
|
|
|
}
|
2013-08-26 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 07:36:09 +00:00
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass_wrong_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let ret = Connection::connect("postgres://pass_user:asdf@localhost/postgres", &SslMode::None);
|
2013-08-29 04:24:43 +00:00
|
|
|
match ret {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(ConnectError::DbError(DbError { code: InvalidPassword, .. })) => (),
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error")
|
2013-08-29 04:24:43 +00:00
|
|
|
}
|
2013-08-26 07:36:09 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 07:43:01 +00:00
|
|
|
#[test]
|
2013-11-06 06:04:12 +00:00
|
|
|
fn test_md5_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
or_panic!(Connection::connect("postgres://md5_user:password@localhost/postgres", &SslMode::None));
|
2013-11-06 06:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_md5_pass_no_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let ret = Connection::connect("postgres://md5_user@localhost/postgres", &SslMode::None);
|
2013-11-06 06:04:12 +00:00
|
|
|
match ret {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(ConnectError::MissingPassword) => (),
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error")
|
2013-11-06 06:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_md5_pass_wrong_pass() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let ret = Connection::connect("postgres://md5_user:asdf@localhost/postgres", &SslMode::None);
|
2013-11-06 06:04:12 +00:00
|
|
|
match ret {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(ConnectError::DbError(DbError { code: InvalidPassword, .. })) => (),
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error")
|
2013-11-06 06:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-30 04:05:42 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_execute_copy_from_err() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT)", &[]));
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("COPY foo (id) FROM STDIN"));
|
2014-11-19 18:20:20 +00:00
|
|
|
match stmt.execute(&[]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("COPY") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexptected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-09-30 04:05:42 +00:00
|
|
|
}
|
2014-11-19 18:20:20 +00:00
|
|
|
match stmt.query(&[]) {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("COPY") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexptected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-09-30 04:05:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-30 05:56:43 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_copy_in() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT, name VARCHAR)", &[]));
|
2014-09-30 05:56:43 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
let stmt = or_panic!(conn.prepare_copy_in("foo", &["id", "name"]));
|
2014-09-30 05:56:43 +00:00
|
|
|
|
2015-01-22 04:25:01 +00:00
|
|
|
let data = (0i32..2).map(|i| {
|
|
|
|
VecStreamIterator::new(vec![Box::new(i) as Box<ToSql>,
|
|
|
|
Box::new(format!("{}", i)) as Box<ToSql>])
|
|
|
|
});
|
|
|
|
|
|
|
|
assert_eq!(Ok(2), stmt.execute(data));
|
2014-09-30 05:56:43 +00:00
|
|
|
|
2014-10-30 04:26:03 +00:00
|
|
|
let stmt = or_panic!(conn.prepare("SELECT id, name FROM foo ORDER BY id"));
|
2015-01-22 04:25:01 +00:00
|
|
|
assert_eq!(vec![(0i32, Some("0".to_string())), (1, Some("1".to_string()))],
|
2014-12-05 15:58:11 +00:00
|
|
|
or_panic!(stmt.query(&[])).map(|r| (r.get(0), r.get(1))).collect::<Vec<_>>());
|
2014-09-30 05:56:43 +00:00
|
|
|
}
|
2014-09-30 06:32:57 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_copy_in_bad_column_count() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT, name VARCHAR)", &[]));
|
2014-09-30 06:32:57 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
let stmt = or_panic!(conn.prepare_copy_in("foo", &["id", "name"]));
|
2015-01-22 04:25:01 +00:00
|
|
|
let data = vec![
|
|
|
|
VecStreamIterator::new(vec![Box::new(1i32) as Box<ToSql>,
|
|
|
|
Box::new("Steven".to_string()) as Box<ToSql>]),
|
|
|
|
VecStreamIterator::new(vec![Box::new(2i32) as Box<ToSql>]),
|
|
|
|
].into_iter();
|
2014-09-30 06:32:57 +00:00
|
|
|
|
2015-01-22 04:25:01 +00:00
|
|
|
let res = stmt.execute(data);
|
2014-09-30 06:32:57 +00:00
|
|
|
match res {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("Invalid column count") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-09-30 06:32:57 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 04:25:01 +00:00
|
|
|
let data = vec![
|
|
|
|
VecStreamIterator::new(vec![Box::new(1i32) as Box<ToSql>,
|
|
|
|
Box::new("Steven".to_string()) as Box<ToSql>]),
|
|
|
|
VecStreamIterator::new(vec![Box::new(2i32) as Box<ToSql>,
|
|
|
|
Box::new("Steven".to_string()) as Box<ToSql>,
|
|
|
|
Box::new(3i64) as Box<ToSql>]),
|
|
|
|
].into_iter();
|
2014-09-30 06:32:57 +00:00
|
|
|
|
2015-01-22 04:25:01 +00:00
|
|
|
let res = stmt.execute(data);
|
2014-09-30 06:32:57 +00:00
|
|
|
match res {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("Invalid column count") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-09-30 06:32:57 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("SELECT 1", &[]));
|
2014-09-30 06:32:57 +00:00
|
|
|
}
|
2014-10-06 00:31:25 +00:00
|
|
|
|
2014-10-26 03:26:45 +00:00
|
|
|
#[test]
|
|
|
|
fn test_copy_in_bad_type() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT, name VARCHAR)", &[]));
|
2014-10-26 03:26:45 +00:00
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
let stmt = or_panic!(conn.prepare_copy_in("foo", &["id", "name"]));
|
2014-10-26 03:26:45 +00:00
|
|
|
|
2015-01-22 04:25:01 +00:00
|
|
|
let data = vec![
|
|
|
|
VecStreamIterator::new(vec![Box::new(1i32) as Box<ToSql>,
|
|
|
|
Box::new("Steven".to_string()) as Box<ToSql>]),
|
|
|
|
VecStreamIterator::new(vec![Box::new(2i32) as Box<ToSql>,
|
|
|
|
Box::new(1i32) as Box<ToSql>]),
|
|
|
|
].into_iter();
|
|
|
|
|
|
|
|
let res = stmt.execute(data);
|
2014-10-26 03:26:45 +00:00
|
|
|
match res {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("Unexpected type Varchar") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("unexpected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-10-26 03:26:45 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("SELECT 1", &[]));
|
2014-10-26 03:26:45 +00:00
|
|
|
}
|
|
|
|
|
2014-10-06 00:31:25 +00:00
|
|
|
#[test]
|
|
|
|
fn test_batch_execute_copy_from_err() {
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT)", &[]));
|
2014-10-06 00:31:25 +00:00
|
|
|
match conn.batch_execute("COPY foo (id) FROM STDIN") {
|
2014-11-21 05:47:13 +00:00
|
|
|
Err(Error::DbError(ref err)) if err.message[].contains("COPY") => {}
|
2015-01-09 18:50:54 +00:00
|
|
|
Err(err) => panic!("Unexptected error {:?}", err),
|
2014-10-30 04:26:03 +00:00
|
|
|
_ => panic!("Expected error"),
|
2014-10-06 00:31:25 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-09 03:29:26 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
// Just make sure the impls don't infinite loop
|
|
|
|
fn test_generic_connection() {
|
|
|
|
fn f<T>(t: &T) where T: GenericConnection {
|
2014-11-19 18:20:20 +00:00
|
|
|
or_panic!(t.execute("SELECT 1", &[]));
|
2014-10-09 03:29:26 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 21:46:33 +00:00
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
2014-10-09 03:29:26 +00:00
|
|
|
f(&conn);
|
2014-10-30 04:26:03 +00:00
|
|
|
let trans = or_panic!(conn.transaction());
|
2014-10-09 03:29:26 +00:00
|
|
|
f(&trans);
|
|
|
|
}
|
2015-01-22 08:04:58 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_custom_range_element_type() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
let trans = or_panic!(conn.transaction());
|
|
|
|
or_panic!(trans.execute("CREATE TYPE floatrange AS RANGE (
|
|
|
|
subtype = float8,
|
|
|
|
subtype_diff = float8mi
|
|
|
|
)", &[]));
|
|
|
|
let stmt = or_panic!(trans.prepare("SELECT $1::floatrange"));
|
|
|
|
match &stmt.param_types()[0] {
|
|
|
|
&Type::Unknown { ref name, ref element_type, .. } => {
|
|
|
|
assert_eq!("floatrange", &**name);
|
|
|
|
assert_eq!(&Some(Box::new(Type::Float8)), element_type);
|
|
|
|
}
|
|
|
|
t => panic!("Unexpected type {:?}", t)
|
|
|
|
}
|
|
|
|
}
|
2015-01-23 06:24:47 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_prepare_cached() {
|
|
|
|
let conn = or_panic!(Connection::connect("postgres://postgres@localhost", &SslMode::None));
|
|
|
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT)", &[]));
|
|
|
|
or_panic!(conn.execute("INSERT INTO foo (id) VALUES (1), (2)", &[]));
|
|
|
|
|
|
|
|
let stmt = or_panic!(conn.prepare_cached("SELECT id FROM foo ORDER BY id"));
|
|
|
|
assert_eq!(&[1, 2][], or_panic!(stmt.query(&[])).map(|r| r.get(0)).collect::<Vec<i32>>());
|
2015-01-23 06:33:35 +00:00
|
|
|
or_panic!(stmt.finish());
|
2015-01-23 06:24:47 +00:00
|
|
|
|
|
|
|
let stmt = or_panic!(conn.prepare_cached("SELECT id FROM foo ORDER BY id"));
|
|
|
|
assert_eq!(&[1, 2][], or_panic!(stmt.query(&[])).map(|r| r.get(0)).collect::<Vec<i32>>());
|
2015-01-23 06:33:35 +00:00
|
|
|
or_panic!(stmt.finish());
|
2015-01-23 06:24:47 +00:00
|
|
|
|
|
|
|
let stmt = or_panic!(conn.prepare_cached("SELECT id FROM foo ORDER BY id DESC"));
|
|
|
|
assert_eq!(&[2, 1][], or_panic!(stmt.query(&[])).map(|r| r.get(0)).collect::<Vec<i32>>());
|
2015-01-23 06:33:35 +00:00
|
|
|
or_panic!(stmt.finish());
|
2015-01-23 06:24:47 +00:00
|
|
|
}
|