summaryrefslogtreecommitdiffstats
path: root/src/routes/user.rs
blob: 73eef047bba1f59bf38384bdea3380b65ec1203c (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
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
use std::sync::Arc;

use axum::{extract::State, response::IntoResponse, Extension, Json};
use axum_extra::routing::TypedPath;
use serde::Deserialize;

use crate::{model::UserSchema, state::AppState, Error};

use super::jwt::Claims;

#[derive(Debug, Deserialize, TypedPath)]
#[typed_path("/api/user/:uuid")]
pub struct UserUuid {
    pub uuid: uuid::Uuid,
}

impl UserUuid {
    /// Get a user with a specific `uuid`
    #[tracing::instrument]
    pub async fn get(self, State(state): State<Arc<AppState>>) -> impl IntoResponse {
        sqlx::query_as!(
            UserSchema,
            "SELECT * FROM users WHERE uuid = $1 LIMIT 1",
            self.uuid
        )
        .fetch_optional(&state.pool)
        .await?
        .ok_or_else(|| Error::UserNotFound)
        .map(Json)
    }
}

#[derive(Debug, Deserialize, TypedPath)]
#[typed_path("/api/user")]
pub struct User;

impl User {
    #[tracing::instrument]
    pub async fn get(
        self,
        State(state): State<Arc<AppState>>,
        Extension(Claims { sub, .. }): Extension<Claims>,
    ) -> Result<impl IntoResponse, Error> {
        sqlx::query_as!(
            UserSchema,
            "SELECT * FROM users WHERE uuid = $1 LIMIT 1",
            sub
        )
        .fetch_optional(&state.pool)
        .await?
        .ok_or_else(|| Error::UserNotFound)
        .map(Json)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    use axum::{
        body::Body,
        http::{header::AUTHORIZATION, Request, StatusCode},
    };

    use http_body_util::BodyExt;
    use sqlx::PgPool;
    use tower::ServiceExt;

    use crate::{init_router, model::UserSchema};

    const JWT_SECRET: &str = "test-jwt-secret-token";
    const UUID: uuid::Uuid = uuid::uuid!("4c14f795-86f0-4361-a02f-0edb966fb145");

    type TestResult<T = (), E = Box<dyn std::error::Error>> = std::result::Result<T, E>;

    #[sqlx::test(fixtures(path = "../../fixtures", scripts("users")))]
    async fn test_user_uuid_ok(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let user = UserSchema {
            uuid: UUID,
            name: "Arthur Dent".to_string(),
            email: "adent@earth.sol".to_string(),
            ..Default::default()
        };

        let request = Request::builder()
            .uri(format!("/api/user/{}", user.uuid))
            .body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::OK, response.status());

        let body_bytes = response.into_body().collect().await?.to_bytes();
        let UserSchema {
            uuid, name, email, ..
        } = serde_json::from_slice(&body_bytes)?;

        assert_eq!(user.uuid, uuid);
        assert_eq!(user.name, name);
        assert_eq!(user.email, email);

        Ok(())
    }

    #[sqlx::test]
    async fn test_user_uuid_not_found(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let user = UserSchema {
            uuid: UUID,
            name: "Arthur Dent".to_string(),
            email: "adent@earth.sol".to_string(),
            ..Default::default()
        };

        let request = Request::builder()
            .uri(format!("/api/user/{}", user.uuid))
            .body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::NOT_FOUND, response.status());

        Ok(())
    }

    #[sqlx::test(fixtures(path = "../../fixtures", scripts("users")))]
    async fn test_user_ok(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let token = Claims::from(UUID).encode(JWT_SECRET.as_ref())?;

        let request = Request::builder()
            .uri("/api/user")
            .header(AUTHORIZATION, format!("Bearer {token}"))
            .body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::OK, response.status());

        let body_bytes = response.into_body().collect().await?.to_bytes();
        let UserSchema {
            uuid, name, email, ..
        } = serde_json::from_slice(&body_bytes)?;

        assert_eq!(UUID, uuid);
        assert_eq!("Arthur Dent", name);
        assert_eq!("adent@earth.sol", email);

        Ok(())
    }

    #[sqlx::test]
    async fn test_user_unauthorized_bad_token(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let token = Claims::from(UUID).encode("BAD_SECRET".as_ref())?;

        let request = Request::builder()
            .uri("/api/user")
            .header(AUTHORIZATION, format!("Bearer {token}"))
            .body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::UNAUTHORIZED, response.status());

        Ok(())
    }

    #[sqlx::test]
    async fn test_user_unauthorized_invalid_token(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let request = Request::builder()
            .uri("/api/user")
            .header(AUTHORIZATION, "Bearer invalidtoken")
            .body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::UNAUTHORIZED, response.status());

        Ok(())
    }

    #[sqlx::test]
    async fn test_user_unauthorized_missing_token(pool: PgPool) -> TestResult {
        let state = Arc::new(AppState {
            pool,
            jwt_secret: JWT_SECRET.to_string(),
        });
        let router = init_router(state.clone());

        let request = Request::builder().uri("/api/user").body(Body::empty())?;

        let response = router.oneshot(request).await?;

        assert_eq!(StatusCode::BAD_REQUEST, response.status());

        Ok(())
    }
}