Files
georm/tests/o2m_relationship.rs
Claude 4c314c2f0b feat: add SQLite support behind a sqlite Cargo feature
Adds a SqliteDialect alongside PostgresDialect, gated by mutually exclusive
postgres (default) / sqlite Cargo features, plus a feature-selected
ActiveDatabase type alias used throughout the public Georm/Defaultable
traits. Basic CRUD and Defaultable are fully covered by a new SQLite test
suite (tests/sqlite/*) running against a real SQLite database, alongside
split migrations/sqlite/*.

Two real dialect differences surfaced beyond placeholder syntax:
- SQLite's INTEGER columns type-infer as i64 in sqlx's compile-time query
  macros (unlike Postgres SERIAL -> i32), so the SQLite test models use i64
  for integer PK/FK fields.
- sqlx's SQLite query macros need bind arguments bound to a place rather
  than passed as an inline expression (fixed once, centrally, in
  SqlDialect::generate_relation_lookup).

Composite-key entities with chrono::DateTime columns (tests/composite_key.rs)
are not yet ported to SQLite: SQLite has no TIMESTAMPTZ equivalent, so sqlx
infers TEXT date/time columns as String rather than DateTime<Utc> unless the
query explicitly overrides the column type. That needs per-field type
overrides threaded through the generated queries, left as follow-up.

CI now matrixes over both backends; formatting/audit only run once since
they don't vary by backend. examples/postgres/* stays out of
--no-default-features builds by scoping sqlite lint/test just recipes to
`-p georm` (it depends on georm's default postgres feature via Cargo
feature unification, so building it under --features sqlite at the
workspace level double-activates both dialects).
2026-07-21 19:06:35 +00:00

36 lines
1.0 KiB
Rust

#![cfg(feature = "postgres")]
use georm::Georm;
mod models;
use models::*;
#[sqlx::test(fixtures("simple_struct", "o2o"))]
async fn books_access_one_review(pool: sqlx::PgPool) -> sqlx::Result<()> {
let book = Book::find(&pool, &1).await?.unwrap();
let reviews = book.get_reviews(&pool).await?;
let review = Review {
id: 1,
book_id: 1,
review: "Great book".into(),
};
assert_eq!(vec![review], reviews);
Ok(())
}
#[sqlx::test(fixtures("simple_struct", "o2o"))]
async fn books_should_access_their_multiple_reviews(pool: sqlx::PgPool) -> sqlx::Result<()> {
let book = Book::find(&pool, &2).await?.unwrap();
let reviews = book.get_reviews(&pool).await?;
assert_eq!(2, reviews.len());
Ok(())
}
#[sqlx::test(fixtures("simple_struct", "o2o"))]
async fn books_can_have_no_reviews(pool: sqlx::PgPool) -> sqlx::Result<()> {
let book = Book::find(&pool, &4).await?.unwrap();
let reviews = book.get_reviews(&pool).await?;
assert_eq!(0, reviews.len());
Ok(())
}