rs-mock
A super lightweight, in-process Redshift mocker for test suites.
rs-mock transpiles Redshift SQL to duckdb SQL with sqlglot and runs it against an in-memory duckdb database. No cluster, no network, no Docker — just fast, in-process SQL.
Usage
from rs_mock import RedshiftMock
rs = RedshiftMock()
# DDL / DML — state persists across calls for the instance's lifetime
rs.execute("CREATE TABLE users (id INT, name VARCHAR)")
rs.execute("INSERT INTO users VALUES (1, 'alice'), (2, 'bob')")
# SELECTs, JOINs, CTEs — execute() returns the duckdb cursor
rows = rs.execute("SELECT id, name FROM users ORDER BY id").fetchall()
# [(1, 'alice'), (2, 'bob')]
# Need duckdb power features? Grab the cursor or the connection.
df = rs.execute("SELECT * FROM users").df()
rs.connection # the underlying duckdb connection
Supported: regular selects, joins, CTEs, and DDL/DML. Redshift-specific syntax
(e.g. GETDATE()) is rewritten to its duckdb equivalent automatically.
S3: UNLOAD and COPY
UNLOAD and COPY ... FROM 's3://...' are supported against real S3 or, in
tests, a moto-mocked bucket — no cluster and
no network. Install the extra (pip install 'rs-mock[s3]') to pull in boto3,
then run UNLOAD/COPY like any other statement inside a mock_aws context:
import boto3
from moto import mock_aws
from rs_mock import RedshiftMock
with mock_aws():
boto3.client("s3").create_bucket(Bucket="my-bucket")
rs = RedshiftMock()
rs.execute("CREATE TABLE users (id INT, name VARCHAR)")
rs.execute("INSERT INTO users VALUES (1, 'alice'), (2, 'bob')")
# Query result -> S3 (CSV, PARQUET, JSON, or default pipe-delimited text)
rs.execute(
"UNLOAD ('SELECT * FROM users') TO 's3://my-bucket/users_' "
"IAM_ROLE 'arn:aws:iam::123:role/r' FORMAT AS PARQUET"
)
# S3 -> table (every object under the prefix is loaded)
rs.execute("CREATE TABLE loaded (id INT, name VARCHAR)")
rs.execute(
"COPY loaded FROM 's3://my-bucket/users_' "
"IAM_ROLE 'arn:aws:iam::123:role/r' FORMAT AS PARQUET"
)
Recognized options: UNLOAD FORMAT AS {CSV|PARQUET|JSON}, DELIMITER,
HEADER; COPY FORMAT AS {CSV|PARQUET|JSON}, DELIMITER, IGNOREHEADER, and a
column list. Authorization (IAM_ROLE/CREDENTIALS) is parsed but ignored —
boto3's own credential resolution (or moto) applies.
psycopg2 compatibility
rs_mock.Connection/rs_mock.Cursor quack like psycopg2.extensions.connection
and .cursor, so code written against psycopg2 can be pointed at rs-mock with a
single monkeypatch of your connection factory:
import rs_mock
def make_con():
return rs_mock.Connection() # instead of psycopg2.connect(...)
monkeypatch.setattr("your_module.make_con", make_con)
conn = make_con()
with conn.cursor() as cur:
cur.execute("CREATE TABLE users (id INT, name VARCHAR)")
cur.execute("INSERT INTO users VALUES (1, 'alice'), (2, 'bob')")
cur.execute("SELECT * FROM users ORDER BY id")
cur.fetchall() # [(1, 'alice'), (2, 'bob')]
cur.description # [('id', None, ...), ('name', None, ...)]
conn.commit() # no-op, duckdb auto-commits
conn.close()
mock_psycopg2: a mock_aws-style decorator/context manager
If your code calls psycopg2.connect(...) directly (rather than going through
an injectable factory), use mock_psycopg2 — it patches psycopg2.connect for
the duration of the block, exactly like moto's mock_aws patches boto3:
from rs_mock import mock_psycopg2
@mock_psycopg2()
def test_something():
import psycopg2
conn = psycopg2.connect("host=localhost dbname=whatever") # -> rs_mock.Connection
with conn.cursor() as cur:
cur.execute("SELECT 1")
cur.fetchall() # [(1,)]
conn.close()
# or as a context manager
with mock_psycopg2():
conn = psycopg2.connect(...)
...
Requires psycopg2 (or psycopg2-binary) to be installed. Note this patches
the psycopg2.connect module attribute, so it only affects code that calls
psycopg2.connect(...) (or holds a reference to psycopg2 and calls
.connect) after the patch is applied — the same caveat mock_aws has for
early-bound client references.
Development
make test # run tests
make lint # ruff + pyrefly
make prek # pre-commit hooks
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 rs_mock-0.3.0.tar.gz.
File metadata
- Download URL: rs_mock-0.3.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f4e0da68c4e79be5ff8a02d025c6f2babe179819595faac76573383cd72bbbb
|
|
| MD5 |
bcdb7e7753099f7645fa3acb52bce07d
|
|
| BLAKE2b-256 |
779e6d3accfec48d2ce989abf347aec855c687412c4240ad593da5bb554724f7
|
Provenance
The following attestation bundles were made for rs_mock-0.3.0.tar.gz:
Publisher:
release-please.yml on tylerriccio33/rs-mock
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rs_mock-0.3.0.tar.gz -
Subject digest:
3f4e0da68c4e79be5ff8a02d025c6f2babe179819595faac76573383cd72bbbb - Sigstore transparency entry: 2140003825
- Sigstore integration time:
-
Permalink:
tylerriccio33/rs-mock@15bfeb68b35a4e7dfe30eb41b4b7399ad3e1ff61 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tylerriccio33
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@15bfeb68b35a4e7dfe30eb41b4b7399ad3e1ff61 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rs_mock-0.3.0-py3-none-any.whl.
File metadata
- Download URL: rs_mock-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b580cc69456f98368399cfa8b254659b55b320915d7b8045dc9e1e0ad47ee332
|
|
| MD5 |
36ac73eeb3b95b559f89ca848affc8d6
|
|
| BLAKE2b-256 |
d69932f83a277250f6ee0ce2587d89a1d3db2e5a77188977b43b69f6b313ac64
|
Provenance
The following attestation bundles were made for rs_mock-0.3.0-py3-none-any.whl:
Publisher:
release-please.yml on tylerriccio33/rs-mock
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rs_mock-0.3.0-py3-none-any.whl -
Subject digest:
b580cc69456f98368399cfa8b254659b55b320915d7b8045dc9e1e0ad47ee332 - Sigstore transparency entry: 2140003846
- Sigstore integration time:
-
Permalink:
tylerriccio33/rs-mock@15bfeb68b35a4e7dfe30eb41b4b7399ad3e1ff61 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tylerriccio33
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@15bfeb68b35a4e7dfe30eb41b4b7399ad3e1ff61 -
Trigger Event:
push
-
Statement type: