2021-10-16 13:33:38 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::{CommentId, DbUrl, PersonId},
|
2020-12-18 18:38:32 +00:00
|
|
|
source::comment::{
|
|
|
|
Comment,
|
|
|
|
CommentForm,
|
|
|
|
CommentLike,
|
|
|
|
CommentLikeForm,
|
|
|
|
CommentSaved,
|
|
|
|
CommentSavedForm,
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{Crud, DeleteableOrRemoveable, Likeable, Saveable},
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::naive_now,
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2022-07-30 03:55:59 +00:00
|
|
|
use diesel_ltree::Ltree;
|
2021-10-16 13:33:38 +00:00
|
|
|
use url::Url;
|
2020-07-17 21:11:07 +00:00
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
impl Comment {
|
|
|
|
pub fn update_ap_id(
|
2021-03-18 20:25:21 +00:00
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: CommentId,
|
|
|
|
apub_id: DbUrl,
|
|
|
|
) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set(ap_id.eq(apub_id))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
pub fn permadelete_for_creator(
|
2021-03-18 20:25:21 +00:00
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: PersonId,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
diesel::update(comment.filter(creator_id.eq(for_creator_id)))
|
|
|
|
.set((
|
|
|
|
content.eq("*Permananently Deleted*"),
|
|
|
|
deleted.eq(true),
|
|
|
|
updated.eq(naive_now()),
|
|
|
|
))
|
|
|
|
.get_results::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
pub fn update_deleted(
|
2020-12-18 18:38:32 +00:00
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
comment_id: CommentId,
|
2020-12-18 18:38:32 +00:00
|
|
|
new_deleted: bool,
|
|
|
|
) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
pub fn update_removed(
|
2020-12-18 18:38:32 +00:00
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
comment_id: CommentId,
|
2020-12-18 18:38:32 +00:00
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
pub fn update_removed_for_creator(
|
2020-12-18 18:38:32 +00:00
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
for_creator_id: PersonId,
|
2020-12-18 18:38:32 +00:00
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
diesel::update(comment.filter(creator_id.eq(for_creator_id)))
|
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
|
|
.get_results::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
pub fn update_content(
|
2020-12-18 18:38:32 +00:00
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
comment_id: CommentId,
|
2020-12-18 18:38:32 +00:00
|
|
|
new_content: &str,
|
|
|
|
) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2020-12-18 18:38:32 +00:00
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((content.eq(new_content), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
2021-09-25 15:44:52 +00:00
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
pub fn create(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_form: &CommentForm,
|
|
|
|
parent_path: Option<&Ltree>,
|
|
|
|
) -> Result<Comment, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2022-07-30 03:55:59 +00:00
|
|
|
|
|
|
|
// Insert, to get the id
|
|
|
|
let inserted_comment = insert_into(comment)
|
2021-09-25 15:44:52 +00:00
|
|
|
.values(comment_form)
|
|
|
|
.on_conflict(ap_id)
|
|
|
|
.do_update()
|
|
|
|
.set(comment_form)
|
2022-07-30 03:55:59 +00:00
|
|
|
.get_result::<Self>(conn);
|
|
|
|
|
|
|
|
if let Ok(comment_insert) = inserted_comment {
|
|
|
|
let comment_id = comment_insert.id;
|
|
|
|
|
|
|
|
// You need to update the ltree column
|
|
|
|
let ltree = Ltree(if let Some(parent_path) = parent_path {
|
|
|
|
// The previous parent will already have 0 in it
|
|
|
|
// Append this comment id
|
|
|
|
format!("{}.{}", parent_path.0, comment_id)
|
|
|
|
} else {
|
|
|
|
// '0' is always the first path, append to that
|
|
|
|
format!("{}.{}", 0, comment_id)
|
|
|
|
});
|
|
|
|
|
|
|
|
let updated_comment = diesel::update(comment.find(comment_id))
|
|
|
|
.set(path.eq(ltree))
|
|
|
|
.get_result::<Self>(conn);
|
|
|
|
|
|
|
|
// Update the child count for the parent comment_aggregates
|
|
|
|
// You could do this with a trigger, but since you have to do this manually anyway,
|
|
|
|
// you can just have it here
|
|
|
|
if let Some(parent_path) = parent_path {
|
|
|
|
// You have to update counts for all parents, not just the immediate one
|
|
|
|
// TODO if the performance of this is terrible, it might be better to do this as part of a
|
|
|
|
// scheduled query... although the counts would often be wrong.
|
|
|
|
//
|
|
|
|
// The child_count query for reference:
|
|
|
|
// select c.id, c.path, count(c2.id) as child_count from comment c
|
|
|
|
// left join comment c2 on c2.path <@ c.path and c2.path != c.path
|
|
|
|
// group by c.id
|
|
|
|
|
|
|
|
let top_parent = format!("0.{}", parent_path.0.split('.').collect::<Vec<&str>>()[1]);
|
|
|
|
let update_child_count_stmt = format!(
|
|
|
|
"
|
|
|
|
update comment_aggregates ca set child_count = c.child_count
|
|
|
|
from (
|
|
|
|
select c.id, c.path, count(c2.id) as child_count from comment c
|
|
|
|
join comment c2 on c2.path <@ c.path and c2.path != c.path
|
|
|
|
and c.path <@ '{}'
|
|
|
|
group by c.id
|
|
|
|
) as c
|
|
|
|
where ca.comment_id = c.id",
|
|
|
|
top_parent
|
|
|
|
);
|
|
|
|
|
|
|
|
sql_query(update_child_count_stmt).execute(conn)?;
|
|
|
|
}
|
|
|
|
updated_comment
|
|
|
|
} else {
|
|
|
|
inserted_comment
|
|
|
|
}
|
2021-09-25 15:44:52 +00:00
|
|
|
}
|
2021-10-18 21:36:44 +00:00
|
|
|
pub fn read_from_apub_id(conn: &PgConnection, object_id: Url) -> Result<Option<Self>, Error> {
|
|
|
|
use crate::schema::comment::dsl::*;
|
|
|
|
let object_id: DbUrl = object_id.into();
|
|
|
|
Ok(
|
|
|
|
comment
|
|
|
|
.filter(ap_id.eq(object_id))
|
|
|
|
.first::<Comment>(conn)
|
|
|
|
.ok()
|
|
|
|
.map(Into::into),
|
|
|
|
)
|
|
|
|
}
|
2022-07-30 03:55:59 +00:00
|
|
|
|
|
|
|
pub fn parent_comment_id(&self) -> Option<CommentId> {
|
|
|
|
let mut ltree_split: Vec<&str> = self.path.0.split('.').collect();
|
|
|
|
ltree_split.remove(0); // The first is always 0
|
|
|
|
if ltree_split.len() > 1 {
|
|
|
|
ltree_split[ltree_split.len() - 2]
|
|
|
|
.parse::<i32>()
|
|
|
|
.map(CommentId)
|
|
|
|
.ok()
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2020-12-18 18:38:32 +00:00
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Crud for Comment {
|
|
|
|
type Form = CommentForm;
|
|
|
|
type IdType = CommentId;
|
2021-03-18 20:25:21 +00:00
|
|
|
fn read(conn: &PgConnection, comment_id: CommentId) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
comment.find(comment_id).first::<Self>(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn delete(conn: &PgConnection, comment_id: CommentId) -> Result<usize, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(comment.find(comment_id)).execute(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
/// This is unimplemented, use [[Comment::create]]
|
|
|
|
fn create(_conn: &PgConnection, _comment_form: &CommentForm) -> Result<Self, Error> {
|
|
|
|
unimplemented!();
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn update(
|
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
comment_id: CommentId,
|
2019-09-07 15:35:05 +00:00
|
|
|
comment_form: &CommentForm,
|
|
|
|
) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment::dsl::*;
|
2019-03-06 01:00:01 +00:00
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set(comment_form)
|
2019-03-23 01:42:57 +00:00
|
|
|
.get_result::<Self>(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Likeable for CommentLike {
|
|
|
|
type Form = CommentLikeForm;
|
|
|
|
type IdType = CommentId;
|
2019-03-23 01:42:57 +00:00
|
|
|
fn like(conn: &PgConnection, comment_like_form: &CommentLikeForm) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment_like::dsl::*;
|
2019-03-06 01:00:01 +00:00
|
|
|
insert_into(comment_like)
|
|
|
|
.values(comment_like_form)
|
2021-02-26 13:49:58 +00:00
|
|
|
.on_conflict((comment_id, person_id))
|
2020-12-16 14:42:57 +00:00
|
|
|
.do_update()
|
|
|
|
.set(comment_like_form)
|
2019-03-23 01:42:57 +00:00
|
|
|
.get_result::<Self>(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
2021-03-18 20:25:21 +00:00
|
|
|
fn remove(
|
|
|
|
conn: &PgConnection,
|
|
|
|
person_id: PersonId,
|
|
|
|
comment_id: CommentId,
|
|
|
|
) -> Result<usize, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment_like::dsl;
|
2019-08-24 02:40:41 +00:00
|
|
|
diesel::delete(
|
2020-08-12 14:43:45 +00:00
|
|
|
dsl::comment_like
|
|
|
|
.filter(dsl::comment_id.eq(comment_id))
|
2021-02-26 13:49:58 +00:00
|
|
|
.filter(dsl::person_id.eq(person_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Saveable for CommentSaved {
|
|
|
|
type Form = CommentSavedForm;
|
2019-04-20 04:06:25 +00:00
|
|
|
fn save(conn: &PgConnection, comment_saved_form: &CommentSavedForm) -> Result<Self, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment_saved::dsl::*;
|
2019-04-20 04:06:25 +00:00
|
|
|
insert_into(comment_saved)
|
|
|
|
.values(comment_saved_form)
|
2021-03-10 22:33:55 +00:00
|
|
|
.on_conflict((comment_id, person_id))
|
2020-12-16 14:42:57 +00:00
|
|
|
.do_update()
|
|
|
|
.set(comment_saved_form)
|
2019-04-20 04:06:25 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
fn unsave(conn: &PgConnection, comment_saved_form: &CommentSavedForm) -> Result<usize, Error> {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::schema::comment_saved::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
|
|
|
comment_saved
|
|
|
|
.filter(comment_id.eq(comment_saved_form.comment_id))
|
2021-03-10 22:33:55 +00:00
|
|
|
.filter(person_id.eq(comment_saved_form.person_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
impl DeleteableOrRemoveable for Comment {
|
|
|
|
fn blank_out_deleted_or_removed_info(mut self) -> Self {
|
|
|
|
self.content = "".into();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-10-16 13:33:38 +00:00
|
|
|
use crate::{
|
|
|
|
source::{
|
|
|
|
comment::*,
|
|
|
|
community::{Community, CommunityForm},
|
|
|
|
person::{Person, PersonForm},
|
|
|
|
post::*,
|
|
|
|
},
|
|
|
|
traits::{Crud, Likeable, Saveable},
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::establish_unpooled_connection,
|
2020-12-18 18:38:32 +00:00
|
|
|
};
|
2022-07-30 03:55:59 +00:00
|
|
|
use diesel_ltree::Ltree;
|
2021-02-25 19:43:39 +00:00
|
|
|
use serial_test::serial;
|
2020-07-10 18:15:41 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
#[test]
|
2021-02-25 19:43:39 +00:00
|
|
|
#[serial]
|
2019-03-06 01:00:01 +00:00
|
|
|
fn test_crud() {
|
2020-01-12 15:31:51 +00:00
|
|
|
let conn = establish_unpooled_connection();
|
2019-03-26 18:00:18 +00:00
|
|
|
|
2021-02-26 13:49:58 +00:00
|
|
|
let new_person = PersonForm {
|
2019-04-03 06:49:32 +00:00
|
|
|
name: "terry".into(),
|
2022-07-11 18:25:33 +00:00
|
|
|
public_key: Some("pubkey".to_string()),
|
2021-03-20 20:59:07 +00:00
|
|
|
..PersonForm::default()
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let inserted_person = Person::create(&conn, &new_person).unwrap();
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
let new_community = CommunityForm {
|
|
|
|
name: "test community".to_string(),
|
2019-04-03 20:59:37 +00:00
|
|
|
title: "nada".to_owned(),
|
2022-07-11 18:25:33 +00:00
|
|
|
public_key: Some("pubkey".to_string()),
|
2021-03-20 20:59:07 +00:00
|
|
|
..CommunityForm::default()
|
2019-03-26 18:00:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_community = Community::create(&conn, &new_community).unwrap();
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
let new_post = PostForm {
|
|
|
|
name: "A test post".into(),
|
2021-03-10 22:33:55 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id: inserted_community.id,
|
2021-03-20 20:59:07 +00:00
|
|
|
..PostForm::default()
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_post = Post::create(&conn, &new_post).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let comment_form = CommentForm {
|
|
|
|
content: "A test comment".into(),
|
2021-03-10 22:33:55 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-23 01:42:57 +00:00
|
|
|
post_id: inserted_post.id,
|
2021-03-20 20:59:07 +00:00
|
|
|
..CommentForm::default()
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
let inserted_comment = Comment::create(&conn, &comment_form, None).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let expected_comment = Comment {
|
|
|
|
id: inserted_comment.id,
|
|
|
|
content: "A test comment".into(),
|
2021-03-10 22:33:55 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-06 01:00:01 +00:00
|
|
|
post_id: inserted_post.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: false,
|
2022-07-30 03:55:59 +00:00
|
|
|
path: Ltree(format!("0.{}", inserted_comment.id)),
|
2019-03-06 01:00:01 +00:00
|
|
|
published: inserted_comment.published,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: inserted_comment.ap_id.to_owned(),
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
let child_comment_form = CommentForm {
|
|
|
|
content: "A child comment".into(),
|
2021-03-10 22:33:55 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-23 01:42:57 +00:00
|
|
|
post_id: inserted_post.id,
|
2022-07-30 03:55:59 +00:00
|
|
|
// path: Some(text2ltree(inserted_comment.id),
|
2021-03-20 20:59:07 +00:00
|
|
|
..CommentForm::default()
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
let inserted_child_comment =
|
|
|
|
Comment::create(&conn, &child_comment_form, Some(&inserted_comment.path)).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
// Comment Like
|
2019-03-06 01:00:01 +00:00
|
|
|
let comment_like_form = CommentLikeForm {
|
2019-03-23 01:42:57 +00:00
|
|
|
comment_id: inserted_comment.id,
|
2019-03-28 19:32:08 +00:00
|
|
|
post_id: inserted_post.id,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: 1,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_comment_like = CommentLike::like(&conn, &comment_like_form).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let expected_comment_like = CommentLike {
|
|
|
|
id: inserted_comment_like.id,
|
|
|
|
comment_id: inserted_comment.id,
|
2019-03-28 19:32:08 +00:00
|
|
|
post_id: inserted_post.id,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-03-06 01:00:01 +00:00
|
|
|
published: inserted_comment_like.published,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: 1,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
// Comment Saved
|
|
|
|
let comment_saved_form = CommentSavedForm {
|
|
|
|
comment_id: inserted_comment.id,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_comment_saved = CommentSaved::save(&conn, &comment_saved_form).unwrap();
|
|
|
|
|
|
|
|
let expected_comment_saved = CommentSaved {
|
|
|
|
id: inserted_comment_saved.id,
|
|
|
|
comment_id: inserted_comment.id,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
published: inserted_comment_saved.published,
|
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let read_comment = Comment::read(&conn, inserted_comment.id).unwrap();
|
|
|
|
let updated_comment = Comment::update(&conn, inserted_comment.id, &comment_form).unwrap();
|
2021-03-10 22:33:55 +00:00
|
|
|
let like_removed = CommentLike::remove(&conn, inserted_person.id, inserted_comment.id).unwrap();
|
2019-04-20 04:06:25 +00:00
|
|
|
let saved_removed = CommentSaved::unsave(&conn, &comment_saved_form).unwrap();
|
2019-03-23 01:42:57 +00:00
|
|
|
let num_deleted = Comment::delete(&conn, inserted_comment.id).unwrap();
|
|
|
|
Comment::delete(&conn, inserted_child_comment.id).unwrap();
|
|
|
|
Post::delete(&conn, inserted_post.id).unwrap();
|
2019-03-26 18:00:18 +00:00
|
|
|
Community::delete(&conn, inserted_community.id).unwrap();
|
2021-03-10 22:33:55 +00:00
|
|
|
Person::delete(&conn, inserted_person.id).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
assert_eq!(expected_comment, read_comment);
|
|
|
|
assert_eq!(expected_comment, inserted_comment);
|
|
|
|
assert_eq!(expected_comment, updated_comment);
|
|
|
|
assert_eq!(expected_comment_like, inserted_comment_like);
|
2019-04-20 04:06:25 +00:00
|
|
|
assert_eq!(expected_comment_saved, inserted_comment_saved);
|
2019-09-07 15:35:05 +00:00
|
|
|
assert_eq!(
|
2022-07-30 03:55:59 +00:00
|
|
|
format!("0.{}.{}", expected_comment.id, inserted_child_comment.id),
|
|
|
|
inserted_child_comment.path.0,
|
2019-09-07 15:35:05 +00:00
|
|
|
);
|
2019-03-06 01:00:01 +00:00
|
|
|
assert_eq!(1, like_removed);
|
2019-04-20 04:06:25 +00:00
|
|
|
assert_eq!(1, saved_removed);
|
2019-03-06 01:00:01 +00:00
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|