2020-12-18 17:27:25 +00:00
|
|
|
use crate::{ApubObject, Crud, Likeable, Saveable};
|
2020-09-01 13:20:22 +00:00
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
|
|
|
source::comment::{
|
|
|
|
Comment,
|
|
|
|
CommentForm,
|
|
|
|
CommentLike,
|
|
|
|
CommentLikeForm,
|
|
|
|
CommentSaved,
|
|
|
|
CommentSavedForm,
|
|
|
|
},
|
2021-01-27 16:42:23 +00:00
|
|
|
Url,
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
2020-07-17 21:11:07 +00:00
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
pub trait Comment_ {
|
2021-02-04 16:34:58 +00:00
|
|
|
fn update_ap_id(conn: &PgConnection, comment_id: i32, apub_id: Url) -> Result<Comment, Error>;
|
2020-12-18 18:38:32 +00:00
|
|
|
fn permadelete_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
) -> Result<Vec<Comment>, Error>;
|
|
|
|
fn update_deleted(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_deleted: bool,
|
|
|
|
) -> Result<Comment, Error>;
|
|
|
|
fn update_removed(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Comment, Error>;
|
|
|
|
fn update_removed_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Comment>, Error>;
|
|
|
|
fn update_read(conn: &PgConnection, comment_id: i32, new_read: bool) -> Result<Comment, Error>;
|
|
|
|
fn update_content(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_content: &str,
|
|
|
|
) -> Result<Comment, Error>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Comment_ for Comment {
|
2021-02-04 16:34:58 +00:00
|
|
|
fn update_ap_id(conn: &PgConnection, comment_id: i32, apub_id: Url) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set(ap_id.eq(apub_id))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn permadelete_for_creator(conn: &PgConnection, for_creator_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_deleted(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_deleted: bool,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_removed(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_removed_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.filter(creator_id.eq(for_creator_id)))
|
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
|
|
.get_results::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_read(conn: &PgConnection, comment_id: i32, new_read: bool) -> Result<Self, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set(read.eq(new_read))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_content(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
new_content: &str,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.find(comment_id))
|
|
|
|
.set((content.eq(new_content), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
impl Crud<CommentForm> for Comment {
|
|
|
|
fn read(conn: &PgConnection, comment_id: i32) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::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
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
fn delete(conn: &PgConnection, comment_id: i32) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::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
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
fn create(conn: &PgConnection, comment_form: &CommentForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
2019-03-28 19:32:08 +00:00
|
|
|
insert_into(comment)
|
|
|
|
.values(comment_form)
|
|
|
|
.get_result::<Self>(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn update(
|
|
|
|
conn: &PgConnection,
|
|
|
|
comment_id: i32,
|
|
|
|
comment_form: &CommentForm,
|
|
|
|
) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
impl ApubObject<CommentForm> for Comment {
|
2021-01-27 16:42:23 +00:00
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: &Url) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
comment.filter(ap_id.eq(object_id)).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn upsert(conn: &PgConnection, comment_form: &CommentForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::comment::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
insert_into(comment)
|
|
|
|
.values(comment_form)
|
|
|
|
.on_conflict(ap_id)
|
|
|
|
.do_update()
|
|
|
|
.set(comment_form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
impl Likeable<CommentLikeForm> for CommentLike {
|
2019-03-23 01:42:57 +00:00
|
|
|
fn like(conn: &PgConnection, comment_like_form: &CommentLikeForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::comment_like::dsl::*;
|
2019-03-06 01:00:01 +00:00
|
|
|
insert_into(comment_like)
|
|
|
|
.values(comment_like_form)
|
2020-12-16 14:42:57 +00:00
|
|
|
.on_conflict((comment_id, user_id))
|
|
|
|
.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
|
|
|
}
|
2020-08-12 14:43:45 +00:00
|
|
|
fn remove(conn: &PgConnection, user_id: i32, comment_id: i32) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::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))
|
|
|
|
.filter(dsl::user_id.eq(user_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
impl Saveable<CommentSavedForm> for CommentSaved {
|
2019-04-20 04:06:25 +00:00
|
|
|
fn save(conn: &PgConnection, comment_saved_form: &CommentSavedForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::comment_saved::dsl::*;
|
2019-04-20 04:06:25 +00:00
|
|
|
insert_into(comment_saved)
|
|
|
|
.values(comment_saved_form)
|
2020-12-16 14:42:57 +00:00
|
|
|
.on_conflict((comment_id, user_id))
|
|
|
|
.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> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::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))
|
|
|
|
.filter(user_id.eq(comment_saved_form.user_id)),
|
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-12-21 16:30:34 +00:00
|
|
|
use crate::{establish_unpooled_connection, Crud, Likeable, ListingType, Saveable, SortType};
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
comment::*,
|
2020-12-21 12:28:12 +00:00
|
|
|
community::{Community, CommunityForm},
|
2020-12-18 18:38:32 +00:00
|
|
|
post::*,
|
|
|
|
user::{UserForm, User_},
|
|
|
|
};
|
2020-07-10 18:15:41 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
#[test]
|
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
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
let new_user = UserForm {
|
|
|
|
name: "terry".into(),
|
|
|
|
preferred_username: None,
|
|
|
|
password_encrypted: "nope".into(),
|
|
|
|
email: None,
|
2020-01-22 21:35:29 +00:00
|
|
|
matrix_user_id: None,
|
2019-12-29 20:39:48 +00:00
|
|
|
avatar: None,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner: None,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin: false,
|
2020-11-10 16:11:08 +00:00
|
|
|
banned: Some(false),
|
2020-09-18 11:04:12 +00:00
|
|
|
published: None,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
show_nsfw: false,
|
2020-10-03 16:44:25 +00:00
|
|
|
theme: "browser".into(),
|
2019-10-21 04:21:54 +00:00
|
|
|
default_sort_type: SortType::Hot as i16,
|
|
|
|
default_listing_type: ListingType::Subscribed as i16,
|
2019-12-09 08:24:53 +00:00
|
|
|
lang: "browser".into(),
|
2020-01-02 21:55:54 +00:00
|
|
|
show_avatars: true,
|
|
|
|
send_notifications_to_email: false,
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: None,
|
2020-04-03 04:12:05 +00:00
|
|
|
bio: None,
|
|
|
|
local: true,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
last_refreshed_at: None,
|
2021-02-04 16:34:58 +00:00
|
|
|
inbox_url: None,
|
|
|
|
shared_inbox_url: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_user = User_::create(&conn, &new_user).unwrap();
|
|
|
|
|
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(),
|
|
|
|
description: None,
|
|
|
|
category_id: 1,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
nsfw: false,
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: None,
|
2020-04-03 04:12:05 +00:00
|
|
|
local: true,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
last_refreshed_at: None,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner: None,
|
|
|
|
icon: None,
|
2021-02-04 16:34:58 +00:00
|
|
|
inbox_url: None,
|
|
|
|
shared_inbox_url: None,
|
|
|
|
followers_url: None,
|
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(),
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-03-26 18:00:18 +00:00
|
|
|
url: None,
|
|
|
|
body: None,
|
|
|
|
community_id: inserted_community.id,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-20 07:24:59 +00:00
|
|
|
locked: None,
|
2019-09-09 06:14:13 +00:00
|
|
|
stickied: None,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
nsfw: false,
|
2020-03-07 23:31:13 +00:00
|
|
|
embed_title: None,
|
|
|
|
embed_description: None,
|
|
|
|
embed_html: None,
|
|
|
|
thumbnail_url: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: None,
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
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(),
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-03-23 01:42:57 +00:00
|
|
|
post_id: inserted_post.id,
|
2019-04-15 23:12:06 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-20 18:17:00 +00:00
|
|
|
read: None,
|
2019-03-06 01:00:01 +00:00
|
|
|
parent_id: None,
|
2020-04-27 16:57:00 +00:00
|
|
|
published: None,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: None,
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_comment = Comment::create(&conn, &comment_form).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let expected_comment = Comment {
|
|
|
|
id: inserted_comment.id,
|
|
|
|
content: "A test comment".into(),
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.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,
|
2019-04-20 04:06:25 +00:00
|
|
|
read: false,
|
2019-03-06 01:00:01 +00:00
|
|
|
parent_id: None,
|
|
|
|
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(),
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-03-23 01:42:57 +00:00
|
|
|
post_id: inserted_post.id,
|
|
|
|
parent_id: Some(inserted_comment.id),
|
2019-04-15 23:12:06 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-20 18:17:00 +00:00
|
|
|
read: None,
|
2020-04-27 16:57:00 +00:00
|
|
|
published: None,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: None,
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_child_comment = Comment::create(&conn, &child_comment_form).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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
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();
|
2020-08-12 14:43:45 +00:00
|
|
|
let like_removed = CommentLike::remove(&conn, inserted_user.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();
|
2019-04-03 06:49:32 +00:00
|
|
|
User_::delete(&conn, inserted_user.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!(
|
|
|
|
expected_comment.id,
|
|
|
|
inserted_child_comment.parent_id.unwrap()
|
|
|
|
);
|
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);
|
|
|
|
}
|
|
|
|
}
|