本文整理汇总了Python中business.post.Post.find_post_by_author_pagination方法的典型用法代码示例。如果您正苦于以下问题:Python Post.find_post_by_author_pagination方法的具体用法?Python Post.find_post_by_author_pagination怎么用?Python Post.find_post_by_author_pagination使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类business.post.Post
的用法示例。
在下文中一共展示了Post.find_post_by_author_pagination方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_find_post_with_invalid_author_id
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def test_find_post_with_invalid_author_id(self):
try:
Post.find_post_by_author_pagination("abc")
self.fail("Expect InvalidFieldError")
except InvalidFieldError:
pass
示例2: test_find_post_with_not_exist_author
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def test_find_post_with_not_exist_author(self):
try:
Post.find_post_by_author_pagination(10, 4, 7)
self.fail("Expect UserNotFoundError")
except UserNotFoundError:
pass
示例3: filter_by_user
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def filter_by_user(user_id, page):
try:
pagination, author = Post.find_post_by_author_pagination(user_id,page)
return render_template("search_result.html", pagination=pagination, author=author, menu_items=default.categories)
except Exception as e:
abort(400)
示例4: test_find_post_with_valid_info
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def test_find_post_with_valid_info(self):
pagination, author = Post.find_post_by_author_pagination(3, 1, 3)
self.assertEqual(len(pagination.items), 3)
示例5: test_find_post_with_out_of_range_index
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def test_find_post_with_out_of_range_index(self):
pagination, author = Post.find_post_by_author_pagination(3, 4, 7)
self.assertEqual(len(pagination.items), 0)
示例6: test_find_post_with_invalid_pagination_param
# 需要导入模块: from business.post import Post [as 别名]
# 或者: from business.post.Post import find_post_by_author_pagination [as 别名]
def test_find_post_with_invalid_pagination_param(self):
pagination, author = Post.find_post_by_author_pagination(3, 0, -2)
self.assertEqual(len(pagination.items), 6)