Skip to content

Commit 6f68035

Browse files
committed
store/sample: Add creation time to model
1 parent 18e5315 commit 6f68035

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

src/server/samples.rs

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ mod tests {
139139
"sample": {
140140
"id": 1,
141141
"name": "sample_1",
142+
"createdAt": "2022-02-18T21:05:05Z",
142143
},
143144
})
144145
);

src/store/fixtures/sample_find.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
insert into samples
22
(name, created_at)
33
values
4-
('sample_1', now()),
5-
('sample_2', now());
4+
('sample_1', '2022-02-18T21:05:05+00:00'),
5+
('sample_2', '2022-02-18T21:05:06+00:00');

src/store/sample.rs

+18-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
use serde::Serialize;
22
use sqlx::PgExecutor;
3+
use time::OffsetDateTime;
34

45
#[derive(Debug, Eq, PartialEq, Serialize, utoipa::ToSchema)]
6+
#[serde(rename_all = "camelCase")]
57
pub struct Sample {
68
id: i32,
79
name: String,
10+
#[schema(inline)]
11+
#[serde(with = "time::serde::rfc3339")]
12+
created_at: OffsetDateTime,
813
}
914

1015
pub async fn find<'a, E>(executor: E, id: i32) -> sqlx::Result<Option<Sample>>
1116
where
1217
E: PgExecutor<'a>,
1318
{
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
1726
}
1827

1928
#[cfg(test)]
@@ -60,16 +69,21 @@ where
6069
#[cfg(test)]
6170
mod tests {
6271
use sqlx::PgPool;
72+
use time::{Date, Month, Time};
6373

6474
use super::*;
6575

6676
#[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>> {
6878
assert_eq!(
6979
find(&pool, 1).await?,
7080
Some(Sample {
7181
id: 1,
7282
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+
),
7387
})
7488
);
7589

0 commit comments

Comments
 (0)