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

第2章. unittestモジュールを使った機能テストの拡張

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

現在のテストはデフォルトのDjango「it worked」ページを確認しているが、これを修正しよう。代わりに、サイトの実際のフロントページで確認したい要素をチェックするテストにする。

さて、どんなウェブアプリを作っているのか明かす時だ:ToDoリストサイトだ!分かってる、分かってる。ネット上のウェブ開発チュートリアルはどれもToDoリストアプリか、 ブログか投票アプリだ。 俺も流行にしっかり乗ってる。

理由は、ToDoリストが実に良い例だからだ。 最も基本的な形では、文字列のリストという非常にシンプルな構造だから、 「最小限の機能を持つ」リストアプリを簡単に動作させられる。 しかし様々な方法で拡張できる——異なる永続化モデル、 期限やリマインダーの追加、他のユーザとの共有、クライアントサイドUIの改善などだ。 「ToDo」リストに限定する必要もない。 どんな種類のリストでも構わない。 重要な点は、ウェブプログラミングの主要な側面すべてを 示せること、そしてそれらにTDDをどう適用するかを 示せることだ。

機能テストで最小限の実用アプリを 範囲設定する

Seleniumを使ったテストは実際のウェブブラウザを操作できるから、 ユーザ視点でアプリケーションがどう動くかを実際に見られるんだ。だから機能テストって呼ばれるんだよ。

つまりFTはアプリケーション仕様書のような役割を果たす。 いわゆるユーザストーリーに沿って、 ユーザが特定機能を操作する流れと、 アプリがどう応答すべきかを追跡する傾向がある。1

機能テストには人間が読めるストーリーが必要だ。 テストコードに付随するコメントで明示する。新しいFTを作成する際は、まずコメントを書くことでユーザストーリーの要点を捉えられる。 人間が読める形式だから、非プログラマーと共有することも可能だ。 アプリの要件や機能を議論する手段として活用できる。

テスト駆動開発とAgile/リーン開発手法はしばしば組み合わされ、そこで話題に上るのが最小限の実用アプリだ:有用性を保ちつつ構築できる最もシンプルなものは何か?まずはそれを構築し、できるだけ早く反応を確かめよう。

最小限の実用可能なToDoリストは、ユーザがToDo項目を入力し、次回訪問時にそれを記憶しておく機能さえあれば十分だ。

functional_tests.pyを開き、以下のようなストーリーを書いてみよう:

functional_tests.py (ch02l001)

from selenium import ...
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