當前位置: 首頁>>代碼示例>>Python>>正文


Python ForumsRead.save方法代碼示例

本文整理匯總了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)
開發者ID:0xsKu,項目名稱:flaskbb,代碼行數:27,代碼來源:test_forum_models.py

示例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
開發者ID:PPPython,項目名稱:flaskbb,代碼行數:10,代碼來源:forum.py

示例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
開發者ID:0xsKu,項目名稱:flaskbb,代碼行數:15,代碼來源:test_forum_models.py

示例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)
開發者ID:0xsKu,項目名稱:flaskbb,代碼行數:38,代碼來源:test_forum_models.py


注:本文中的flaskbb.forum.models.ForumsRead.save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。