rust-postgres/src/test.rs

218 lines
6.1 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-08-27 05:40:23 +00:00
trans.prepare("CREATE TABLE foo (id BIGINT PRIMARY KEY)").update([]);
trans.prepare("INSERT INTO foo (id) VALUES ($1), ($2)")
2013-08-25 03:47:36 +00:00
.update([&1 as &ToSql, &2 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.iter().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| {
trans.prepare("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
2013-08-25 03:47:36 +00:00
val VARCHAR
)").update([]);
trans.prepare("INSERT INTO foo (val) VALUES ($1), ($2)")
.update([& &"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.iter().map(|row| { row[0] }).collect());
2013-08-25 03:47:36 +00:00
2013-08-27 05:40:23 +00:00
trans.set_rollback();
}
}
fn test_param_type<T: Eq+ToSql+FromSql>(sql_type: &str, values: &[T]) {
do test_in_transaction |trans| {
trans.prepare("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
b " + sql_type +
")").update([]);
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.iter().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() {
test_param_type("SMALLINT", [Some(0x0011), Some(-0x0011), None]);
}
#[test]
fn test_binary_i32_params() {
test_param_type("INT", [Some(0x00112233), Some(-0x00112233), 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| {
trans.prepare("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
b " + sql_type +
")").update([]);
let nan: T = Float::NaN();
trans.prepare("INSERT INTO foo (b) VALUES ($1)")
.update([&nan as &ToSql]);
let stmt = trans.prepare("SELECT b FROM foo");
let result = stmt.query([]);
let val: T = result.iter().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| {
trans.prepare("CREATE TABLE foo (
id SERIAL PRIMARY KEY,
val VARCHAR
)").update([]);
let res = trans.prepare("INSERT INTO foo (val) VALUES ($1), ($2)")
.try_update([& &"foobar" as &ToSql]);
match res {
Err(PostgresDbError { code: ~"08P01", _ }) => (),
resp => fail!("Unexpected response: %?", resp)
}
trans.set_rollback();
}
}
#[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)
}
}