Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Mock out dependencies while testing in Python
Search
Rain
March 19, 2021
0
160
Mock out dependencies while testing in Python
Rain
March 19, 2021
Tweet
Share
More Decks by Rain
See All by Rain
System Observability: We can improve only what we can observe
rainrainwu
0
62
Handling a High Performance PostgreSQL Database
rainrainwu
0
19
Scheduling Async Tasks with Python Celery
rainrainwu
0
62
Featured
See All Featured
We Have a Design System, Now What?
morganepeng
51
7.3k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
1.2k
Making Projects Easy
brettharned
116
6k
Gamification - CAS2011
davidbonilla
80
5.1k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
230
52k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
4 Signs Your Business is Dying
shpigford
182
22k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
98
18k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
132
33k
How to Think Like a Performance Engineer
csswizardry
22
1.3k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Transcript
Mock Out External Dependencies Rain Wu
Agenda Why isolate dependencies during testing The scope of patched
object The potential risks of mocking dependencies with mock package The tricks of MagickMock
Why isolate dependencies during testing The essence of the test
Tragedies while testing without isolation When should I mock?
foo.py test_foo.py
foo.py test_foo.py Function Test Determines Reflect
foo.py test_foo.py Execute the logic Check the result Call Return
None
Sometimes you should not really execute the logic during the
test
Otherwise… Paid for your API calls Got banned because high-frequency
access Pollute the storage Execute unrecoverable operations
Lab 01 How py te st po ll u te
your s to rage while unit- te s ti ng?
None
The scope of patched object Context manager Function decorator Class
decorator Construct and destruct manually (not recommend)
Lab 02 - 1 Con te xt manager
Lab 02 - 2 Func ti on decora to r
Lab 02 - 3 Class decora to r
Construct and Destruct Manually
The Potential Risks of Mocking Dependencies Wrong parameters Misspelling methods
Lab 03 - 1 Th e unit te st was
passed accidenta ll y (but maybe you th ink th at it should be like th is )
Lab 03 - 2 In some cases, mock wi ll
catch th e issues for you au to ma ti ca ll y
Lab 03 - 3 But some ti mes it won’t,
so we had be tt er make th e schema of patched object s tr ic te r by ourselves
The Tricks of MagicMock Object attributes
Lab 04 - 1 Th e valid a tt ribu
te s of a MagicMock object
Lab 04 - 2 Apply th e fi xed a
tt ribu te s recursively via th e au to spec kwarg
Thanks