Stateful in-memory/SQLite mock of the Mastodon REST API for testing Mastodon clients
Project description
Mastodon Mock
mastodon_mock is a stateful, local Mastodon REST API for tests and development. It runs a
real FastAPI server backed by in-memory or file-backed SQLite, so client code can post
statuses, follow accounts, build timelines, manage lists and filters, file reports, and
exercise OAuth/admin flows without touching a live instance.
Use it when you want the confidence of real HTTP and persisted state, without flaky network tests, rate limits, public test posts, or hand-written response mocks.
Highlights:
- Real Mastodon-shaped HTTP API, tested against Mastodon.py.
- Fast disposable SQLite state, with deterministic seed data and reset support.
- Pytest fixtures, a context manager, and decorator sugar for zero-boilerplate tests.
- Bulk sample-data generation for demos, UI work, and performance checks.
- Bundled web client and admin UI at
/_ui/when the package includes the built frontend. - Admin/moderation endpoints for account actions, reports, domain blocks, email blocks, and IP blocks.
Installation
pipx install mastodon_mock
Or with pip:
pip install mastodon_mock
Usage
Run the mock server:
mastodon_mock serve --in-memory
Point a client at it:
from mastodon import Mastodon
client = Mastodon(access_token="mock_token", api_base_url="http://127.0.0.1:3000")
client.status_post("hello from a mock!")
Open http://127.0.0.1:3000/_ui/ for the bundled browser UI when it is available. The UI
covers timelines, compose/reply, boost/favourite/bookmark, quote posts, threads,
profiles, search, lists, an About this server page (instance rules, terms of service,
custom emojis), an announcements banner (dismiss + emoji reactions), and an admin
panel (accounts, reports, domains, announcements, trends).
For a quick, good-looking demo with a small community already populated — multiple accounts, follows, a quote post, announcements, rules, and terms of service — run:
mastodon_mock serve --in-memory --demo
For a populated local instance, generate a throwaway cohort into a SQLite file and point
your config's [database].path at it:
mastodon_mock gen-data --preset small --database ./mastodon_mock.sqlite --yes
HTTPS (required for most Mastodon clients, e.g. Whalebird, Fedistar)
Desktop/mobile Mastodon clients connect to the entered domain over HTTPS regardless of
any scheme you type, so pointing one at a plain-HTTP serve instance fails with
Invalid HTTP request received in the server log (the client's TLS handshake hitting an
HTTP parser).
A plain openssl self-signed cert is often not enough — Electron-based clients (Whalebird, Fedistar) commonly refuse to connect at all rather than warn-and-allow like a browser does. Use mkcert instead: it installs a local CA into your OS trust store and issues certs signed by it, so clients trust the connection outright.
make dev-cert # generates .dev_certs/ via mkcert if installed, else falls back to openssl
make serve-https # dev-cert + serve --in-memory --demo --port 3443 over HTTPS
Or run the steps by hand:
mkcert -install # one-time: adds a local CA to the OS/browser trust stores
mkcert -key-file .dev_certs/localhost-key.pem -cert-file .dev_certs/localhost-cert.pem \
localhost 127.0.0.1 ::1
mastodon_mock serve --in-memory --demo --port 3443 \
--ssl-keyfile .dev_certs/localhost-key.pem --ssl-certfile .dev_certs/localhost-cert.pem
Point the client at https://127.0.0.1:3443 (or localhost). Without mkcert installed,
gen-dev-cert.sh falls back to an openssl self-signed cert, but expect Electron clients
to refuse it outright rather than just warn.
See HTTPS and Real Mastodon Clients for the full
walkthrough (mkcert setup, troubleshooting, and how serve derives a reachable
domain for avatar/header/status URLs).
Tested on...
- Tuba - Works, but had to use port 443 and edit hosts file so cert matched domain (mock.local in my case)
- Whalebird- Works!
- Fedistar - couldn't get it to trust local certificate
- Dowstodon - Works!
- Various web - They need to make a serverside request to my machine. Can't do it, without putting a mock server on public web.
- toot - can't test on Windows
- Sengi - couldn't get this to work? But not sure the Sengi app is finished either (as of 6/2026)?
Documentation
See the documentation for configuration, fixtures, endpoint coverage, data generation, and admin UI/API details.
Contributing
See CONTRIBUTING.md.
License
MIT. See LICENSE.
Changelog
See CHANGELOG.md.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mastodon_mock-0.5.0.tar.gz.
File metadata
- Download URL: mastodon_mock-0.5.0.tar.gz
- Upload date:
- Size: 297.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba70971671015ab2f52b9bdaddc7df97f7385913dba0b62d17d593f5ec23f7d1
|
|
| MD5 |
04f634a2090bc76c3ee20af1821df98e
|
|
| BLAKE2b-256 |
46d1d8b3e92298b78b4d83d97233efa3aa001a2623ce2780667b6d1b940b84db
|
Provenance
The following attestation bundles were made for mastodon_mock-0.5.0.tar.gz:
Publisher:
release.yml on matthewdeanmartin/mastodon_mock
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mastodon_mock-0.5.0.tar.gz -
Subject digest:
ba70971671015ab2f52b9bdaddc7df97f7385913dba0b62d17d593f5ec23f7d1 - Sigstore transparency entry: 1885344823
- Sigstore integration time:
-
Permalink:
matthewdeanmartin/mastodon_mock@c0a60d09e80140c54a9dad31d598826a764343ed -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/matthewdeanmartin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c0a60d09e80140c54a9dad31d598826a764343ed -
Trigger Event:
release
-
Statement type:
File details
Details for the file mastodon_mock-0.5.0-py3-none-any.whl.
File metadata
- Download URL: mastodon_mock-0.5.0-py3-none-any.whl
- Upload date:
- Size: 330.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33fdb010722a617257728ed58f77fb96dfedd21bd9dc84c7f048201c46ea0b0b
|
|
| MD5 |
8c60e490c1ce5b51630feef1796f006b
|
|
| BLAKE2b-256 |
41a84929fd6d89477e976ba1ddc7d66cb511d4708d81a7db66a288851ef924d6
|
Provenance
The following attestation bundles were made for mastodon_mock-0.5.0-py3-none-any.whl:
Publisher:
release.yml on matthewdeanmartin/mastodon_mock
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mastodon_mock-0.5.0-py3-none-any.whl -
Subject digest:
33fdb010722a617257728ed58f77fb96dfedd21bd9dc84c7f048201c46ea0b0b - Sigstore transparency entry: 1885344855
- Sigstore integration time:
-
Permalink:
matthewdeanmartin/mastodon_mock@c0a60d09e80140c54a9dad31d598826a764343ed -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/matthewdeanmartin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c0a60d09e80140c54a9dad31d598826a764343ed -
Trigger Event:
release
-
Statement type: