Skip to content

cwouyang/uContract.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

74 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

uContract.NET

Design by Contract library for .NET 8+

Based on Java uContract 2.0.1

A modern Design by Contract (DBC) library for .NET. This is a direct port of the Java uContract 2.0.1 library with .NET-specific improvements.

Build and Test NuGet .NET License Status


Status

uContract.NET follows Semantic Versioning; the public API is stable as of 1.0.0. Changes between releases are tracked in CHANGELOG.md. The current version is shown by the NuGet badge above.


Table of Contents


Quick Start

Installation

dotnet add package uContract

Basic Usage

using uContract;

public class BankAccount
{
    private decimal _balance;
    private string _owner;

    public BankAccount(string owner, decimal initialBalance)
    {
        // Preconditions: Validate inputs
        Contract.RequireNotNull("Owner", owner);
        Contract.Require("Initial balance non-negative", () => initialBalance >= 0);

        _owner = owner;
        _balance = initialBalance;
    }

    public void Transfer(decimal amount)
    {
        // Precondition: Valid amount
        Contract.Require("Amount positive", () => amount > 0);

        // Capture old state for postcondition
        var oldBalance = Contract.Old(() => _balance);

        // Business logic
        _balance -= amount;

        // Postcondition: Balance decreased correctly
        Contract.Ensure("Balance decreased", () => _balance == oldBalance - amount);
    }

    private void CheckInvariant()
    {
        // Invariant: Balance never negative
        Contract.Invariant("Balance non-negative", () => _balance >= 0);
    }
}

Features

Core Capabilities

  • βœ… Preconditions: Validate method inputs and caller state
  • βœ… Postconditions: Verify method results and state changes
  • βœ… Invariants: Enforce class-level constraints
  • βœ… Check Assertions: Runtime checks for general conditions
  • βœ… State Capture: Old<T>() for comparing before/after states
  • βœ… Field Comparison: EnsureAssignable<T>() with reflection-based validation

Design Philosophy

  • πŸš€ Zero overhead when disabled: Lazy evaluation via Func<bool> delegates
  • βš™οΈ Runtime configuration: Control contracts via environment variables
  • 🎯 DDD-focused: Designed for domain models and aggregate roots
  • πŸ“¦ Zero external dependencies: Uses only .NET built-in APIs
  • πŸ”’ Thread-safe: AsyncLocal support for async/await
  • πŸ’Ž Strongly typed: Generic constraints ensure type safety

Why Root Contracting?

Traditional Design by Contract tools face a sustainability challenge - most extensions are abandoned or dormant because they require custom compilers/preprocessors that must constantly keep up with language evolution.

Root contracting solves this with a simple utility library approach:

  • βœ… No custom tooling - Uses standard C# features only (no IL weaving, no code generation)
  • βœ… Language-independent design - Same approach can be ported to Java, Go, Python, Rust
  • βœ… Zero dependencies - Only .NET built-in APIs (System.Text.Json, System.Reflection)

Learn more:


API Reference

πŸ“– Complete Documentation: API_REFERENCE.md β€” configuration, exceptions, best practices, and performance

uContract.NET's public API is organized into 4 categories:

Category Methods Purpose
Preconditions Require, RequireNotNull, RequireNotEmpty Validate inputs at method entry
Postconditions Ensure, EnsureNotNull, EnsureResult, EnsureImmutableCollection, EnsureAssignable Verify results and state changes
Invariants Invariant, InvariantNotNull Enforce class-level constraints
Helpers Check, Ignore, Old, Imply, IfAndOnlyIf, FollowsFrom, CheckUnsupportedOperation Runtime assertions and utilities

Configuration

βš™οΈ Detailed Configuration: USAGE_EXAMPLES.md - Configuration Examples

Control contract evaluation at runtime via environment variables.

Environment Variables

Variable Values Default (Debug) Default (Release) Purpose
DBC on/off on off Master switch for all contracts
DBC_PRE on/off on off Preconditions only
DBC_POST on/off on off Postconditions only
DBC_INV on/off on off Invariants only
DBC_CHECK on/off on off Check statements only
DBC_DOC on/off off off Diagnostic output

Quick Setup

Windows (PowerShell):

$env:DBC="on"

Linux/macOS:

export DBC=on

Key Behaviors

  • Debug builds: All contracts enabled by default
  • Release builds: All contracts disabled by default
  • Parameter validation: Always executed (even when DBC is disabled)
  • Zero overhead: Conditions are never evaluated when disabled (lazy evaluation)

Examples

πŸ“š More Examples: USAGE_EXAMPLES.md (15+ real-world scenarios)


Requirements

  • .NET 8.0 or later
  • C# 12 (nullable reference types enabled)
  • No external dependencies (uses only .NET built-in APIs)

Supported Types

  • βœ… All reference types (class, record)
  • βœ… All value types (struct, record struct)
  • βœ… Generic types with appropriate constraints
  • βœ… Collections (IEnumerable, List, Array, ImmutableList, etc.)

Differences from Java Version

uContract.NET maintains semantic parity with the Java version while leveraging modern .NET features.

Syntax Differences

Feature Java C#
Method naming require(), old(), imply() Require(), Old(), Imply()
Lambda syntax () -> condition () => condition
Functional types BooleanSupplier, Supplier<T> Func<bool>, Func<T>
Null checks @NonNull annotation where T : class constraint

.NET Improvements

Feature Java C#
Parameter validation ❌ Not validated βœ… Always validated (even when DBC off)
Exception messages ⚠️ Inconsistent format βœ… Unified format
Async support ❌ ThreadLocal (no async) βœ… AsyncLocal (async/await safe)
Configuration ⚠️ Public static fields βœ… Encapsulated ContractConfiguration class
Nullability ⚠️ Annotations only βœ… Compiler-enforced nullable reference types
Old<T>() overloads ⚠️ Two overloads (Jackson TypeReference<T> needed for generics) βœ… Single Old<T>(Func<T>) β€” reified generics make the type hint unnecessary
Description auto-capture ❌ Annotation mandatory on every call βœ… Condition-based methods (Require/Ensure/Invariant/Check) have [CallerArgumentExpression] overloads β€” compiler captures the condition's source text when description is omitted

Note on description auto-capture: C# 10's [CallerArgumentExpression] lets Contract.Require(() => balance >= 0) work without a manual description β€” the compiler embeds the condition's source text at compile time, so the exception message shows exactly what failed. Available on the four condition-based methods; value-based null-check methods (RequireNotNull, RequireNotEmpty, EnsureNotNull, InvariantNotNull) do not have CAE overloads due to C# overload-resolution collisions with their existing generic signatures. See ADR-0018 for the full rationale and limitations.

Note on Old<T>(): Java's old(Supplier<T>, TypeReference<T>) overload exists to work around type erasure. .NET's reified generics preserve full generic type information at runtime, so JsonSerializer.Deserialize<T>(json) already receives the closed-generic type with no external hint needed. See ADR-0016 for the full rationale.

Migrating from Java

Renames to be aware of when porting Java code that uses uContract:

Java (2.0.1) uContract.NET Notes
reject() Ignore() Renamed for semantic clarity
ClassInvariantViolationException InvariantViolationException Shorter name; same role in the exception hierarchy
old(Supplier<T>, TypeReference<T>) (removed) Use Old<T>(Func<T>) β€” no type hint needed (ADR-0016)

Exception messages differ. Java throws with the raw description text ("x positive"); uContract.NET prefixes the contract type ("Precondition violated: x positive"). If your tests or log parsers assert on exception messages, update them accordingly. The unprefixed description remains available via the exception's Description property.

Environment variables (DBC, DBC_PRE, DBC_POST, DBC_INV, DBC_CHECK) keep the same names and semantics as the Java version.

Example Comparison

Java:

// Java
require("x positive", () -> x > 0);
var oldBalance = old(() -> balance);
ensure("balance decreased", () -> balance < oldBalance);

C#:

// C#
Contract.Require("x positive", () => x > 0);
var oldBalance = Contract.Old(() => balance);
Contract.Ensure("balance decreased", () => balance < oldBalance);

Documentation

User Documentation

  • πŸ“– API_REFERENCE.md - API reference

    • Configuration, exception hierarchy, best practices, performance
    • Per-method signatures and XML docs available via IDE IntelliSense
  • πŸ“š USAGE_EXAMPLES.md - Real-world examples

    • 15+ practical scenarios (banking, e-commerce, inventory, user management)
    • Quick DDD examples with links to complete guide
    • Configuration examples and testing patterns
  • πŸ—οΈ DDD_INTEGRATION_GUIDE.md - DDD integration guide

    • 10+ DDD patterns with best practices
    • Specifications, repositories

Developer Documentation

  • CLAUDE.md - Development guidelines and session context
  • docs/adr/ - Architecture Decision Records

Contributing

Contributions are welcome!

Before contributing:

  1. Read the Architecture Decision Records

License

MIT License β€” Copyright (c) 2025-2026 uContract.NET Contributors. See LICENSE for details.

This project is a derivative work of the Java uContract library by Teddy Chen and contributors, which is licensed under the Apache License 2.0. See THIRD-PARTY-NOTICES.txt for the required attribution and license text.


References

Original Java Version (2.0.1)

This .NET port is based on Java uContract 2.0.1 (GitLab commit: cb1e03f)

Design by Contract Theory


About

A modern Design by Contract (DBC) library for .NET, specifically designed for Domain-Driven Design (DDD) with event-sourced aggregates.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages