A pytest fixture for image similarity

When testing codepaths that generate images, one might want to ensure that the generated image is what is expected. Matplotlib has a nice decorator @image_comparison that can be applied for this purpo...

How to apply unittest.mock.patch

I've noticed a common area of misunderstanding for people newer to Python testing is _how_ to apply mock.patch and _where_ to patch (i.e. what the target positional argument to unittest.mock.patch sho...

Implementing the CBC padding oracle attack

The CBC padding oracle attack demonstrates how what might initially seem like a small issue can balloon into a devastating attack that can result in total reconstruction of the plaintext by the attack...

Debugging programs with pdb

I recently decided to try my hand at making YouTube videos. I'm planning on mostly making videos about topics I commonly find myself explaining to people, so here's the first, on using pdb, the built-...