* change: rename `core` crate to `service` in examples * fix(jsonrpsee-example): broken dependency
80 lines
1.7 KiB
Rust
80 lines
1.7 KiB
Rust
mod prepare;
|
|
|
|
use axum_example_service::{Mutation, Query};
|
|
use entity::post;
|
|
use prepare::prepare_mock_db;
|
|
|
|
#[tokio::test]
|
|
async fn main() {
|
|
let db = &prepare_mock_db();
|
|
|
|
{
|
|
let post = Query::find_post_by_id(db, 1).await.unwrap().unwrap();
|
|
|
|
assert_eq!(post.id, 1);
|
|
}
|
|
|
|
{
|
|
let post = Query::find_post_by_id(db, 5).await.unwrap().unwrap();
|
|
|
|
assert_eq!(post.id, 5);
|
|
}
|
|
|
|
{
|
|
let post = Mutation::create_post(
|
|
db,
|
|
post::Model {
|
|
id: 0,
|
|
title: "Title D".to_owned(),
|
|
text: "Text D".to_owned(),
|
|
},
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
post,
|
|
post::ActiveModel {
|
|
id: sea_orm::ActiveValue::Unchanged(6),
|
|
title: sea_orm::ActiveValue::Unchanged("Title D".to_owned()),
|
|
text: sea_orm::ActiveValue::Unchanged("Text D".to_owned())
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
let post = Mutation::update_post_by_id(
|
|
db,
|
|
1,
|
|
post::Model {
|
|
id: 1,
|
|
title: "New Title A".to_owned(),
|
|
text: "New Text A".to_owned(),
|
|
},
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
post,
|
|
post::Model {
|
|
id: 1,
|
|
title: "New Title A".to_owned(),
|
|
text: "New Text A".to_owned(),
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
let result = Mutation::delete_post(db, 5).await.unwrap();
|
|
|
|
assert_eq!(result.rows_affected, 1);
|
|
}
|
|
|
|
{
|
|
let result = Mutation::delete_all_posts(db).await.unwrap();
|
|
|
|
assert_eq!(result.rows_affected, 5);
|
|
}
|
|
}
|