Skip to main content

Executable specifications, mocks, and lightweight tests next to your Python code

Project description

niltest

Executable specifications, fixed development mocks, and lightweight checks—next to the Python function they describe.

日本語 · Documentation · GitHub · Issues

niltest lets one expect.case() definition serve three purposes:

  • readable behavior close to the implementation;
  • a fixed mock when databases or external APIs are unavailable;
  • an executable check against the real function.

It has no runtime dependencies and supports Python 3.10+ on Windows, macOS, and Linux.

Install

# Active virtual environment (Windows, macOS, or Linux)
pip install niltest

# Windows
python -m pip install niltest

# Ubuntu / macOS
python3 -m pip install niltest

A complete example

import niltest
from niltest import expect, scenario


@scenario("Shipping fee")
def shipping_fee(subtotal: int, premium: bool = False) -> int:
    if expect:
        expect.case(
            "Premium members ship free",
            given={"subtotal": 1_000, "premium": True},
            returns=0,
        )
        expect.case(
            "Standard shipping",
            given={"subtotal": 1_000, "premium": False},
            returns=500,
        )

    return 0 if premium or subtotal >= 5_000 else 500


niltest.configure(mode="MOCK")
assert shipping_fee(1_000, premium=True) == 0

niltest.configure(mode="TEST")
result = niltest.run_tests(shipping_fee)
assert result.success

CLI and CI

niltest run your_package.specs --language en
niltest run your_package.specs --json

The CLI exits with 0 when all cases pass, 1 for specification failures, and 2 for usage or import errors. JSON output and the structured RunResult API make niltest easy to compose with CI and other developer tools.

Expectations

returns supports:

  • plain values and collections;
  • dataclass instances;
  • Pydantic models;
  • type-only checks such as returns=UserData;
  • custom validators such as returns=lambda result: result["count"] > 0;
  • synchronous and asynchronous functions.

Production path

Set PRODUCTION=true before importing decorated modules. In this mode, @scenario returns the original function without creating a wrapper. The explicit if expect: truth check remains; niltest documents this measurable cost instead of claiming absolute zero overhead.

For zero niltest cost at function-call time, use the declaration-style API. The existing inline API remains fully supported.

from niltest import case, docs, scenario

@scenario("Shipping fee")
@docs(case("Premium", given={"premium": True}, returns=0))
def shipping_fee(premium: bool) -> int:
    return 0 if premium else 500

With PRODUCTION=true, this returns the original function: no wrapper and no if expect: branch in its body.

Localization

Japanese and English are built in. niltest detects the OS locale, falls back to English, and exposes register_locale() plus a validated template for additional languages.

Verifying release provenance

Official wheel and source distributions are published through PyPI Trusted Publishing and carry Sigstore digital attestations. GitHub Releases contain the same files with GitHub build-provenance attestations tied to the source commit and CI workflow. An isolated, trusted SLSA generator also produces non-forgeable SLSA Build Level 3 provenance for every distribution.

After downloading a release asset, verify its origin with the GitHub CLI:

gh attestation verify niltest-*.whl --repo disnana/niltest
gh attestation verify niltest-*.tar.gz --repo disnana/niltest

For strict SLSA verification, download the matching .intoto.jsonl file from the GitHub Release and use slsa-verifier:

slsa-verifier verify-artifact niltest-*.whl \
  --provenance-path multiple.intoto.jsonl \
  --source-uri github.com/disnana/niltest \
  --source-branch main

Verification confirms provenance; it does not replace reviewing the package or its dependencies for your use case.

日本語

niltestは、Python関数の先頭に代表的な入力と期待値を書くことで、同じ定義を「読める仕様」「開発用モック」「実装チェック」に再利用する軽量ライブラリです。

python -m pip install niltest
niltest run your_package.specs --language ja

日本語の詳しい使い方、モック・非同期関数・バリデータ・本番モード・応用例は公式ドキュメントで確認できます。

MIT © 2026 Disnana

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

niltest-1.0.0.tar.gz (27.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

niltest-1.0.0-py3-none-any.whl (25.3 kB view details)

Uploaded Python 3

File details

Details for the file niltest-1.0.0.tar.gz.

File metadata

  • Download URL: niltest-1.0.0.tar.gz
  • Upload date:
  • Size: 27.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for niltest-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8885f3d59eeab0bf64b2107fdb7ea04e8b2e9284864f428aa08b77cf80915350
MD5 347dc7aae6eded005252936a44eaf122
BLAKE2b-256 875111fc83ba9b185ae240533915567397fe092066a93fbca142c8ea424a605a

See more details on using hashes here.

Provenance

The following attestation bundles were made for niltest-1.0.0.tar.gz:

Publisher: ci.yml on disnana/niltest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file niltest-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: niltest-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for niltest-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 04a55334b106285c10ce2efbf1e206e7ffb80327262c85c47ab1972863f3772a
MD5 110de4eb0b399980ac1b4411c964fe11
BLAKE2b-256 2dbd135bc566fe9b760b2085921e4739c64a707a44c7b253ad9438b37808aa78

See more details on using hashes here.

Provenance

The following attestation bundles were made for niltest-1.0.0-py3-none-any.whl:

Publisher: ci.yml on disnana/niltest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page