django单独测试model方法

python 复制代码
# myapp/models.py

from django.db import models

class Book(models.Model):
    title = models.CharField(max_length=200)
    author = models.CharField(max_length=200)
    published_date = models.DateField()
    isbn = models.CharField(max_length=13)

    def __str__(self):
        return self.title

    def is_published(self):
        return self.published_date <= timezone.now().date()

我们有一个Book 模型,并且你希望分别测试每个方法。

python 复制代码
# myapp/tests.py

from django.test import TestCase
from django.utils import timezone
from .models import Book
from datetime import timedelta

class BookModelTest(TestCase):
    def setUp(self):
        # 创建一个用于测试的样例书籍实例
        self.book = Book.objects.create(
            title="测试书籍",
            author="作者名字",
            published_date=timezone.now() - timedelta(days=1),
            isbn="1234567890123"
        )

    def test_is_published_true(self):
        # 测试 is_published 方法,当书籍已出版时
        self.assertTrue(self.book.is_published())

    def test_is_published_false(self):
        # 创建一本具有未来出版日期的书籍
        future_book = Book.objects.create(
            title="未来书籍",
            author="作者名字",
            published_date=timezone.now() + timedelta(days=1),
            isbn="9876543210987"
        )
        # 测试 is_published 方法,当书籍尚未出版时
        self.assertFalse(future_book.is_published())

    def test_string_representation(self):
        # 测试 Book 模型的 __str__ 方法
        self.assertEqual(str(self.book), "测试书籍")

各个测试的解释

  1. test_is_published_true 方法:

    • 测试当书籍的出版日期在过去时,is_published 方法返回 True
  2. test_is_published_false 方法:

    • 为一本未来出版日期的书籍测试 is_published 方法,确保它返回 False
  3. test_string_representation 方法:

    • 测试 __str__ 方法,确认它返回书籍的正确字符串表示形式。

单独运行这些测试

如果你想运行特定的测试,可以在运行 manage.py test 时指定测试方法。例如:

python 复制代码
python manage.py test myapp.tests.BookModelTest.test_is_published_true

这个命令将只运行 test_is_published_true 方法,使你能够隔离并验证模型中单个方法的行为。

如果测试所有方法,运行下面的命令:

python manage.py test myapp

相关推荐
Java后端的Ai之路1 小时前
【JDK】-JDK 21 新特性内容
java·开发语言·后端·jdk·jdk21
yunhuibin1 小时前
GoogLeNet学习
人工智能·python·深度学习·神经网络·学习
易辰君2 小时前
【Python爬虫实战】正则:中文匹配与贪婪非贪婪模式详解
开发语言·爬虫·python
普通网友2 小时前
PHP语言的正则表达式
开发语言·后端·golang
秀儿还能再秀2 小时前
正则表达式核心语法 + Python的 re 库中常用方法
python·正则表达式
xcLeigh2 小时前
Python入门:Python3 正则表达式全面学习教程
python·学习·正则表达式·教程·python3
多恩Stone3 小时前
【C++ debug】在 VS Code 中无 Attach 调试 Python 调用的 C++ 扩展
开发语言·c++·python
葵续浅笑4 小时前
从Spring拦截器到Filter过滤器:一次报文修改加解密的填坑经验
java·后端·spring
XW01059994 小时前
4-11判断素数
前端·python·算法·素数
深蓝电商API4 小时前
爬虫增量更新:基于时间戳与哈希去重
爬虫·python