sea-orm/tests/delete_by_id_tests.rs
Billy Chan f3967fdaca
Upstream Changes - 1 (#2145)
* upstream changes

* universal `#[sea_orm_macros::test]`

* fix

* fix

* `ColumnTrait::into_returning_expr`

* fix

* fix

* Do not pub sqlx_common

---------

Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
2024-03-10 18:14:46 +00:00

59 lines
1.5 KiB
Rust

pub mod common;
pub use common::{features::*, setup::*, TestContext};
use sea_orm::{entity::prelude::*, DatabaseConnection, IntoActiveModel, NotSet};
#[sea_orm_macros::test]
async fn main() -> Result<(), DbErr> {
let ctx = TestContext::new("delete_by_id_tests").await;
create_tables(&ctx.db).await?;
create_and_delete_applog(&ctx.db).await?;
ctx.delete().await;
Ok(())
}
pub async fn create_and_delete_applog(db: &DatabaseConnection) -> Result<(), DbErr> {
let log1 = applog::Model {
id: 1,
action: "Testing".to_owned(),
json: Json::String("HI".to_owned()),
created_at: "2021-09-17T17:50:20+08:00".parse().unwrap(),
};
Applog::insert(applog::ActiveModel {
id: NotSet,
..log1.clone().into_active_model()
})
.exec(db)
.await?;
let log2 = applog::Model {
id: 2,
action: "Tests".to_owned(),
json: Json::String("HELLO".to_owned()),
created_at: "2022-09-17T17:50:20+08:00".parse().unwrap(),
};
Applog::insert(applog::ActiveModel {
id: NotSet,
..log2.clone().into_active_model()
})
.exec(db)
.await?;
let delete_res = Applog::delete_by_id(2).exec(db).await?;
assert_eq!(delete_res.rows_affected, 1);
let find_res = Applog::find_by_id(1).all(db).await?;
assert_eq!(find_res, [log1]);
let find_res = Applog::find_by_id(2).all(db).await?;
assert_eq!(find_res, []);
let delete_res = Applog::delete_by_id(3).exec(db).await?;
assert_eq!(delete_res.rows_affected, 0);
Ok(())
}