rskit-database-sqlite 0.2.0-alpha.1

SQLite backend for rskit-database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
//! `SQLite` backend implementing [`rskit_database::DatabaseClient`].

use std::sync::Arc;
use std::time::Duration;

use rskit_database::{
    DatabaseClient, DatabaseConfig, DatabaseFactory, DatabaseQuery, DatabaseRegistry,
    DatabaseResult, DatabaseTransaction,
};
use rskit_errors::{AppError, AppResult, ErrorCode};
use serde::{Deserialize, Serialize};
use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
use sqlx::{AssertSqlSafe, Executor, Pool, Sqlite};
use tokio::sync::Mutex;

/// Configuration for the `SQLite` database backend.
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct Config {
    /// `SQLite` database URL, such as `sqlite://app.db` or `sqlite::memory:`.
    pub database_url: String,
    /// Maximum pooled connections.
    #[serde(default = "default_max_connections")]
    pub max_connections: u32,
    /// Minimum pooled connections.
    #[serde(default)]
    pub min_connections: u32,
    /// Connection acquisition timeout.
    #[serde(default = "default_connect_timeout")]
    pub connect_timeout: Duration,
}

const fn default_max_connections() -> u32 {
    10
}

const fn default_connect_timeout() -> Duration {
    Duration::from_secs(30)
}

/// `SQLite` database client.
pub struct SqliteDatabase {
    pool: Pool<Sqlite>,
}

impl SqliteDatabase {
    /// Connect to `SQLite` using the provided config.
    pub async fn connect(config: Config) -> AppResult<Self> {
        validate_config(&config)?;
        let options = config
            .database_url
            .parse::<SqliteConnectOptions>()
            .map_err(|error| {
                AppError::new(ErrorCode::InvalidInput, "invalid `SQLite` database URL")
                    .with_cause(error)
            })?
            .create_if_missing(true);
        let pool = SqlitePoolOptions::new()
            .max_connections(config.max_connections)
            .min_connections(config.min_connections)
            .acquire_timeout(config.connect_timeout)
            .connect_with(options)
            .await
            .map_err(database_error("connect `SQLite` database"))?;
        Ok(Self { pool })
    }
}

#[async_trait::async_trait]
impl DatabaseClient for SqliteDatabase {
    async fn execute(&self, query: DatabaseQuery) -> AppResult<DatabaseResult> {
        execute_on(&self.pool, query).await
    }

    async fn begin(&self) -> AppResult<Box<dyn DatabaseTransaction>> {
        let tx = self
            .pool
            .begin()
            .await
            .map_err(database_error("begin `SQLite` transaction"))?;
        Ok(Box::new(SqliteTransaction { tx: Mutex::new(tx) }))
    }

    async fn ping(&self) -> AppResult<()> {
        self.pool
            .acquire()
            .await
            .map_err(database_error("ping `SQLite` database"))?;
        Ok(())
    }
}

struct SqliteTransaction {
    tx: Mutex<sqlx::Transaction<'static, Sqlite>>,
}

#[async_trait::async_trait]
impl DatabaseTransaction for SqliteTransaction {
    #[allow(clippy::significant_drop_tightening)]
    async fn execute(&self, query: DatabaseQuery) -> AppResult<DatabaseResult> {
        let mut guard = self.tx.lock().await;
        execute_on(&mut **guard, query).await
    }

    async fn commit(self: Box<Self>) -> AppResult<()> {
        self.tx
            .into_inner()
            .commit()
            .await
            .map_err(database_error("commit `SQLite` transaction"))
    }

    async fn rollback(self: Box<Self>) -> AppResult<()> {
        self.tx
            .into_inner()
            .rollback()
            .await
            .map_err(database_error("rollback `SQLite` transaction"))
    }
}

async fn execute_on<'e, E>(executor: E, query: DatabaseQuery) -> AppResult<DatabaseResult>
where
    E: Executor<'e, Database = Sqlite>,
{
    if query.statement.trim().is_empty() {
        return Err(AppError::new(
            ErrorCode::InvalidInput,
            "database query statement is required",
        ));
    }
    let mut sql = sqlx::query(AssertSqlSafe(query.statement.as_str()));
    for parameter in query.parameters {
        sql = bind_json_value(sql, parameter)?;
    }
    let result = sql
        .execute(executor)
        .await
        .map_err(database_error("execute `SQLite` statement"))?;
    Ok(DatabaseResult {
        rows_affected: result.rows_affected(),
    })
}

fn bind_json_value(
    query: sqlx::query::Query<'_, Sqlite, sqlx::sqlite::SqliteArguments>,
    value: serde_json::Value,
) -> AppResult<sqlx::query::Query<'_, Sqlite, sqlx::sqlite::SqliteArguments>> {
    match value {
        serde_json::Value::Null => Ok(query.bind(Option::<String>::None)),
        serde_json::Value::Bool(value) => Ok(query.bind(value)),
        serde_json::Value::Number(value) => {
            if let Some(value) = value.as_i64() {
                Ok(query.bind(value))
            } else if let Some(value) = value.as_u64() {
                let value = i64::try_from(value).map_err(|_| {
                    AppError::new(
                        ErrorCode::InvalidInput,
                        "`SQLite` integer parameter exceeds i64::MAX",
                    )
                })?;
                Ok(query.bind(value))
            } else if let Some(value) = value.as_f64() {
                Ok(query.bind(value))
            } else {
                Err(AppError::new(
                    ErrorCode::InvalidInput,
                    "`SQLite` numeric parameter is not representable",
                ))
            }
        }
        serde_json::Value::String(value) => Ok(query.bind(value)),
        value @ (serde_json::Value::Array(_) | serde_json::Value::Object(_)) => {
            let text = serde_json::to_string(&value).map_err(|error| {
                AppError::new(
                    ErrorCode::InvalidInput,
                    "`SQLite` structured parameter is not serializable to JSON text",
                )
                .with_cause(error)
            })?;
            Ok(query.bind(text))
        }
    }
}

fn validate_config(config: &Config) -> AppResult<()> {
    if config.database_url.trim().is_empty() {
        return Err(AppError::new(
            ErrorCode::MissingField,
            "`SQLite` database_url is required",
        ));
    }
    if config.max_connections == 0 {
        return Err(AppError::new(
            ErrorCode::InvalidInput,
            "`SQLite` max_connections must be greater than zero",
        ));
    }
    if config.min_connections > config.max_connections {
        return Err(AppError::new(
            ErrorCode::InvalidInput,
            "`SQLite` min_connections must not exceed max_connections",
        ));
    }
    if config.connect_timeout.is_zero() {
        return Err(AppError::new(
            ErrorCode::InvalidInput,
            "`SQLite` connect_timeout must be greater than zero",
        ));
    }
    Ok(())
}

fn database_error(operation: &'static str) -> impl FnOnce(sqlx::Error) -> AppError {
    move |error| {
        AppError::new(ErrorCode::DatabaseError, format!("{operation} failed")).with_cause(error)
    }
}

struct SqliteFactory {
    config: Config,
}

#[async_trait::async_trait]
impl DatabaseFactory for SqliteFactory {
    async fn create(&self, _config: &DatabaseConfig) -> AppResult<Arc<dyn DatabaseClient>> {
        Ok(Arc::new(
            SqliteDatabase::connect(self.config.clone()).await?,
        ))
    }
}

/// Explicitly register the `SQLite` database backend.
pub fn register(registry: &mut DatabaseRegistry, config: Config) -> AppResult<()> {
    registry.register("sqlite", Arc::new(SqliteFactory { config }))
}

#[cfg(test)]
mod tests {
    use super::*;
    use rskit_database::{DatabaseClient, DatabaseConfig, DatabaseQuery, DatabaseRegistry};

    fn config() -> Config {
        Config {
            database_url: "sqlite::memory:".into(),
            max_connections: 1,
            min_connections: 0,
            connect_timeout: Duration::from_secs(5),
        }
    }

    #[tokio::test]
    async fn execute_binds_parameters_without_sql_concatenation() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.execute(DatabaseQuery::new("CREATE TABLE users (name TEXT)"))
            .await
            .unwrap();
        db.execute(
            DatabaseQuery::new("INSERT INTO users (name) VALUES (?)")
                .with_parameter("Robert'); DROP TABLE users;--"),
        )
        .await
        .unwrap();
        db.execute(
            DatabaseQuery::new("INSERT INTO users (name) VALUES (?)").with_parameter("Alice"),
        )
        .await
        .unwrap();
        assert_eq!(
            db.execute(
                DatabaseQuery::new("UPDATE users SET name = ? WHERE name = ?")
                    .with_parameter("Bob")
                    .with_parameter("Alice")
            )
            .await
            .unwrap()
            .rows_affected,
            1
        );
        db.execute(
            DatabaseQuery::new("INSERT INTO users (name) VALUES (?)")
                .with_parameter(serde_json::Value::Null),
        )
        .await
        .unwrap();
    }

    #[tokio::test]
    async fn transaction_commit_and_rollback_are_explicit() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.execute(DatabaseQuery::new("CREATE TABLE items (name TEXT)"))
            .await
            .unwrap();
        let tx = db.begin().await.unwrap();
        tx.execute(DatabaseQuery::new("INSERT INTO items (name) VALUES (?)").with_parameter("one"))
            .await
            .unwrap();
        tx.commit().await.unwrap();
        let tx = db.begin().await.unwrap();
        tx.execute(DatabaseQuery::new("INSERT INTO items (name) VALUES (?)").with_parameter("two"))
            .await
            .unwrap();
        tx.rollback().await.unwrap();
    }

    #[tokio::test]
    async fn structured_parameters_bind_as_json_text() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.execute(DatabaseQuery::new("CREATE TABLE docs (payload TEXT)"))
            .await
            .unwrap();
        db.execute(
            DatabaseQuery::new("INSERT INTO docs (payload) VALUES (?)")
                .with_parameter(serde_json::json!({"key": [1, 2, 3]})),
        )
        .await
        .unwrap();
    }

    #[test]
    fn config_validation_rejects_invalid_values() {
        assert_eq!(
            validate_config(&Config {
                database_url: String::new(),
                ..config()
            })
            .unwrap_err()
            .code(),
            ErrorCode::MissingField
        );
        assert_eq!(
            validate_config(&Config {
                max_connections: 0,
                ..config()
            })
            .unwrap_err()
            .code(),
            ErrorCode::InvalidInput
        );
        assert_eq!(
            validate_config(&Config {
                min_connections: 2,
                ..config()
            })
            .unwrap_err()
            .code(),
            ErrorCode::InvalidInput
        );
    }

    #[test]
    fn config_defaults_apply_when_fields_are_omitted() {
        let config: Config =
            serde_json::from_value(serde_json::json!({ "database_url": "sqlite::memory:" }))
                .unwrap();
        assert_eq!(config.max_connections, default_max_connections());
        assert_eq!(config.min_connections, 0);
        assert_eq!(config.connect_timeout, default_connect_timeout());
    }

    #[test]
    fn config_validation_rejects_zero_connect_timeout() {
        assert_eq!(
            validate_config(&Config {
                connect_timeout: Duration::ZERO,
                ..config()
            })
            .unwrap_err()
            .code(),
            ErrorCode::InvalidInput
        );
    }

    #[tokio::test]
    async fn connect_rejects_invalid_database_url() {
        let result = SqliteDatabase::connect(Config {
            database_url: "sqlite://foo?mode=bogus".into(),
            ..config()
        })
        .await;
        assert_eq!(
            result.err().map(|error| error.code()),
            Some(ErrorCode::InvalidInput)
        );
    }

    #[tokio::test]
    async fn execute_rejects_empty_statement() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        assert_eq!(
            db.execute(DatabaseQuery::new("   "))
                .await
                .unwrap_err()
                .code(),
            ErrorCode::InvalidInput
        );
    }

    #[tokio::test]
    async fn execute_maps_sqlx_errors_to_database_error() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        assert_eq!(
            db.execute(DatabaseQuery::new("SELECT * FROM missing_table"))
                .await
                .unwrap_err()
                .code(),
            ErrorCode::DatabaseError
        );
    }

    #[tokio::test]
    async fn ping_acquires_a_connection() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.ping().await.unwrap();
    }

    #[tokio::test]
    async fn binds_every_json_scalar_variant() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.execute(DatabaseQuery::new(
            "CREATE TABLE values_table (flag INTEGER, signed INTEGER, real REAL, text TEXT)",
        ))
        .await
        .unwrap();
        let result = db
            .execute(
                DatabaseQuery::new(
                    "INSERT INTO values_table (flag, signed, real, text) VALUES (?, ?, ?, ?)",
                )
                .with_parameter(true)
                .with_parameter(-7_i64)
                .with_parameter(1.5_f64)
                .with_parameter("hello"),
            )
            .await
            .unwrap();
        assert_eq!(result.rows_affected, 1);
    }

    #[tokio::test]
    async fn unsigned_integer_above_i64_max_is_rejected() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        db.execute(DatabaseQuery::new("CREATE TABLE big (value INTEGER)"))
            .await
            .unwrap();
        assert_eq!(
            db.execute(
                DatabaseQuery::new("INSERT INTO big (value) VALUES (?)")
                    .with_parameter(serde_json::json!(u64::MAX)),
            )
            .await
            .unwrap_err()
            .code(),
            ErrorCode::InvalidInput
        );
    }

    #[tokio::test]
    async fn transaction_execute_maps_errors() {
        let db = SqliteDatabase::connect(config()).await.unwrap();
        let tx = db.begin().await.unwrap();
        assert_eq!(
            tx.execute(DatabaseQuery::new("   "))
                .await
                .unwrap_err()
                .code(),
            ErrorCode::InvalidInput
        );
        tx.rollback().await.unwrap();
    }

    #[tokio::test]
    async fn register_adds_backend_without_connecting() {
        let mut registry = DatabaseRegistry::new();
        register(&mut registry, config()).unwrap();
        assert!(registry.contains("sqlite"));
        let built = registry
            .build(&DatabaseConfig {
                backend: "sqlite".into(),
                ..DatabaseConfig::default()
            })
            .await
            .unwrap();
        built.ping().await.unwrap();
    }
}