|
1 | 1 | use serde::Serialize;
|
2 | 2 | use sqlx::PgExecutor;
|
| 3 | +use time::OffsetDateTime; |
3 | 4 |
|
4 | 5 | #[derive(Debug, Eq, PartialEq, Serialize, utoipa::ToSchema)]
|
| 6 | +#[serde(rename_all = "camelCase")] |
5 | 7 | pub struct Sample {
|
6 | 8 | id: i32,
|
7 | 9 | name: String,
|
| 10 | + #[schema(inline)] |
| 11 | + #[serde(with = "time::serde::rfc3339")] |
| 12 | + created_at: OffsetDateTime, |
8 | 13 | }
|
9 | 14 |
|
10 | 15 | pub async fn find<'a, E>(executor: E, id: i32) -> sqlx::Result<Option<Sample>>
|
11 | 16 | where
|
12 | 17 | E: PgExecutor<'a>,
|
13 | 18 | {
|
14 |
| - sqlx::query_as!(Sample, "select id, name from samples where id = $1", id) |
15 |
| - .fetch_optional(executor) |
16 |
| - .await |
| 19 | + sqlx::query_as!( |
| 20 | + Sample, |
| 21 | + "select id, name, created_at from samples where id = $1", |
| 22 | + id |
| 23 | + ) |
| 24 | + .fetch_optional(executor) |
| 25 | + .await |
17 | 26 | }
|
18 | 27 |
|
19 | 28 | #[cfg(test)]
|
@@ -60,16 +69,21 @@ where
|
60 | 69 | #[cfg(test)]
|
61 | 70 | mod tests {
|
62 | 71 | use sqlx::PgPool;
|
| 72 | + use time::{Date, Month, Time}; |
63 | 73 |
|
64 | 74 | use super::*;
|
65 | 75 |
|
66 | 76 | #[sqlx::test(fixtures("sample_find"))]
|
67 |
| - async fn test_find(pool: PgPool) -> sqlx::Result<()> { |
| 77 | + async fn test_find(pool: PgPool) -> Result<(), Box<dyn std::error::Error>> { |
68 | 78 | assert_eq!(
|
69 | 79 | find(&pool, 1).await?,
|
70 | 80 | Some(Sample {
|
71 | 81 | id: 1,
|
72 | 82 | name: String::from("sample_1"),
|
| 83 | + created_at: OffsetDateTime::new_utc( |
| 84 | + Date::from_calendar_date(2022, Month::February, 18)?, |
| 85 | + Time::from_hms(21, 5, 5)? |
| 86 | + ), |
73 | 87 | })
|
74 | 88 | );
|
75 | 89 |
|
|
0 commit comments