|
|
from django.test import Client, RequestFactory, TransactionTestCase # 导入Django测试相关类
|
|
|
from django.urls import reverse # 导入reverse函数,用于生成URL
|
|
|
|
|
|
from accounts.models import BlogUser # 从accounts应用导入BlogUser模型(用户模型)
|
|
|
from blog.models import Category, Article # 从blog应用导入分类和文章模型
|
|
|
from comments.models import Comment # 导入评论模型
|
|
|
from comments.templatetags.comment_tags import * # 导入评论相关的模板标签
|
|
|
from djangoblog.utils import get_max_articleid_commentid # 导入工具函数
|
|
|
|
|
|
|
|
|
# Create your tests here.
|
|
|
|
|
|
class CommentsTest(TransactionTestCase): # 定义评论测试类,继承事务测试类(支持数据库事务回滚)
|
|
|
def setUp(self): # 测试前的初始化方法,每个测试方法执行前都会调用
|
|
|
self.client = Client() # 创建测试客户端,用于模拟用户请求
|
|
|
self.factory = RequestFactory() # 创建请求工厂,用于构造请求对象
|
|
|
|
|
|
# 配置博客评论设置
|
|
|
from blog.models import BlogSettings
|
|
|
value = BlogSettings()
|
|
|
value.comment_need_review = True # 设置评论需要审核
|
|
|
value.save()
|
|
|
|
|
|
# 创建超级用户(测试用)
|
|
|
self.user = BlogUser.objects.create_superuser(
|
|
|
email="liangliangyy1@gmail.com",
|
|
|
username="liangliangyy1",
|
|
|
password="liangliangyy1")
|
|
|
|
|
|
def update_article_comment_status(self, article): # 辅助方法:更新文章所有评论为启用状态
|
|
|
comments = article.comment_set.all() # 获取文章的所有评论
|
|
|
for comment in comments: # 遍历评论
|
|
|
comment.is_enable = True # 设置为启用
|
|
|
comment.save() # 保存更改
|
|
|
|
|
|
def test_validate_comment(self): # 测试评论验证功能
|
|
|
# 用户登录
|
|
|
self.client.login(username='liangliangyy1', password='liangliangyy1')
|
|
|
|
|
|
# 创建测试分类
|
|
|
category = Category()
|
|
|
category.name = "categoryccc"
|
|
|
category.save()
|
|
|
|
|
|
# 创建测试文章
|
|
|
article = Article()
|
|
|
article.title = "nicetitleccc"
|
|
|
article.body = "nicecontentccc"
|
|
|
article.author = self.user # 设置作者为测试用户
|
|
|
article.category = category # 设置分类
|
|
|
article.type = 'a' # 文章类型(假设'a'表示普通文章)
|
|
|
article.status = 'p' # 发布状态(假设'p'表示已发布)
|
|
|
article.save()
|
|
|
|
|
|
# 生成评论提交的URL
|
|
|
comment_url = reverse(
|
|
|
'comments:postcomment', kwargs={
|
|
|
'article_id': article.id}) # 传入文章ID参数
|
|
|
|
|
|
# 发送评论提交请求(代码不完整,后续应补充POST数据和断言)
|
|
|
response = self.client.post(comment_url, |