zero-postgres 0.9.0

A high-performance PostgreSQL client
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
//! Tests for the diesel integration.

#![cfg(feature = "diesel")]
#![allow(
    clippy::panic,
    clippy::panic_in_result_fn,
    clippy::shadow_unrelated,
    clippy::unwrap_used
)]

use std::env;
use std::sync::atomic::{AtomicU32, Ordering};

use diesel::Connection as _;
use diesel::connection::SimpleConnection;
use diesel::prelude::*;
use diesel::sql_types::{Integer, Text};

use zero_postgres::diesel::Connection;

static TABLE_COUNTER: AtomicU32 = AtomicU32::new(0);

fn get_conn() -> Result<Connection, Box<dyn std::error::Error>> {
    let mut db_url =
        env::var("DATABASE_URL").unwrap_or_else(|_| "postgres://localhost/postgres".to_string());
    if !db_url.contains("sslmode=") {
        if db_url.contains('?') {
            db_url.push_str("&sslmode=disable");
        } else {
            db_url.push_str("?sslmode=disable");
        }
    }
    Ok(Connection::establish(&db_url)?)
}

fn unique_table_name() -> String {
    let id = TABLE_COUNTER.fetch_add(1, Ordering::SeqCst);
    format!("diesel_test_{}", id)
}

// --- Connection ---

#[test]
fn establish() -> Result<(), Box<dyn std::error::Error>> {
    let _conn = get_conn()?;
    Ok(())
}

#[test]
fn establish_bad_url() {
    let result = Connection::establish("postgres://invalid_user_xxx@localhost/nonexistent_db_xxx");
    assert!(result.is_err());
}

// --- SimpleConnection::batch_execute ---

#[test]
fn batch_execute() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, name TEXT NOT NULL);
         INSERT INTO {} (name) VALUES ('alice');
         INSERT INTO {} (name) VALUES ('bob');",
        table, table, table
    ))?;

    let count: i64 = diesel::sql_query(format!("SELECT COUNT(*) as count FROM {}", table))
        .get_result::<CountRow>(&mut conn)?
        .count;
    assert_eq!(count, 2);
    Ok(())
}

#[derive(QueryableByName)]
struct CountRow {
    #[diesel(sql_type = diesel::sql_types::BigInt)]
    count: i64,
}

// --- sql_query with bind parameters ---

#[test]
fn sql_query_with_binds() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, name TEXT NOT NULL, age INT NOT NULL)",
        table
    ))?;

    diesel::sql_query(format!("INSERT INTO {} (name, age) VALUES ($1, $2)", table))
        .bind::<Text, _>("alice")
        .bind::<Integer, _>(30)
        .execute(&mut conn)?;

    diesel::sql_query(format!("INSERT INTO {} (name, age) VALUES ($1, $2)", table))
        .bind::<Text, _>("bob")
        .bind::<Integer, _>(25)
        .execute(&mut conn)?;

    #[derive(QueryableByName, Debug, PartialEq)]
    struct Person {
        #[diesel(sql_type = Text)]
        name: String,
        #[diesel(sql_type = Integer)]
        age: i32,
    }

    let people: Vec<Person> =
        diesel::sql_query(format!("SELECT name, age FROM {} ORDER BY age", table))
            .load(&mut conn)?;

    assert_eq!(people.len(), 2);
    assert_eq!(people[0].name, "bob");
    assert_eq!(people[0].age, 25);
    assert_eq!(people[1].name, "alice");
    assert_eq!(people[1].age, 30);
    Ok(())
}

// --- execute_returning_count ---

#[test]
fn execute_returning_count() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, value INT NOT NULL)",
        table
    ))?;

    let inserted = diesel::sql_query(format!(
        "INSERT INTO {} (value) VALUES (1), (2), (3)",
        table
    ))
    .execute(&mut conn)?;
    assert_eq!(inserted, 3);

    let updated =
        diesel::sql_query(format!("UPDATE {} SET value = value + 10", table)).execute(&mut conn)?;
    assert_eq!(updated, 3);

    let deleted =
        diesel::sql_query(format!("DELETE FROM {} WHERE value > 11", table)).execute(&mut conn)?;
    assert_eq!(deleted, 2);
    Ok(())
}

// --- Transactions ---

#[test]
fn transaction_commit() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, value INT NOT NULL)",
        table
    ))?;

    conn.transaction::<_, diesel::result::Error, _>(|conn| {
        diesel::sql_query(format!("INSERT INTO {} (value) VALUES (42)", table)).execute(conn)?;
        Ok(())
    })?;

    let count: CountRow = diesel::sql_query(format!("SELECT COUNT(*) as count FROM {}", table))
        .get_result(&mut conn)?;
    assert_eq!(count.count, 1);
    Ok(())
}

#[test]
fn transaction_rollback() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, value INT NOT NULL)",
        table
    ))?;

    let result: QueryResult<()> = conn.transaction(|conn| {
        diesel::sql_query(format!("INSERT INTO {} (value) VALUES (42)", table)).execute(conn)?;
        Err(diesel::result::Error::RollbackTransaction)
    });
    assert!(result.is_err());

    let count: CountRow = diesel::sql_query(format!("SELECT COUNT(*) as count FROM {}", table))
        .get_result(&mut conn)?;
    assert_eq!(count.count, 0);
    Ok(())
}

// --- NULL handling ---

#[test]
fn nullable_values() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, name TEXT)",
        table
    ))?;

    diesel::sql_query(format!("INSERT INTO {} (name) VALUES ('hello')", table))
        .execute(&mut conn)?;
    diesel::sql_query(format!("INSERT INTO {} (name) VALUES (NULL)", table)).execute(&mut conn)?;

    #[derive(QueryableByName, Debug)]
    struct Row {
        #[diesel(sql_type = diesel::sql_types::Nullable<Text>)]
        name: Option<String>,
    }

    let rows: Vec<Row> =
        diesel::sql_query(format!("SELECT name FROM {} ORDER BY id", table)).load(&mut conn)?;

    assert_eq!(rows.len(), 2);
    assert_eq!(rows[0].name.as_deref(), Some("hello"));
    assert!(rows[1].name.is_none());
    Ok(())
}

// --- Error mapping ---

#[test]
fn unique_violation() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!("CREATE TEMP TABLE {} (id INT PRIMARY KEY)", table))?;

    diesel::sql_query(format!("INSERT INTO {} (id) VALUES (1)", table)).execute(&mut conn)?;

    let result =
        diesel::sql_query(format!("INSERT INTO {} (id) VALUES (1)", table)).execute(&mut conn);

    match result {
        Err(diesel::result::Error::DatabaseError(kind, _)) => {
            assert_eq!(kind, diesel::result::DatabaseErrorKind::UniqueViolation);
        }
        other => panic!("Expected UniqueViolation, got {:?}", other),
    }
    Ok(())
}

#[test]
fn not_null_violation() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, name TEXT NOT NULL)",
        table
    ))?;

    let result =
        diesel::sql_query(format!("INSERT INTO {} (name) VALUES (NULL)", table)).execute(&mut conn);

    match result {
        Err(diesel::result::Error::DatabaseError(kind, _)) => {
            assert_eq!(kind, diesel::result::DatabaseErrorKind::NotNullViolation);
        }
        other => panic!("Expected NotNullViolation, got {:?}", other),
    }
    Ok(())
}

#[test]
fn foreign_key_violation() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let parent = unique_table_name();
    let child = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id INT PRIMARY KEY);
         CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, parent_id INT NOT NULL REFERENCES {}(id))",
        parent, child, parent
    ))?;

    let result = diesel::sql_query(format!("INSERT INTO {} (parent_id) VALUES (999)", child))
        .execute(&mut conn);

    match result {
        Err(diesel::result::Error::DatabaseError(kind, _)) => {
            assert_eq!(kind, diesel::result::DatabaseErrorKind::ForeignKeyViolation);
        }
        other => panic!("Expected ForeignKeyViolation, got {:?}", other),
    }
    Ok(())
}

#[test]
fn check_violation() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, age INT NOT NULL CHECK (age >= 0))",
        table
    ))?;

    let result =
        diesel::sql_query(format!("INSERT INTO {} (age) VALUES (-1)", table)).execute(&mut conn);

    match result {
        Err(diesel::result::Error::DatabaseError(kind, _)) => {
            assert_eq!(kind, diesel::result::DatabaseErrorKind::CheckViolation);
        }
        other => panic!("Expected CheckViolation, got {:?}", other),
    }
    Ok(())
}

// --- Error info preservation ---

#[test]
fn error_info_details() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!("CREATE TEMP TABLE {} (id INT PRIMARY KEY)", table))?;

    diesel::sql_query(format!("INSERT INTO {} (id) VALUES (1)", table)).execute(&mut conn)?;

    let result =
        diesel::sql_query(format!("INSERT INTO {} (id) VALUES (1)", table)).execute(&mut conn);

    match result {
        Err(diesel::result::Error::DatabaseError(_, info)) => {
            assert!(info.message().contains("duplicate key"));
            assert!(info.table_name().is_some());
            assert!(info.constraint_name().is_some());
        }
        other => panic!("Expected DatabaseError, got {:?}", other),
    }
    Ok(())
}

// --- Multiple types ---

#[test]
fn various_types() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (
            i INT NOT NULL,
            t TEXT NOT NULL,
            b BOOLEAN NOT NULL,
            f REAL NOT NULL
        )",
        table
    ))?;

    diesel::sql_query(format!(
        "INSERT INTO {} (i, t, b, f) VALUES ($1, $2, $3, $4)",
        table
    ))
    .bind::<Integer, _>(42)
    .bind::<Text, _>("hello")
    .bind::<diesel::sql_types::Bool, _>(true)
    .bind::<diesel::sql_types::Float, _>(1.23_f32)
    .execute(&mut conn)?;

    #[derive(QueryableByName, Debug)]
    struct Row {
        #[diesel(sql_type = Integer)]
        i: i32,
        #[diesel(sql_type = Text)]
        t: String,
        #[diesel(sql_type = diesel::sql_types::Bool)]
        b: bool,
        #[diesel(sql_type = diesel::sql_types::Float)]
        f: f32,
    }

    let rows: Vec<Row> =
        diesel::sql_query(format!("SELECT i, t, b, f FROM {}", table)).load(&mut conn)?;

    assert_eq!(rows.len(), 1);
    assert_eq!(rows[0].i, 42);
    assert_eq!(rows[0].t, "hello");
    assert!(rows[0].b);
    assert!((rows[0].f - 1.23).abs() < 0.01);
    Ok(())
}

// --- Empty result set ---

#[test]
fn empty_result() -> Result<(), Box<dyn std::error::Error>> {
    let mut conn = get_conn()?;
    let table = unique_table_name();
    conn.batch_execute(&format!(
        "CREATE TEMP TABLE {} (id SERIAL PRIMARY KEY, name TEXT NOT NULL)",
        table
    ))?;

    #[derive(QueryableByName, Debug)]
    #[expect(dead_code)]
    struct Row {
        #[diesel(sql_type = Text)]
        name: String,
    }

    let rows: Vec<Row> =
        diesel::sql_query(format!("SELECT name FROM {}", table)).load(&mut conn)?;

    assert!(rows.is_empty());
    Ok(())
}