コード例 #1
0
def test_react_to_post_reaction_dne_exception(user_setup):
    user = User.objects.get(name='user1')

    with pytest.raises(Exception) as e:
        react_to_comment(user.id, comment_id=1, reaction_type=ReactionType.HAHA.value)

    assert 'Comment does not exist' in str(e.value)
コード例 #2
0
def test_react_to_post_user_cooresponding_post_same_reaction(post_setup):
    post = Post.objects.get(content='post1')
    comment = post.comments.get(id=1)
    user = comment.commented_by
    react_to_comment(user.id, comment.id, ReactionType.WOW.value)
    reactions = comment.reactions.all()

    assert len(reactions) == 0
コード例 #3
0
def test_given_reaction_type_exists_reaction(user_setup):
    post = create_post_data(content='post1', uname='user1', url="*****@*****.**")
    comment = post.comments.get(id=1)

    with pytest.raises(Exception) as e:
        react_to_comment(comment.commented_by.id, comment_id=comment.id, reaction_type='LAUGH')

    assert "Reaction does not exist" in str(e.value)
コード例 #4
0
def test_react_to_post_user_corresponding_post_change_reaction(post_setup):
    post = Post.objects.get(content='post1')
    comment = post.comments.get(id=1)

    user = comment.commented_by

    react_to_comment(user.id, comment.id, ReactionType.HAHA.value)
    r = comment.reactions.get(id=2)

    assert r.reaction == ReactionType.HAHA.value
コード例 #5
0
def test_react_to_post_reaction_not_corresponding_user_post_create_reaction(user_setup, post_setup):
    post = Post.objects.get(content='post1')
    comment = post.comments.get(id=1)

    user2 = User.objects.get(name="user2")

    with pytest.raises(Reaction.DoesNotExist):
        Reaction.objects.get(user=user2)

    react_to_comment(user2.id, comment_id=comment.id, reaction_type=ReactionType.LOL.value)

    r = Reaction.objects.get(user=user2)

    assert r.user.name == "user2"
    assert r.user.profile_pic_url == "*****@*****.**"
    assert r.reaction == ReactionType.LOL.value
コード例 #6
0
def test_react_to_post_user_dne_exception():
    with pytest.raises(Exception) as e:
        react_to_comment(1, 1, reaction_type=ReactionType.LOL.value)
    assert 'User does not exist' in str(e.value)