mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 18:56:12 +00:00
Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
This commit is contained in:
parent
2c6f9c7fd5
commit
2fecb7ecdf
|
@ -264,10 +264,13 @@ fn queries<'a>() -> Queries<
|
||||||
.then_order_by(is_saved(person_id_join).desc());
|
.then_order_by(is_saved(person_id_join).desc());
|
||||||
}
|
}
|
||||||
|
|
||||||
if options.liked_only {
|
if let Some(my_id) = my_person_id {
|
||||||
query = query.filter(score(person_id_join).eq(1));
|
let not_creator_filter = comment::creator_id.ne(my_id);
|
||||||
} else if options.disliked_only {
|
if options.liked_only {
|
||||||
query = query.filter(score(person_id_join).eq(-1));
|
query = query.filter(not_creator_filter).filter(score(my_id).eq(1));
|
||||||
|
} else if options.disliked_only {
|
||||||
|
query = query.filter(not_creator_filter).filter(score(my_id).eq(-1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !options
|
if !options
|
||||||
|
@ -682,8 +685,10 @@ mod tests {
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
expected_comment_view_no_person,
|
&expected_comment_view_no_person,
|
||||||
read_comment_views_no_person[0]
|
read_comment_views_no_person
|
||||||
|
.first()
|
||||||
|
.ok_or(LemmyErrorType::CouldntFindComment)?
|
||||||
);
|
);
|
||||||
|
|
||||||
let read_comment_views_with_person = CommentQuery {
|
let read_comment_views_with_person = CommentQuery {
|
||||||
|
@ -714,18 +719,45 @@ mod tests {
|
||||||
// Make sure block set the creator blocked
|
// Make sure block set the creator blocked
|
||||||
assert!(read_comment_from_blocked_person.creator_blocked);
|
assert!(read_comment_from_blocked_person.creator_blocked);
|
||||||
|
|
||||||
|
cleanup(data, pool).await
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
#[serial]
|
||||||
|
async fn test_liked_only() -> LemmyResult<()> {
|
||||||
|
let pool = &build_db_pool_for_tests().await;
|
||||||
|
let pool = &mut pool.into();
|
||||||
|
let data = init_data(pool).await;
|
||||||
|
|
||||||
|
// Unblock sara first
|
||||||
|
let timmy_unblocks_sara_form = PersonBlockForm {
|
||||||
|
person_id: data.timmy_local_user_view.person.id,
|
||||||
|
target_id: data.inserted_sara_person.id,
|
||||||
|
};
|
||||||
|
PersonBlock::unblock(pool, &timmy_unblocks_sara_form).await?;
|
||||||
|
|
||||||
|
// Like a new comment
|
||||||
|
let comment_like_form = CommentLikeForm {
|
||||||
|
comment_id: data.inserted_comment_1.id,
|
||||||
|
post_id: data.inserted_post.id,
|
||||||
|
person_id: data.timmy_local_user_view.person.id,
|
||||||
|
score: 1,
|
||||||
|
};
|
||||||
|
CommentLike::like(pool, &comment_like_form).await.unwrap();
|
||||||
|
|
||||||
let read_liked_comment_views = CommentQuery {
|
let read_liked_comment_views = CommentQuery {
|
||||||
local_user: (Some(&data.timmy_local_user_view)),
|
local_user: (Some(&data.timmy_local_user_view)),
|
||||||
liked_only: (true),
|
liked_only: (true),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}
|
}
|
||||||
.list(pool)
|
.list(pool)
|
||||||
.await?;
|
.await?
|
||||||
|
.into_iter()
|
||||||
|
.map(|c| c.comment.content)
|
||||||
|
.collect::<Vec<String>>();
|
||||||
|
|
||||||
assert_eq!(
|
// Shouldn't include your own post, only other peoples
|
||||||
expected_comment_view_with_person,
|
assert_eq!(data.inserted_comment_1.content, read_liked_comment_views[0]);
|
||||||
read_liked_comment_views[0]
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_length!(1, read_liked_comment_views);
|
assert_length!(1, read_liked_comment_views);
|
||||||
|
|
||||||
|
@ -835,7 +867,7 @@ mod tests {
|
||||||
// change user lang to finnish, should only show one post in finnish and one undetermined
|
// change user lang to finnish, should only show one post in finnish and one undetermined
|
||||||
let finnish_id = Language::read_id_from_code(pool, Some("fi"))
|
let finnish_id = Language::read_id_from_code(pool, Some("fi"))
|
||||||
.await?
|
.await?
|
||||||
.unwrap();
|
.ok_or(LemmyErrorType::LanguageNotAllowed)?;
|
||||||
LocalUserLanguage::update(
|
LocalUserLanguage::update(
|
||||||
pool,
|
pool,
|
||||||
vec![finnish_id],
|
vec![finnish_id],
|
||||||
|
@ -855,7 +887,10 @@ mod tests {
|
||||||
assert!(finnish_comment.is_some());
|
assert!(finnish_comment.is_some());
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
data.inserted_comment_2.content,
|
data.inserted_comment_2.content,
|
||||||
finnish_comment.unwrap().comment.content
|
finnish_comment
|
||||||
|
.ok_or(LemmyErrorType::CouldntFindComment)?
|
||||||
|
.comment
|
||||||
|
.content
|
||||||
);
|
);
|
||||||
|
|
||||||
// now show all comments with undetermined language (which is the default value)
|
// now show all comments with undetermined language (which is the default value)
|
||||||
|
|
|
@ -452,11 +452,12 @@ fn queries<'a>() -> Queries<
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(person_id) = my_person_id {
|
if let Some(my_id) = my_person_id {
|
||||||
|
let not_creator_filter = post_aggregates::creator_id.ne(my_id);
|
||||||
if options.liked_only {
|
if options.liked_only {
|
||||||
query = query.filter(score(person_id).eq(1));
|
query = query.filter(not_creator_filter).filter(score(my_id).eq(1));
|
||||||
} else if options.disliked_only {
|
} else if options.disliked_only {
|
||||||
query = query.filter(score(person_id).eq(-1));
|
query = query.filter(not_creator_filter).filter(score(my_id).eq(-1));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1121,6 +1122,36 @@ mod tests {
|
||||||
.await?;
|
.await?;
|
||||||
assert_eq!(vec![expected_post_with_upvote], read_post_listing);
|
assert_eq!(vec![expected_post_with_upvote], read_post_listing);
|
||||||
|
|
||||||
|
let like_removed =
|
||||||
|
PostLike::remove(pool, data.local_user_view.person.id, data.inserted_post.id).await?;
|
||||||
|
assert_eq!(1, like_removed);
|
||||||
|
cleanup(data, pool).await
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
#[serial]
|
||||||
|
async fn post_listing_liked_only() -> LemmyResult<()> {
|
||||||
|
let pool = &build_db_pool().await?;
|
||||||
|
let pool = &mut pool.into();
|
||||||
|
let data = init_data(pool).await?;
|
||||||
|
|
||||||
|
// Like both the bot post, and your own
|
||||||
|
// The liked_only should not show your own post
|
||||||
|
let post_like_form = PostLikeForm {
|
||||||
|
post_id: data.inserted_post.id,
|
||||||
|
person_id: data.local_user_view.person.id,
|
||||||
|
score: 1,
|
||||||
|
};
|
||||||
|
PostLike::like(pool, &post_like_form).await?;
|
||||||
|
|
||||||
|
let bot_post_like_form = PostLikeForm {
|
||||||
|
post_id: data.inserted_bot_post.id,
|
||||||
|
person_id: data.local_user_view.person.id,
|
||||||
|
score: 1,
|
||||||
|
};
|
||||||
|
PostLike::like(pool, &bot_post_like_form).await?;
|
||||||
|
|
||||||
|
// Read the liked only
|
||||||
let read_liked_post_listing = PostQuery {
|
let read_liked_post_listing = PostQuery {
|
||||||
community_id: Some(data.inserted_community.id),
|
community_id: Some(data.inserted_community.id),
|
||||||
liked_only: true,
|
liked_only: true,
|
||||||
|
@ -1128,7 +1159,9 @@ mod tests {
|
||||||
}
|
}
|
||||||
.list(&data.site, pool)
|
.list(&data.site, pool)
|
||||||
.await?;
|
.await?;
|
||||||
assert_eq!(read_post_listing, read_liked_post_listing);
|
|
||||||
|
// This should only include the bot post, not the one you created
|
||||||
|
assert_eq!(vec![POST_BY_BOT], names(&read_liked_post_listing));
|
||||||
|
|
||||||
let read_disliked_post_listing = PostQuery {
|
let read_disliked_post_listing = PostQuery {
|
||||||
community_id: Some(data.inserted_community.id),
|
community_id: Some(data.inserted_community.id),
|
||||||
|
@ -1137,11 +1170,10 @@ mod tests {
|
||||||
}
|
}
|
||||||
.list(&data.site, pool)
|
.list(&data.site, pool)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
// Should be no posts
|
||||||
assert_eq!(read_disliked_post_listing, vec![]);
|
assert_eq!(read_disliked_post_listing, vec![]);
|
||||||
|
|
||||||
let like_removed =
|
|
||||||
PostLike::remove(pool, data.local_user_view.person.id, data.inserted_post.id).await?;
|
|
||||||
assert_eq!(1, like_removed);
|
|
||||||
cleanup(data, pool).await
|
cleanup(data, pool).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1554,7 +1586,7 @@ mod tests {
|
||||||
assert!(
|
assert!(
|
||||||
&post_listings_show_hidden
|
&post_listings_show_hidden
|
||||||
.first()
|
.first()
|
||||||
.expect("first post should exist")
|
.ok_or(LemmyErrorType::CouldntFindPost)?
|
||||||
.hidden
|
.hidden
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue