Skip to Content
Pythonによるテスト駆動開発, 3rd Edition
book

Pythonによるテスト駆動開発, 3rd Edition

by Harry Percival
October 2025
Intermediate to advanced
712 pages
9h 46m
Japanese
O'Reilly Media, Inc.
Content preview from Pythonによるテスト駆動開発, 3rd Edition

第20章 外部依存関係をテストするためのモックの使用

この作品はAIを使って翻訳されている。ご意見、ご感想をお待ちしている:translation-feedback@oreilly.com

この章では、コードのメール送信部分、つまりスクラッチパッドの2番目の項目をテストする。

機能テスト(FT)では、Djangoが送信したメールをmail.outbox 属性で検索できる方法を紹介した。 しかし本章では、モッキングと呼ばれる一般的なテストテクニックを実演する。 したがって、これらの単体テストでは、この便利なDjangoのショートカットが存在しないものとして扱う。

Djangoのmail.outboxを使うなと言っているのか? 違う。使え。便利なヘルパーだ。 だがモックについて教えたい。外部依存関係を単体テストする汎用ツールとして有用だからだ。 君はいつもDjangoを使っているとは限らない! たとえ使っていたとしても、メールを送信しているとは限らない—— サードパーティAPIとのあらゆるやり取りが、 モックでテストしたくなる場面になり得るのだ。

始める前に:基本的な仕組みを整える

まずは基本的なビューとURLをセットしよう。 ログインメール送信用の新規URLが最終的にホームページへリダイレクトされることを確認する簡単なテストで実現できる:

src/accounts/tests/test_views.py (ch20l001)

from django.test import TestCase


class SendLoginEmailViewTest(TestCase):
    def test_redirects_to_home_page(self):
        response = self.client.post(
            "/accounts/send_login_email", data={"email": "edith@example.com"}
        )
        self.assertRedirects(response, "/")

superlists/urls.py の `include ` と、 accounts/urls.py の `url ` を接続し、 以下のようなテストでパスを確認する:

src/accounts/views.py ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

イーサリアムをマスターする, 2nd Edition

イーサリアムをマスターする, 2nd Edition

Carlo Parisi, Alessandro Mazza, Niccolo Pozzolini, Gavin Wood, Andreas M. Antonopoulos
Excel用Python

Excel用Python

Felix Zumstein

Publisher Resources

ISBN: 0642572274771