本文整理汇总了Python中flaskbb.forum.models.ForumsRead.save方法的典型用法代码示例。如果您正苦于以下问题:Python ForumsRead.save方法的具体用法?Python ForumsRead.save怎么用?Python ForumsRead.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flaskbb.forum.models.ForumsRead
的用法示例。
在下文中一共展示了ForumsRead.save方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_topic_tracker_needs_update_cleared
# 需要导入模块: from flaskbb.forum.models import ForumsRead [as 别名]
# 或者: from flaskbb.forum.models.ForumsRead import save [as 别名]
def test_topic_tracker_needs_update_cleared(database, user, topic):
"""Tests if the topicsread needs an update if the forum has been marked
as cleared.
"""
forumsread = ForumsRead.query.\
filter(ForumsRead.user_id == user.id,
ForumsRead.forum_id == topic.forum_id).first()
topicsread = TopicsRead.query.\
filter(TopicsRead.user_id == user.id,
TopicsRead.topic_id == topic.id).first()
with current_app.test_request_context():
assert topic.tracker_needs_update(forumsread, topicsread)
# Update the tracker
forumsread = ForumsRead()
forumsread.user_id = user.id
forumsread.forum_id = topic.forum_id
forumsread.last_read = datetime.utcnow()
forumsread.cleared = datetime.utcnow()
forumsread.save()
# Now the topic should be read
assert not topic.tracker_needs_update(forumsread, topicsread)
示例2: forumsread
# 需要导入模块: from flaskbb.forum.models import ForumsRead [as 别名]
# 或者: from flaskbb.forum.models.ForumsRead import save [as 别名]
def forumsread(user, forum, last_read):
"""Create a forumsread object for the user and a forum."""
forumsread = ForumsRead()
forumsread.user_id = user.id
forumsread.forum_id = forum.id
forumsread.last_read = last_read
forumsread.save()
return forumsread
示例3: test_forumsread
# 需要导入模块: from flaskbb.forum.models import ForumsRead [as 别名]
# 或者: from flaskbb.forum.models.ForumsRead import save [as 别名]
def test_forumsread(topic, user):
"""Tests if the forumsread tracker can be saved/edited and deleted with the
implemented save and delete methods."""
forumsread = ForumsRead()
forumsread.user_id = user.id
forumsread.forum_id = topic.forum_id
forumsread.last_read = datetime.utcnow()
forumsread.save()
assert forumsread is not None
forumsread.delete()
forumsread = ForumsRead.query.filter_by(forum_id=forumsread.forum_id).first()
assert forumsread is None
示例4: test_topic_tracker_needs_update
# 需要导入模块: from flaskbb.forum.models import ForumsRead [as 别名]
# 或者: from flaskbb.forum.models.ForumsRead import save [as 别名]
def test_topic_tracker_needs_update(database, user, topic):
"""Tests if the topicsread tracker needs an update if a new post has been
submitted.
"""
forumsread = ForumsRead.query.\
filter(ForumsRead.user_id == user.id,
ForumsRead.forum_id == topic.forum_id).first()
topicsread = TopicsRead.query.\
filter(TopicsRead.user_id == user.id,
TopicsRead.topic_id == topic.id).first()
with current_app.test_request_context():
assert topic.tracker_needs_update(forumsread, topicsread)
# Update the tracker
topicsread = TopicsRead()
topicsread.user_id = user.id
topicsread.topic_id = topic.id
topicsread.forum_id = topic.forum_id
topicsread.last_read = datetime.utcnow()
topicsread.save()
forumsread = ForumsRead()
forumsread.user_id = user.id
forumsread.forum_id = topic.forum_id
forumsread.last_read = datetime.utcnow()
forumsread.save()
# Now the topic should be read
assert not topic.tracker_needs_update(forumsread, topicsread)
post = Post(content="Test Content")
post.save(topic=topic, user=user)
assert topic.tracker_needs_update(forumsread, topicsread)