def test_favorite_an_article(self): u1 = User('foo', '*****@*****.**') u1.save() p1 = UserProfile(u1) p1.save() article = Article(p1, 'title', 'some body', description='some') article.save() assert article.favourite(u1.profile) assert article.is_favourite(u1.profile)
def register_user(username, password, email, **kwargs): try: userprofile = UserProfile( User(username, email, password=password, **kwargs).save()).save() userprofile.user.token = create_access_token(identity=userprofile.user) except IntegrityError: db.session.rollback() raise InvalidUsage.user_already_registered() return userprofile.user
def test_unfavorite_an_article(self): u1 = User('foo', '*****@*****.**') u1.save() p1 = UserProfile(u1) p1.save() u2 = User('foo1', '*****@*****.**') u2.save() p2 = UserProfile(u2) p2.save() article = Article(p1, 'title', 'some body', description='some') article.save() assert article.favourite(p1) assert article.unfavourite(p1) assert not article.is_favourite(p1)
def get(self): muser = UserFactory(password='******') UserProfile(muser).save() db.session.commit() return muser
def test_unfollow_self(self): u1 = User('foo', '*****@*****.**') u1.save() p1 = UserProfile(u1) assert not p1.unfollow(p1)
def test_unfollow_user(self): u1 = User('foo', '*****@*****.**') u1.save() u2 = User('foo1', '*****@*****.**') u2.save() p1 = UserProfile(u1) p2 = UserProfile(u2) p1.save() p2.save() p1.follow(p2) assert p1.is_following(p2) p1.unfollow(p2) assert not p1.is_following(p2)