2013-09-02 20:54:02 +00:00
|
|
|
extern mod extra;
|
2013-07-25 07:10:18 +00:00
|
|
|
extern mod postgres;
|
|
|
|
|
2013-09-02 20:54:02 +00:00
|
|
|
use extra::json;
|
|
|
|
use extra::uuid::Uuid;
|
2013-08-31 23:11:42 +00:00
|
|
|
use std::f32;
|
|
|
|
use std::f64;
|
|
|
|
|
2013-08-29 04:24:43 +00:00
|
|
|
use postgres::*;
|
2013-08-31 23:11:42 +00:00
|
|
|
use postgres::types::{ToSql, FromSql};
|
2013-08-18 03:30:31 +00:00
|
|
|
|
2013-08-04 05:21:16 +00:00
|
|
|
#[test]
|
2013-08-23 05:24:14 +00:00
|
|
|
fn test_basic() {
|
2013-08-31 23:11:42 +00:00
|
|
|
do test_in_transaction |trans| {
|
2013-08-27 05:40:23 +00:00
|
|
|
trans.prepare("CREATE TABLE foo (id BIGINT PRIMARY KEY)").update([]);
|
2013-08-23 05:24:14 +00:00
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
trans.set_rollback();
|
2013-08-23 05:24:14 +00:00
|
|
|
};
|
2013-08-18 02:42:12 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
|
2013-08-27 05:06:53 +00:00
|
|
|
#[test]
|
|
|
|
fn test_prepare_err() {
|
|
|
|
let conn = PostgresConnection::connect("postgres://postgres@127.0.0.1:5432");
|
2013-08-29 04:24:43 +00:00
|
|
|
match conn.try_prepare("invalid sql statment") {
|
|
|
|
Err(PostgresDbError { position, code, _ }) => {
|
|
|
|
assert_eq!(code, ~"42601");
|
|
|
|
match position {
|
|
|
|
Some(Position(1)) => (),
|
|
|
|
position => fail!("Unexpected position %?", position)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resp => fail!("Unexpected result %?", resp)
|
|
|
|
}
|
2013-08-27 05:06:53 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 23:11:42 +00:00
|
|
|
fn test_in_transaction(blk: &fn(&PostgresTransaction)) {
|
2013-08-23 07:13:42 +00:00
|
|
|
let conn = PostgresConnection::connect("postgres://postgres@127.0.0.1:5432");
|
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
do conn.in_transaction |trans| {
|
2013-08-31 23:11:42 +00:00
|
|
|
blk(trans);
|
|
|
|
trans.set_rollback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_query() {
|
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (id BIGINT PRIMARY KEY)", []);
|
|
|
|
trans.update("INSERT INTO foo (id) VALUES ($1), ($2)",
|
2013-09-02 17:27:09 +00:00
|
|
|
[&1i64 as &ToSql, &2i64 as &ToSql]);
|
2013-08-27 05:40:23 +00:00
|
|
|
let stmt = trans.prepare("SELECT * from foo ORDER BY id");
|
2013-08-25 03:47:36 +00:00
|
|
|
let result = stmt.query([]);
|
2013-08-23 07:13:42 +00:00
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
assert_eq!(~[1i64, 2], result.map(|row| { row[0] }).collect());
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
2013-08-25 03:47:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nulls() {
|
2013-08-31 23:11:42 +00:00
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (
|
2013-08-31 23:11:42 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
2013-08-25 03:47:36 +00:00
|
|
|
val VARCHAR
|
2013-09-01 18:06:33 +00:00
|
|
|
)", []);
|
|
|
|
trans.update("INSERT INTO foo (val) VALUES ($1), ($2)",
|
|
|
|
[& &"foobar" as &ToSql, &None::<~str> as &ToSql]);
|
2013-08-31 23:11:42 +00:00
|
|
|
let stmt = trans.prepare("SELECT val FROM foo ORDER BY id");
|
2013-08-25 03:47:36 +00:00
|
|
|
let result = stmt.query([]);
|
|
|
|
|
|
|
|
assert_eq!(~[Some(~"foobar"), None],
|
2013-09-01 04:55:15 +00:00
|
|
|
result.map(|row| { row[0] }).collect());
|
2013-08-25 03:47:36 +00:00
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
trans.set_rollback();
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 06:19:44 +00:00
|
|
|
#[test]
|
|
|
|
fn test_lazy_query() {
|
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (
|
2013-09-01 06:19:44 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
val BIGINT
|
2013-09-01 18:06:33 +00:00
|
|
|
)", []);
|
2013-09-01 06:19:44 +00:00
|
|
|
let stmt = trans.prepare("INSERT INTO foo (val) VALUES ($1)");
|
|
|
|
let data = ~[1i64, 2, 3, 4, 5, 6];
|
|
|
|
for datum in data.iter() {
|
|
|
|
stmt.update([datum as &ToSql]);
|
|
|
|
}
|
|
|
|
|
|
|
|
let stmt = trans.prepare("SELECT val FROM foo ORDER BY id");
|
|
|
|
let result = stmt.lazy_query(2, []);
|
|
|
|
|
|
|
|
assert_eq!(data,
|
|
|
|
result.map(|row| { row[0] }).collect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 20:54:02 +00:00
|
|
|
fn test_type<T: Eq+ToSql+FromSql>(sql_type: &str, values: &[T]) {
|
2013-08-31 23:11:42 +00:00
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (
|
2013-08-31 23:11:42 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
b " + sql_type +
|
2013-09-01 18:06:33 +00:00
|
|
|
")", []);
|
2013-08-31 23:11:42 +00:00
|
|
|
let stmt = trans.prepare("INSERT INTO foo (b) VALUES ($1)");
|
|
|
|
for value in values.iter() {
|
|
|
|
stmt.update([value as &ToSql]);
|
|
|
|
}
|
|
|
|
|
|
|
|
let stmt = trans.prepare("SELECT b FROM foo ORDER BY id");
|
|
|
|
let result = stmt.query([]);
|
|
|
|
|
2013-09-01 04:55:15 +00:00
|
|
|
let actual_values: ~[T] = result.map(|row| { row[0] }).collect();
|
2013-08-31 23:11:42 +00:00
|
|
|
assert_eq!(values, actual_values.as_slice());
|
|
|
|
}
|
2013-08-25 03:47:36 +00:00
|
|
|
}
|
2013-08-26 05:08:37 +00:00
|
|
|
|
2013-08-30 06:28:46 +00:00
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_bool_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("BOOL", [Some(true), Some(false), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
2013-08-30 06:28:46 +00:00
|
|
|
|
2013-09-02 22:14:22 +00:00
|
|
|
#[test]
|
|
|
|
fn test_i8_params() {
|
2013-09-03 00:07:08 +00:00
|
|
|
test_type("\"char\"", [Some(-100i8), Some(127i8), None]);
|
2013-09-02 22:14:22 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 23:11:42 +00:00
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_i16_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("SMALLINT", [Some(0x0011i16), Some(-0x0011i16), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_i32_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("INT", [Some(0x00112233i32), Some(-0x00112233i32), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_i64_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("BIGINT", [Some(0x0011223344556677i64),
|
|
|
|
Some(-0x0011223344556677i64), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_f32_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("REAL", [Some(f32::infinity), Some(f32::neg_infinity),
|
|
|
|
Some(1000.55), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-02 19:42:24 +00:00
|
|
|
fn test_f64_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("DOUBLE PRECISION", [Some(f64::infinity),
|
|
|
|
Some(f64::neg_infinity),
|
|
|
|
Some(10000.55), None]);
|
2013-08-31 23:11:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
#[test]
|
|
|
|
fn test_varchar_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("VARCHAR", [Some(~"hello world"),
|
|
|
|
Some(~"イロハニホヘト チリヌルヲ"), None]);
|
2013-09-02 19:42:24 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 20:07:57 +00:00
|
|
|
#[test]
|
|
|
|
fn test_text_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("TEXT", [Some(~"hello world"),
|
|
|
|
Some(~"イロハニホヘト チリヌルヲ"), None]);
|
2013-09-02 20:07:57 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-02 21:52:23 +00:00
|
|
|
#[test]
|
|
|
|
fn test_bpchar_params() {
|
|
|
|
do test_in_transaction |trans| {
|
|
|
|
trans.update("CREATE TABLE foo (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
b CHAR(5)
|
|
|
|
)", []);
|
|
|
|
trans.update("INSERT INTO foo (b) VALUES ($1), ($2), ($3)",
|
|
|
|
[&Some("12345") as &ToSql, &Some("123") as &ToSql,
|
|
|
|
&None::<~str> as &ToSql]);
|
|
|
|
let stmt = trans.prepare("SELECT b FROM foo ORDER BY id");
|
|
|
|
let res = stmt.query([]);
|
|
|
|
|
|
|
|
assert_eq!(~[Some(~"12345"), Some(~"123 "), None],
|
|
|
|
res.map(|row| { row[0] }).collect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
#[test]
|
|
|
|
fn test_bytea_params() {
|
2013-09-02 20:54:02 +00:00
|
|
|
test_type("BYTEA", [Some(~[0u8, 1, 2, 3, 254, 255]), None]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_json_params() {
|
|
|
|
test_type("JSON", [Some(json::from_str("[10, 11, 12]").unwrap()),
|
|
|
|
Some(json::from_str("{\"f\": \"asd\"}").unwrap()),
|
|
|
|
None])
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_uuid_params() {
|
|
|
|
test_type("UUID", [Some(Uuid::parse_string("a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11").unwrap()),
|
|
|
|
None])
|
2013-09-02 19:42:24 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 23:11:42 +00:00
|
|
|
fn test_nan_param<T: Float+ToSql+FromSql>(sql_type: &str) {
|
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (
|
2013-08-31 23:11:42 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
b " + sql_type +
|
2013-09-01 18:06:33 +00:00
|
|
|
")", []);
|
2013-08-31 23:11:42 +00:00
|
|
|
let nan: T = Float::NaN();
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("INSERT INTO foo (b) VALUES ($1)", [&nan as &ToSql]);
|
2013-08-31 23:11:42 +00:00
|
|
|
|
|
|
|
let stmt = trans.prepare("SELECT b FROM foo");
|
2013-09-01 04:55:15 +00:00
|
|
|
let mut result = stmt.query([]);
|
|
|
|
let val: T = result.next().unwrap()[0];
|
2013-08-31 23:11:42 +00:00
|
|
|
assert!(val.is_NaN());
|
|
|
|
}
|
|
|
|
}
|
2013-08-30 06:28:46 +00:00
|
|
|
|
2013-08-31 23:11:42 +00:00
|
|
|
#[test]
|
|
|
|
fn test_f32_nan_param() {
|
|
|
|
test_nan_param::<f32>("REAL");
|
|
|
|
}
|
2013-08-30 06:28:46 +00:00
|
|
|
|
2013-08-31 23:11:42 +00:00
|
|
|
#[test]
|
|
|
|
fn test_f64_nan_param() {
|
|
|
|
test_nan_param::<f64>("DOUBLE PRECISION");
|
2013-08-30 06:28:46 +00:00
|
|
|
}
|
|
|
|
|
2013-08-29 05:33:27 +00:00
|
|
|
#[test]
|
|
|
|
fn test_wrong_num_params() {
|
2013-08-31 23:11:42 +00:00
|
|
|
do test_in_transaction |trans| {
|
2013-09-01 18:06:33 +00:00
|
|
|
trans.update("CREATE TABLE foo (
|
2013-08-31 23:11:42 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
2013-08-29 05:33:27 +00:00
|
|
|
val VARCHAR
|
2013-09-01 18:06:33 +00:00
|
|
|
)", []);
|
|
|
|
let res = trans.try_update("INSERT INTO foo (val) VALUES ($1), ($2)",
|
|
|
|
[& &"foobar" as &ToSql]);
|
2013-08-29 05:33:27 +00:00
|
|
|
match res {
|
|
|
|
Err(PostgresDbError { code: ~"08P01", _ }) => (),
|
|
|
|
resp => fail!("Unexpected response: %?", resp)
|
|
|
|
}
|
2013-09-02 17:27:09 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-29 05:33:27 +00:00
|
|
|
|
2013-09-02 17:27:09 +00:00
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
|
|
|
fn test_wrong_param_type() {
|
|
|
|
do test_in_transaction |trans| {
|
|
|
|
trans.update("CREATE TABLE foo (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
val BOOL
|
|
|
|
)", []);
|
|
|
|
trans.try_update("INSERT INTO foo (val) VALUES ($1)",
|
|
|
|
[&1i32 as &ToSql]);
|
2013-08-29 05:33:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-03 00:07:08 +00:00
|
|
|
#[test]
|
|
|
|
fn test_find_col_named() {
|
|
|
|
do test_in_transaction |trans| {
|
|
|
|
trans.update("CREATE TABLE foo (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
val BOOL
|
|
|
|
)", []);
|
|
|
|
let stmt = trans.prepare("SELECT id as my_id, val FROM foo");
|
|
|
|
assert_eq!(Some(0), stmt.find_col_named("my_id"));
|
|
|
|
assert_eq!(Some(1), stmt.find_col_named("val"));
|
|
|
|
assert_eq!(None, stmt.find_col_named("asdf"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_find_get_named() {
|
|
|
|
do test_in_transaction |trans| {
|
|
|
|
trans.update("CREATE TABLE foo (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
val INT
|
|
|
|
)", []);
|
|
|
|
trans.update("INSERT INTO foo (val) VALUES (10)", []);
|
|
|
|
let stmt = trans.prepare("SELECT id, val FROM foo");
|
|
|
|
let result = stmt.query([]);
|
|
|
|
|
|
|
|
assert_eq!(~[10i32],
|
|
|
|
result.map(|row| { row.get_named("val") }).collect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-26 05:08:37 +00:00
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass() {
|
|
|
|
PostgresConnection::connect("postgres://pass_user:password@127.0.0.1:5432");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass_no_pass() {
|
2013-08-29 04:24:43 +00:00
|
|
|
let ret = PostgresConnection::try_connect("postgres://pass_user@127.0.0.1:5432");
|
|
|
|
match ret {
|
|
|
|
Err(MissingPassword) => (),
|
|
|
|
ret => fail!("Unexpected result %?", ret)
|
|
|
|
}
|
2013-08-26 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 07:36:09 +00:00
|
|
|
#[test]
|
|
|
|
fn test_plaintext_pass_wrong_pass() {
|
2013-08-29 04:24:43 +00:00
|
|
|
let ret = PostgresConnection::try_connect("postgres://pass_user:asdf@127.0.0.1:5432");
|
|
|
|
match ret {
|
2013-08-29 05:33:27 +00:00
|
|
|
Err(DbError(PostgresDbError { code: ~"28P01", _ })) => (),
|
2013-08-29 04:24:43 +00:00
|
|
|
ret => fail!("Unexpected result %?", ret)
|
|
|
|
}
|
2013-08-26 07:36:09 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 05:08:37 +00:00
|
|
|
#[test]
|
|
|
|
fn test_md5_pass() {
|
|
|
|
PostgresConnection::connect("postgres://md5_user:password@127.0.0.1:5432");
|
|
|
|
}
|
2013-08-26 07:36:09 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_md5_pass_no_pass() {
|
2013-08-29 04:24:43 +00:00
|
|
|
let ret = PostgresConnection::try_connect("postgres://md5_user@127.0.0.1:5432");
|
|
|
|
match ret {
|
|
|
|
Err(MissingPassword) => (),
|
|
|
|
ret => fail!("Unexpected result %?", ret)
|
|
|
|
}
|
2013-08-26 07:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_md5_pass_wrong_pass() {
|
2013-08-29 04:24:43 +00:00
|
|
|
let ret = PostgresConnection::try_connect("postgres://md5_user:asdf@127.0.0.1:5432");
|
|
|
|
match ret {
|
2013-08-29 05:33:27 +00:00
|
|
|
Err(DbError(PostgresDbError { code: ~"28P01", _ })) => (),
|
2013-08-29 04:24:43 +00:00
|
|
|
ret => fail!("Unexpected result %?", ret)
|
|
|
|
}
|
2013-08-26 07:36:09 +00:00
|
|
|
}
|