rust-postgres/src/test.rs

248 lines
7.0 KiB
Rust
Raw Normal View History

2013-07-25 07:10:18 +00:00
extern mod postgres;
use std::f32;
use std::f64;
use postgres::*;
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() {
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-23 07:13:42 +00:00
#[test]
fn test_prepare_err() {
let conn = PostgresConnection::connect("postgres://postgres@127.0.0.1:5432");
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)
}
}
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| {
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
assert_eq!(~[1, 2], result.map(|row| { row[0] }).collect());
}
2013-08-23 07:13:42 +00:00
}
2013-08-25 03:47:36 +00:00
#[test]
fn test_nulls() {
do test_in_transaction |trans| {
2013-09-01 18:06:33 +00:00
trans.update("CREATE TABLE foo (
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]);
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],
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();
}
}
#[test]
fn test_lazy_query() {
do test_in_transaction |trans| {
2013-09-01 18:06:33 +00:00
trans.update("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
val BIGINT
2013-09-01 18:06:33 +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());
}
}
fn test_param_type<T: Eq+ToSql+FromSql>(sql_type: &str, values: &[T]) {
do test_in_transaction |trans| {
2013-09-01 18:06:33 +00:00
trans.update("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
b " + sql_type +
2013-09-01 18:06:33 +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([]);
let actual_values: ~[T] = result.map(|row| { row[0] }).collect();
assert_eq!(values, actual_values.as_slice());
}
2013-08-25 03:47:36 +00:00
}
#[test]
fn test_binary_bool_params() {
test_param_type("BOOL", [Some(true), Some(false), None]);
}
#[test]
fn test_binary_i16_params() {
2013-09-02 17:27:09 +00:00
test_param_type("SMALLINT", [Some(0x0011i16), Some(-0x0011i16), None]);
}
#[test]
fn test_binary_i32_params() {
2013-09-02 17:27:09 +00:00
test_param_type("INT", [Some(0x00112233i32), Some(-0x00112233i32), None]);
}
#[test]
fn test_binary_i64_params() {
test_param_type("BIGINT", [Some(0x0011223344556677i64),
Some(-0x0011223344556677i64), None]);
}
#[test]
fn test_binary_f32_params() {
test_param_type("REAL", [Some(f32::infinity), Some(f32::neg_infinity),
Some(1000.55), None]);
}
#[test]
fn test_binary_f64_params() {
test_param_type("DOUBLE PRECISION", [Some(f64::infinity),
Some(f64::neg_infinity),
Some(10000.55), None]);
}
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 (
id SERIAL PRIMARY KEY,
b " + sql_type +
2013-09-01 18:06:33 +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]);
let stmt = trans.prepare("SELECT b FROM foo");
let mut result = stmt.query([]);
let val: T = result.next().unwrap()[0];
assert!(val.is_NaN());
}
}
#[test]
fn test_f32_nan_param() {
test_nan_param::<f32>("REAL");
}
#[test]
fn test_f64_nan_param() {
test_nan_param::<f64>("DOUBLE PRECISION");
}
#[test]
fn test_wrong_num_params() {
do test_in_transaction |trans| {
2013-09-01 18:06:33 +00:00
trans.update("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
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]);
match res {
Err(PostgresDbError { code: ~"08P01", _ }) => (),
resp => fail!("Unexpected response: %?", resp)
}
2013-09-02 17:27:09 +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]);
}
}
#[test]
fn test_plaintext_pass() {
PostgresConnection::connect("postgres://pass_user:password@127.0.0.1:5432");
}
#[test]
fn test_plaintext_pass_no_pass() {
let ret = PostgresConnection::try_connect("postgres://pass_user@127.0.0.1:5432");
match ret {
Err(MissingPassword) => (),
ret => fail!("Unexpected result %?", ret)
}
}
#[test]
fn test_plaintext_pass_wrong_pass() {
let ret = PostgresConnection::try_connect("postgres://pass_user:asdf@127.0.0.1:5432");
match ret {
Err(DbError(PostgresDbError { code: ~"28P01", _ })) => (),
ret => fail!("Unexpected result %?", ret)
}
}
#[test]
fn test_md5_pass() {
PostgresConnection::connect("postgres://md5_user:password@127.0.0.1:5432");
}
#[test]
fn test_md5_pass_no_pass() {
let ret = PostgresConnection::try_connect("postgres://md5_user@127.0.0.1:5432");
match ret {
Err(MissingPassword) => (),
ret => fail!("Unexpected result %?", ret)
}
}
#[test]
fn test_md5_pass_wrong_pass() {
let ret = PostgresConnection::try_connect("postgres://md5_user:asdf@127.0.0.1:5432");
match ret {
Err(DbError(PostgresDbError { code: ~"28P01", _ })) => (),
ret => fail!("Unexpected result %?", ret)
}
}