unit testing: Looking for errors in a subsystem (class, object, or function) in isolation.
The basic idea:
Foo
, create another class FooTest
to test it, containing various “test case” methods to run.pytest
does not provide a large number of specific assertions. Instead, mostly use base assert
.
There are specific approaches for special cases, like checking that exceptions do occur:
The documentation covers others, such as checking warnings. Numpy also has assertions for data vectors.
# content of test_emaillib.py
from emaillib import Email, MailAdminClient
import pytest
@pytest.fixture
def mail_admin():
return MailAdminClient()
@pytest.fixture
def sending_user(mail_admin):
user = mail_admin.create_user()
yield user
mail_admin.delete_user(user)
@pytest.fixture
def receiving_user(mail_admin):
user = mail_admin.create_user()
yield user
user.clear_mailbox()
mail_admin.delete_user(user)
def test_email_received(sending_user, receiving_user):
email = Email(subject="Hey!", body="How's it going?")
sending_user.send_email(email, receiving_user)
assert email in receiving_user.inbox
Torture tests are okay, but only in addition to simple tests.
Many products have a set of mandatory check-in tests that must pass before code can be added to a source code repository.
Imagine that we’d like to add a method subtractWeeks
to a Date
class, that shifts this Date backward in time by the given number of weeks.
seaborn
package changes the way it orders colors on a graphvirtualenv
requirements.txt
file
C = f(A, B)
, C > B
and C > A
hypothesis
is a python package for thisdatafuzz
can perform the data equivalent—i.e. add noise, etc, that shouldn’t influence the analysispythonfunctioniwrotemyselfonasundayafterwaytoomuchcoffee(argument = False)
pylint
is a linter for python code