Django Targeted Mocking
Mock only at boundaries that are slow, nondeterministic, external, or hard to trigger. Broad mocks can make tests faster while proving less, so prefer framework helpers and interface-checked replacements.
Boundary Workflow
Decide whether mocking is necessary.
- Prefer real code for local domain logic.
- Mock external HTTP, time, settings, output/input, and expensive service edges.
Patch where the code under test looks up the dependency.
- Patch the imported symbol used by the module under test, not the original library path unless that is what the module reads.
Prefer specific tools.
- Settings:
override_settings,modify_settings, or pytest-django'ssettingsfixture. - Output:
io.StringIO, pytestcapsys, or command test helpers. - HTTP:
requests-mockfor hand-authored responses; VCR.py for recorded responses. - Time: pass time as a parameter when possible; otherwise use
time-machineor a similar time-specific tool.
- Settings:
Make mocks interface-aware.
- Use
autospec=True,spec,spec_set,create_autospec, or a small fake object. - Avoid bare
Mock/MagicMockwhen the interface matters.
- Use
Block unexpected outbound HTTP.
- A normal test run should fail if a test reaches the network unintentionally.
Read mocking-patterns.md for concrete patterns.
Decision Rules
- Use Django settings helpers instead of direct assignment to
django.conf.settings. - Prefer a hand-built fake or
types.SimpleNamespacewhen only a few attributes are needed. - Use
requests-mockfor deterministic API responses you control. - Use VCR.py when real recorded responses are valuable and safe to store.
- On CI, configure VCR record mode so missing cassettes fail instead of recording.
- Mock time consistently across the runtime; do not patch several datetime functions by hand.
- Do not mock the component whose behavior the test is meant to prove.
Common Mistakes
- Patching settings directly and leaking state across tests.
- Using catch-all
MagicMockobjects that accept typoed attributes and wrong call signatures. - Allowing tests to hit real external services.
- Recording VCR cassettes in CI.
- Mocking a view's internal helpers so thoroughly that the test no longer covers request behavior.
- Patching the wrong import path and thinking the mock is active.
Verification
Before finishing:
- Each mock has a clear boundary reason.
- Interface-sensitive mocks use specs or fakes.
- Unexpected outbound HTTP is blocked in the normal suite.
- Settings are restored automatically by Django or pytest helpers.
- Tests still cover the behavior, not only mock calls.
Source: hashgraph-online/awesome-codex-plugins → plugins/LVTD-LLC/skills/skills/django-targeted-mocking/SKILL.md