#sqlx #postgresql #fb #testing

sqlx-db-tester-fb

Self use , A simple tool to test sqlx with postgres. It will automatically create a database and drop it after the test.

1 unstable release

0.1.0 May 11, 2023

#2171 in Development tools

MIT license

9KB
140 lines

sqlx-db-tester-fb

This a tool to test sqlx with postgres. It only supports tokio runtime at this moment.

How to use it

You should first create a TestDb data structure in your tests. It will automatically create a database and a connection pool for you. You could then get the connection string or connection pool from it to use in your own code. When TestDb gets dropped, it will automatically drop the database.

#[tokio::test]
fn some_test() {
    let tdb = TestDb::new("localhost", 5432, "postgres", "postgres", "./migrations");
    let pool = tdb.get_pool().await;
    // do something with the pool

    // when tdb gets dropped, the database will be dropped
}

License

This project is distributed under the terms of MIT.

See LICENSE for details.

Copyright 2023 Fly Bear

Dependencies

~21–34MB
~673K SLoC