2023-05-31 16:24:02 +00:00
|
|
|
mod int_test {
|
2023-05-27 10:52:15 +00:00
|
|
|
use model::{
|
|
|
|
entity::{antenna, user},
|
|
|
|
repository::Repository,
|
|
|
|
schema,
|
|
|
|
};
|
|
|
|
use sea_orm::{ColumnTrait, EntityTrait, QueryFilter};
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-05-27 10:52:15 +00:00
|
|
|
use crate::{cleanup, prepare};
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-05-27 10:52:15 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn can_pack() {
|
|
|
|
prepare().await;
|
|
|
|
let db = database::get_database().unwrap();
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-05-27 10:52:15 +00:00
|
|
|
let alice_antenna = user::Entity::find()
|
|
|
|
.filter(user::Column::Username.eq("alice"))
|
|
|
|
.find_also_related(antenna::Entity)
|
|
|
|
.one(db)
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.expect("alice not found")
|
|
|
|
.1
|
|
|
|
.expect("alice's antenna not found");
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-05-27 10:52:15 +00:00
|
|
|
let packed = alice_antenna
|
|
|
|
.to_owned()
|
|
|
|
.pack()
|
|
|
|
.await
|
|
|
|
.expect("Unable to pack");
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-06-02 08:34:49 +00:00
|
|
|
let packed_by_id = antenna::Model::pack_by_id(alice_antenna.id.to_owned())
|
|
|
|
.await
|
|
|
|
.expect("Unable to pack");
|
|
|
|
|
|
|
|
let result = schema::antenna::Antenna {
|
|
|
|
id: alice_antenna.id,
|
|
|
|
created_at: alice_antenna.created_at.into(),
|
|
|
|
name: "Test Antenna".to_string(),
|
|
|
|
keywords: vec![
|
|
|
|
vec!["foo".to_string(), "bar".to_string()],
|
|
|
|
vec!["foobar".to_string()],
|
|
|
|
]
|
|
|
|
.into(),
|
|
|
|
exclude_keywords: vec![
|
|
|
|
vec!["abc".to_string()],
|
|
|
|
vec!["def".to_string(), "ghi".to_string()],
|
|
|
|
]
|
|
|
|
.into(),
|
|
|
|
src: schema::antenna::AntennaSrc::All,
|
|
|
|
user_list_id: None,
|
|
|
|
user_group_id: None,
|
|
|
|
users: vec![].into(),
|
|
|
|
instances: vec![].into(),
|
|
|
|
case_sensitive: true,
|
|
|
|
notify: true,
|
|
|
|
with_replies: false,
|
|
|
|
with_file: false,
|
|
|
|
has_unread_note: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(packed, result);
|
|
|
|
assert_eq!(packed_by_id, result);
|
2023-05-27 09:50:07 +00:00
|
|
|
|
2023-05-27 10:52:15 +00:00
|
|
|
cleanup().await;
|
|
|
|
}
|
2023-05-27 11:02:10 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn unread_note() {
|
|
|
|
todo!();
|
|
|
|
}
|
2023-05-27 09:50:07 +00:00
|
|
|
}
|