
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Mockito is a spying framework originally based on the Java library with the same name <https://github.com/mockito/mockito>
_. (Actually we invented the strict stubbing mode
back in 2009.)
.. image:: https://github.com/kaste/mockito-python/actions/workflows/test-lint-go.yml/badge.svg :target: https://github.com/kaste/mockito-python/actions/workflows/test-lint-go.yml
pip install mockito
90% use case is that you want to stub out a side effect.
::
from mockito import when, mock, unstub
when(os.path).exists('/foo').thenReturn(True)
# or:
import requests # the famous library
# you actually want to return a Response-like obj, we'll fake it
response = mock({'status_code': 200, 'text': 'Ok'})
when(requests).get(...).thenReturn(response)
# use it
requests.get('http://google.com/')
# clean up
unstub()
http://mockito-python.readthedocs.io/en/latest/
I use rye <https://rye-up.com/>
_, and if you do too: you just clone this repo
to your computer, then run rye sync
in the root directory. Finally, activate
the virtualenv. (rye shell
gives you a hint on how to do that.)
::
pytest
FAQs
Spying framework
We found that mockito demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.