aboutsummaryrefslogtreecommitdiff
path: root/backend/tests/util/mod.rs
blob: f34e9f3cc10a1e942ace5ed0d116ded314b90755 (plain)
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
use std::future::Future;

use diesel::RunQueryDsl;
use mozaic4_backend::DbConn;
use rocket::{http::Header, local::asynchronous::Client};

// We use a lock to synchronize between tests so DB operations don't collide.
// For now. In the future, we'll have a nice way to run each test in a DB
// transaction so we can regain concurrency.
static DB_LOCK: parking_lot::Mutex<()> = parking_lot::const_mutex(());

async fn reset_db(db: &DbConn) {
    db.run(|conn| {
        diesel::sql_query(
            r#"
            TRUNCATE TABLE users, sessions,
            bots, code_bundles"#,
        )
        .execute(conn)
        .expect("drop all tables");
    })
    .await
}

pub async fn run_test<F, R>(test_closure: F)
where
    F: FnOnce(Client, DbConn) -> R,
    R: Future<Output = ()>,
{
    let _lock = DB_LOCK.lock();

    let client = Client::untracked(mozaic4_backend::rocket())
        .await
        .expect("failed to create test client");
    let db = mozaic4_backend::DbConn::get_one(client.rocket())
        .await
        .expect("failed to get db connection");

    // make sure we start with a clean DB
    reset_db(&db).await;

    test_closure(client, db).await;
}

pub struct BearerAuth {
    token: String,
}

impl BearerAuth {
    pub fn new(token: String) -> Self {
        Self { token }
    }
}

impl<'a> Into<Header<'a>> for BearerAuth {
    fn into(self) -> Header<'a> {
        Header::new("Authorization", format!("Bearer {}", self.token))
    }
}