Skip to main content

Lightweight runtime contracts for Invar projects

Project description

invar-runtime

Lightweight runtime contracts for Python projects using Invar.

Installation

pip install invar-runtime

Usage

from invar_runtime import pre, post, Contract, NonEmpty, Positive

# Use built-in contracts
@pre(NonEmpty)
def first(xs: list) -> int:
    return xs[0]

# Create custom contracts
Even = Contract(lambda x: x % 2 == 0, "even")

@pre(Positive & Even)
def half(n: int) -> int:
    return n // 2

# Compose contracts
@post(NonEmpty)
def get_items() -> list:
    return [1, 2, 3]

Available Contracts

Collections

  • NonEmpty - Collection has at least one element
  • Sorted - Elements are in sorted order
  • Unique - No duplicate elements
  • SortedNonEmpty - Both sorted and non-empty

Numbers

  • Positive - Greater than zero
  • NonNegative - Greater than or equal to zero
  • Negative - Less than zero
  • InRange(lo, hi) - Value in [lo, hi]
  • Percentage - Value in [0, 100]

Strings

  • NonBlank - Non-empty and not just whitespace

List Elements

  • AllPositive - All elements > 0
  • AllNonNegative - All elements >= 0
  • NoNone - No None values

Decorators

  • @must_use(reason) - Mark return value as must-use
  • @must_close - Mark class as requiring explicit cleanup
  • @strategy(**params) - Specify Hypothesis strategies
  • @skip_property_test(reason) - Skip property-based testing (reason required)

Skip Property Test Usage

The @skip_property_test decorator requires a reason explaining why the function cannot be property-tested. Guard warns if used without justification.

# ✅ Good - with reason
@skip_property_test("no_params: Zero-parameter function, no inputs to vary")
def get_version() -> str:
    return "1.0.0"

# ❌ Bad - Guard warns about missing reason
@skip_property_test
def my_func(): ...

Valid reason categories:

  • no_params: - Function has no parameters to test
  • strategy_factory: - Returns Hypothesis strategy, not testable data
  • external_io: - Requires database/network/filesystem
  • non_deterministic: - Output depends on time/random state

Loop Invariants

from invar_runtime import invariant

while lo < hi:
    invariant(0 <= lo <= hi <= len(arr), "bounds check")
    mid = (lo + hi) // 2
    ...

Development Tools

For static analysis and verification tools, install invar-tools:

pip install invar-tools
# or use without installing:
uvx invar-tools guard

License

Apache-2.0

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

invar_runtime-1.2.0.tar.gz (12.4 kB view details)

Uploaded Source

Built Distribution

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

invar_runtime-1.2.0-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file invar_runtime-1.2.0.tar.gz.

File metadata

  • Download URL: invar_runtime-1.2.0.tar.gz
  • Upload date:
  • Size: 12.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for invar_runtime-1.2.0.tar.gz
Algorithm Hash digest
SHA256 b48906c78392f17fe29d6e7eaf9bf1e3bd3348d5c56af996154e48ba137730fe
MD5 0068b8b6851171d9b90f2709fd4e4003
BLAKE2b-256 a72a08529a4a8d2320e80ad747cfe2de337fdfa14b8b9ce90404e7ae6f7b048f

See more details on using hashes here.

Provenance

The following attestation bundles were made for invar_runtime-1.2.0.tar.gz:

Publisher: publish.yml on Tefx/Invar

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

File details

Details for the file invar_runtime-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: invar_runtime-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for invar_runtime-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 13240e9dc6151467cb70e8eaaceba98d259e1ed615ac796d1c0f61550090d515
MD5 0feb0db030177d461fc6848cfbed9b09
BLAKE2b-256 89b748f6f8a01e1304cb41548eb320649a2cb6c10927a4224f4088fc252a40cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for invar_runtime-1.2.0-py3-none-any.whl:

Publisher: publish.yml on Tefx/Invar

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