W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
如果你的任何 Django 視圖使用 Django 的郵件功能 發(fā)送電子郵件,你可能不想每次使用該視圖運(yùn)行測(cè)試時(shí)都發(fā)送電子郵件。出于這個(gè)原因,Django 的測(cè)試運(yùn)行器會(huì)自動(dòng)將所有 Django 發(fā)送的郵件重定向到一個(gè)虛擬的發(fā)件箱。這讓你可以測(cè)試發(fā)送郵件的每一個(gè)方面——從發(fā)送郵件的數(shù)量到每封郵件的內(nèi)容——而不用實(shí)際發(fā)送郵件。
測(cè)試運(yùn)行器通過(guò)透明的將正常的郵件后端替換為測(cè)試后端來(lái)實(shí)現(xiàn)。
在測(cè)試運(yùn)行過(guò)程中,每一封發(fā)出的郵件都會(huì)保存在 ?django.core.mail.outbox
? 中。這是所有已經(jīng)發(fā)送的 ?EmailMessage
?實(shí)例的列表。 ?outbox
?屬性是一個(gè)特殊的屬性,只有在使用 ?locmem
?郵件后端時(shí)才會(huì)創(chuàng)建。它通常不作為 ?django.core.mail
? 模塊的一部分存在,你也不能直接導(dǎo)入它。下面的代碼展示了如何正確訪問(wèn)這個(gè)屬性。
下面是一個(gè)檢查 ?django.core.mail.outbox
? 長(zhǎng)度和內(nèi)容的測(cè)試示例:
from django.core import mail
from django.test import TestCase
class EmailTest(TestCase):
def test_send_email(self):
# Send message.
mail.send_mail(
'Subject here', 'Here is the message.',
'from@example.com', ['to@example.com'],
fail_silently=False,
)
# Test that one message has been sent.
self.assertEqual(len(mail.outbox), 1)
# Verify that the subject of the first message is correct.
self.assertEqual(mail.outbox[0].subject, 'Subject here')
在 Django ?*TestCase
? 中的每個(gè)測(cè)試開(kāi)始時(shí),測(cè)試發(fā)件箱都會(huì)被清空。要手動(dòng)清空發(fā)件箱,將空列表分配給 ?mail.outbox
?:
from django.core import mail
# Empty the test outbox
mail.outbox = []
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: