mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
c9f3e1adca
Co-authored-by: Caio <c410.f3r@gmail.com>
383 lines
8.6 KiB
Rust
383 lines
8.6 KiB
Rust
use futures::TryStreamExt;
|
|
use sqlx::{Connection, Executor, FromRow, Postgres};
|
|
use sqlx_core::postgres::types::PgRange;
|
|
use sqlx_test::{new, test_type};
|
|
use std::fmt::Debug;
|
|
use std::ops::Bound;
|
|
|
|
// Transparent types are rust-side wrappers over DB types
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(transparent)]
|
|
struct Transparent(i32);
|
|
|
|
// "Weak" enums map to an integer type indicated by #[repr]
|
|
#[derive(PartialEq, Copy, Clone, Debug, sqlx::Type)]
|
|
#[repr(i32)]
|
|
enum Weak {
|
|
One = 0,
|
|
Two = 2,
|
|
Three = 4,
|
|
}
|
|
|
|
// "Strong" enums can map to TEXT (25)
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "text")]
|
|
#[sqlx(rename_all = "lowercase")]
|
|
enum Strong {
|
|
One,
|
|
Two,
|
|
|
|
#[sqlx(rename = "four")]
|
|
Three,
|
|
}
|
|
|
|
// rename_all variants
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "color_lower")]
|
|
#[sqlx(rename_all = "lowercase")]
|
|
enum ColorLower {
|
|
Red,
|
|
Green,
|
|
Blue,
|
|
}
|
|
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "color_snake")]
|
|
#[sqlx(rename_all = "snake_case")]
|
|
enum ColorSnake {
|
|
RedGreen,
|
|
BlueBlack,
|
|
}
|
|
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "color_upper")]
|
|
#[sqlx(rename_all = "uppercase")]
|
|
enum ColorUpper {
|
|
Red,
|
|
Green,
|
|
Blue,
|
|
}
|
|
|
|
// "Strong" enum can map to a custom type
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "mood")]
|
|
#[sqlx(rename_all = "lowercase")]
|
|
enum Mood {
|
|
Ok,
|
|
Happy,
|
|
Sad,
|
|
}
|
|
|
|
// Records must map to a custom type
|
|
// Note that all types are types in Postgres
|
|
#[derive(PartialEq, Debug, sqlx::Type)]
|
|
#[sqlx(rename = "inventory_item")]
|
|
struct InventoryItem {
|
|
name: String,
|
|
supplier_id: Option<i32>,
|
|
price: Option<i64>,
|
|
}
|
|
|
|
// Custom range type
|
|
#[derive(sqlx::Type, Debug, PartialEq)]
|
|
#[sqlx(rename = "float_range")]
|
|
struct FloatRange(PgRange<f64>);
|
|
|
|
// Custom domain type
|
|
#[derive(sqlx::Type, Debug)]
|
|
#[sqlx(rename = "int4rangeL0pC")]
|
|
struct RangeInclusive(PgRange<i32>);
|
|
|
|
test_type!(transparent<Transparent>(Postgres,
|
|
"0" == Transparent(0),
|
|
"23523" == Transparent(23523)
|
|
));
|
|
|
|
test_type!(weak_enum<Weak>(Postgres,
|
|
"0::int4" == Weak::One,
|
|
"2::int4" == Weak::Two,
|
|
"4::int4" == Weak::Three
|
|
));
|
|
|
|
test_type!(strong_enum<Strong>(Postgres,
|
|
"'one'::text" == Strong::One,
|
|
"'two'::text" == Strong::Two,
|
|
"'four'::text" == Strong::Three
|
|
));
|
|
|
|
test_type!(floatrange<FloatRange>(Postgres,
|
|
"'[1.234, 5.678]'::float_range" == FloatRange(PgRange::from((Bound::Included(1.234), Bound::Included(5.678)))),
|
|
));
|
|
|
|
#[sqlx_macros::test]
|
|
async fn test_enum_type() -> anyhow::Result<()> {
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
conn.execute(
|
|
r#"
|
|
DROP TABLE IF EXISTS people;
|
|
|
|
DROP TYPE IF EXISTS mood CASCADE;
|
|
|
|
CREATE TYPE mood AS ENUM ( 'ok', 'happy', 'sad' );
|
|
|
|
DROP TYPE IF EXISTS color_lower CASCADE;
|
|
DROP TYPE IF EXISTS color_snake CASCADE;
|
|
DROP TYPE IF EXISTS color_upper CASCADE;
|
|
|
|
CREATE TYPE color_lower AS ENUM ( 'red', 'green', 'blue' );
|
|
CREATE TYPE color_snake AS ENUM ( 'red_green', 'blue_black' );
|
|
CREATE TYPE color_upper AS ENUM ( 'RED', 'GREEN', 'BLUE' );
|
|
|
|
CREATE TABLE people (
|
|
id serial PRIMARY KEY,
|
|
mood mood not null
|
|
);
|
|
"#,
|
|
)
|
|
.await?;
|
|
|
|
// Drop and re-acquire the connection
|
|
conn.close().await?;
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
// Select from table test
|
|
let (people_id,): (i32,) = sqlx::query_as(
|
|
"
|
|
INSERT INTO people (mood)
|
|
VALUES ($1)
|
|
RETURNING id
|
|
",
|
|
)
|
|
.bind(Mood::Sad)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
// Drop and re-acquire the connection
|
|
conn.close().await?;
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
#[derive(sqlx::FromRow)]
|
|
struct PeopleRow {
|
|
id: i32,
|
|
mood: Mood,
|
|
}
|
|
|
|
let rec: PeopleRow = sqlx::query_as(
|
|
"
|
|
SELECT id, mood FROM people WHERE id = $1
|
|
",
|
|
)
|
|
.bind(people_id)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert_eq!(rec.id, people_id);
|
|
assert_eq!(rec.mood, Mood::Sad);
|
|
|
|
// Drop and re-acquire the connection
|
|
conn.close().await?;
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
let stmt = format!("SELECT id, mood FROM people WHERE id = {}", people_id);
|
|
dbg!(&stmt);
|
|
|
|
let mut cursor = conn.fetch(&*stmt);
|
|
|
|
let row = cursor.try_next().await?.unwrap();
|
|
let rec = PeopleRow::from_row(&row)?;
|
|
|
|
assert_eq!(rec.id, people_id);
|
|
assert_eq!(rec.mood, Mood::Sad);
|
|
|
|
drop(cursor);
|
|
|
|
// Normal type equivalency test
|
|
|
|
let rec: (bool, Mood) = sqlx::query_as(
|
|
"
|
|
SELECT $1 = 'happy'::mood, $1
|
|
",
|
|
)
|
|
.bind(&Mood::Happy)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert!(rec.0);
|
|
assert_eq!(rec.1, Mood::Happy);
|
|
|
|
let rec: (bool, ColorLower) = sqlx::query_as(
|
|
"
|
|
SELECT $1 = 'green'::color_lower, $1
|
|
",
|
|
)
|
|
.bind(&ColorLower::Green)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert!(rec.0);
|
|
assert_eq!(rec.1, ColorLower::Green);
|
|
|
|
let rec: (bool, ColorSnake) = sqlx::query_as(
|
|
"
|
|
SELECT $1 = 'red_green'::color_snake, $1
|
|
",
|
|
)
|
|
.bind(&ColorSnake::RedGreen)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert!(rec.0);
|
|
assert_eq!(rec.1, ColorSnake::RedGreen);
|
|
|
|
let rec: (bool, ColorUpper) = sqlx::query_as(
|
|
"
|
|
SELECT $1 = 'RED'::color_upper, $1
|
|
",
|
|
)
|
|
.bind(&ColorUpper::Red)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert!(rec.0);
|
|
assert_eq!(rec.1, ColorUpper::Red);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[sqlx_macros::test]
|
|
async fn test_record_type() -> anyhow::Result<()> {
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
let value = InventoryItem {
|
|
name: "fuzzy dice".to_owned(),
|
|
supplier_id: Some(42),
|
|
price: Some(199),
|
|
};
|
|
|
|
let rec: (bool, InventoryItem) = sqlx::query_as(
|
|
"
|
|
SELECT $1 = ROW('fuzzy dice', 42, 199)::inventory_item, $1
|
|
",
|
|
)
|
|
.bind(&value)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert!(rec.0);
|
|
assert_eq!(rec.1, value);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(feature = "macros")]
|
|
#[sqlx_macros::test]
|
|
async fn test_from_row() -> anyhow::Result<()> {
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
#[derive(sqlx::FromRow)]
|
|
struct Account {
|
|
id: i32,
|
|
name: String,
|
|
}
|
|
|
|
let account: Account = sqlx::query_as(
|
|
"SELECT * from (VALUES (1, 'Herp Derpinson')) accounts(id, name) where id = $1",
|
|
)
|
|
.bind(1_i32)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
|
|
assert_eq!(account.id, 1);
|
|
assert_eq!(account.name, "Herp Derpinson");
|
|
|
|
// A _single_ lifetime may be used but only when using the lowest-level API currently (Query::fetch)
|
|
|
|
#[derive(sqlx::FromRow)]
|
|
struct RefAccount<'a> {
|
|
id: i32,
|
|
name: &'a str,
|
|
}
|
|
|
|
let mut cursor = sqlx::query(
|
|
"SELECT * from (VALUES (1, 'Herp Derpinson')) accounts(id, name) where id = $1",
|
|
)
|
|
.bind(1_i32)
|
|
.fetch(&mut conn);
|
|
|
|
let row = cursor.try_next().await?.unwrap();
|
|
let account = RefAccount::from_row(&row)?;
|
|
|
|
assert_eq!(account.id, 1);
|
|
assert_eq!(account.name, "Herp Derpinson");
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(feature = "macros")]
|
|
#[sqlx_macros::test]
|
|
async fn test_from_row_with_keyword() -> anyhow::Result<()> {
|
|
#[derive(Debug, sqlx::FromRow)]
|
|
struct AccountKeyword {
|
|
r#type: i32,
|
|
r#static: String,
|
|
r#let: Option<String>,
|
|
r#struct: Option<String>,
|
|
name: Option<String>,
|
|
}
|
|
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
let account: AccountKeyword = sqlx::query_as(
|
|
r#"SELECT * from (VALUES (1, 'foo', 'bar', null, null)) accounts(type, static, let, struct, name)"#
|
|
)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
println!("{:?}", account);
|
|
|
|
assert_eq!(1, account.r#type);
|
|
assert_eq!("foo", account.r#static);
|
|
assert_eq!(None, account.r#struct);
|
|
assert_eq!(Some("bar".to_owned()), account.r#let);
|
|
assert_eq!(None, account.name);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(feature = "macros")]
|
|
#[sqlx_macros::test]
|
|
async fn test_from_row_with_rename() -> anyhow::Result<()> {
|
|
#[derive(Debug, sqlx::FromRow)]
|
|
struct AccountKeyword {
|
|
#[sqlx(rename = "type")]
|
|
own_type: i32,
|
|
|
|
#[sqlx(rename = "static")]
|
|
my_static: String,
|
|
|
|
#[sqlx(rename = "let")]
|
|
custom_let: Option<String>,
|
|
|
|
#[sqlx(rename = "struct")]
|
|
def_struct: Option<String>,
|
|
|
|
name: Option<String>,
|
|
}
|
|
|
|
let mut conn = new::<Postgres>().await?;
|
|
|
|
let account: AccountKeyword = sqlx::query_as(
|
|
r#"SELECT * from (VALUES (1, 'foo', 'bar', null, null)) accounts(type, static, let, struct, name)"#
|
|
)
|
|
.fetch_one(&mut conn)
|
|
.await?;
|
|
println!("{:?}", account);
|
|
|
|
assert_eq!(1, account.own_type);
|
|
assert_eq!("foo", account.my_static);
|
|
assert_eq!(None, account.def_struct);
|
|
assert_eq!(Some("bar".to_owned()), account.custom_let);
|
|
assert_eq!(None, account.name);
|
|
|
|
Ok(())
|
|
}
|