GenLayer Testing Suite
Project description
GenLayer Testing Suite
About
The GenLayer Testing Suite is a powerful testing framework designed to streamline the development and validation of intelligent contracts within the GenLayer ecosystem. Built on top of pytest and genlayer-py, this suite provides developers with a comprehensive set of tools for deploying, interacting with, and testing intelligent contracts efficiently in a simulated GenLayer environment.
🚀 Quick Start
Installation
pip install genlayer-test
Basic Usage
from gltest import get_contract_factory, get_default_account, create_account
from gltest.assertions import tx_execution_succeeded
factory = get_contract_factory("MyContract")
# Deploy a contract with default account
contract = factory.deploy() # This will be deployed with the default account
assert contract.account == get_default_account()
# Deploy a contract with other account
other_account = create_account()
contract = factory.deploy(account=other_account)
assert contract.account == other_account
# Interact with the contract
result = contract.get_value() # Read method
tx_receipt = contract.set_value(args=["new_value"]) # Write method
assert tx_execution_succeeded(tx_receipt)
📋 Table of Contents
- About
- Quick Start
- Prerequisites
- Installation and Usage
- Key Features
- Examples
- Best Practices
- Troubleshooting
- Contributing
- License
- Support
Prerequisites
Before installing GenLayer Testing Suite, ensure you have the following prerequisites installed:
- Python (>=3.12)
- GenLayer Studio (Docker deployment)
- pip (Python package installer)
Installation and Usage
Installation Options
- Install from PyPI (recommended):
$ pip install genlayer-test
- Install from source:
$ git clone https://github.com/yeagerai/genlayer-testing-suite
$ cd genlayer-testing-suite
$ pip install -e .
Configuration
The GenLayer Testing Suite can be configured using an optional but recommended gltest.config.yaml file in your project root. While not required, this file helps manage network configurations, contract paths, and environment settings in a centralized way, making it easier to maintain different environments and share configurations across team members.
# gltest.config.yaml
networks:
default: localnet # Default network to use
localnet: # Local development network configuration
url: "http://127.0.0.1:4000/api"
testnet_asimov: # Test network configuration
id: 4221
url: "http://34.32.169.58:9151"
accounts:
- "${ACCOUNT_PRIVATE_KEY_1}"
- "${ACCOUNT_PRIVATE_KEY_2}"
- "${ACCOUNT_PRIVATE_KEY_3}"
paths:
contracts: "contracts" # Path to your contracts directory
environment: .env # Path to your environment file containing private keys and other secrets
Key configuration sections:
-
Networks: Define different network environments
default: Specifies which network to use by default- Network configurations can include:
url: The RPC endpoint for the networkid: Chain IDaccounts: List of account private keys (using environment variables)
- Special case for
localnet:- If a network is named
localnet, missing fields will be filled with default values - For all other network names,
id,url, andaccountsare required fields
- If a network is named
-
Paths: Define important directory paths
contracts: Location of your contract files
-
Environment: Path to your
.envfile containing sensitive information like private keys
If you don't provide a config file, the suite will use default values. You can override these settings using command-line arguments. For example:
# Override the default network
gltest --network testnet_asimov
# Override the contracts directory
gltest --contracts-dir custom/contracts/path
Running Tests
- Run all tests:
$ gltest
- Run specific test file:
$ gltest tests/test_mycontract.py
- Run tests with specific markers:
$ gltest -m "integration"
- Run tests with verbose output:
$ gltest -v
- Run tests in specific contracts directories, by default
<path_to_contracts>is set tocontracts/
$ gltest --contracts-dir <path_to_contracts>
- Run tests on a specific network:
# Run tests on localnet (default)
$ gltest --network localnet
# Run tests on testnet
$ gltest --network testnet_asimov
The --network flag allows you to specify which network configuration to use from your gltest.config.yaml. If not specified, it will use the default network defined in your config file.
- Run tests with a custom RPC url
$ gltest --rpc-url <custom_rpc_url>
- Run tests with a default wait interval for waiting transaction receipts
$ gltest --default-wait-interval <default_wait_interval>
- Run tests with a default wait retries for waiting transaction receipts
$ gltest --default-wait-retries <default_wait_retries>
- Run tests with mocked LLM responses (localnet only)
$ gltest --test-with-mocks
The --test-with-mocks flag enables mocking of LLM responses when creating validators. This is particularly useful for:
- Testing without actual LLM API calls
- Ensuring deterministic test results
- Faster test execution
- Testing specific edge cases with controlled responses
When using this flag with the setup_validators fixture, you can provide custom mock responses:
def test_with_mocked_llm(setup_validators):
# Setup validators with a specific mock response
mock_response = {"result": "This is a mocked LLM response"}
setup_validators(mock_response=mock_response)
# Your LLM-based contract will receive the mocked response
contract = factory.deploy()
result = contract.llm_method() # Will use the mocked response
Note: This feature is only available when running tests on localnet.
🚀 Key Features
- Pytest Integration – Extends pytest to support intelligent contract testing, making it familiar and easy to adopt.
- Account & Transaction Management – Create, fund, and track accounts and transactions within the GenLayer Simulator.
- Contract Deployment & Interaction – Deploy contracts, call methods, and monitor events seamlessly.
- CLI Compatibility – Run tests directly from the command line, ensuring smooth integration with the GenLayer CLI.
- State Injection & Consensus Simulation – Modify contract states dynamically and simulate consensus scenarios for advanced testing.
- Prompt Testing & Statistical Analysis – Evaluate and statistically test prompts for AI-driven contract execution.
- Scalability to Security & Audit Tools – Designed to extend into security testing and smart contract auditing.
📚 Examples
Project Structure
Before diving into the examples, let's understand the basic project structure:
genlayer-example/
├── contracts/ # Contract definitions
│ └── storage.py # Example storage contract
└── test/ # Test files
└── test_contract.py # Contract test cases
Storage Contract Example
Let's examine a simple Storage contract that demonstrates basic read and write operations:
# { "Depends": "py-genlayer:test" }
from genlayer import *
# contract class
class Storage(gl.Contract):
# State variable to store data
storage: str
# Constructor - initializes the contract state
def __init__(self, initial_storage: str):
self.storage = initial_storage
# Read method - marked with @gl.public.view decorator
# Returns the current storage value
@gl.public.view
def get_storage(self) -> str:
return self.storage
# Write method - marked with @gl.public.write decorator
# Updates the storage value
@gl.public.write
def update_storage(self, new_storage: str) -> None:
self.storage = new_storage
Key features demonstrated in this contract:
- State variable declaration
- Constructor with initialization
- Read-only method with
@gl.public.viewdecorator - State-modifying method with
@gl.public.writedecorator - Type hints for better code clarity
Contract Deployment
Here's how to deploy the Storage contract:
from gltest import get_contract_factory, get_default_account
def test_deployment():
# Get the contract factory for your contract
# it will search in the contracts directory
factory = get_contract_factory("Storage")
# Deploy the contract with constructor arguments
contract = factory.deploy(
args=["initial_value"], # Constructor arguments
account=get_default_account(), # Account to deploy from
consensus_max_rotations=3, # Optional: max consensus rotations
leader_only=False, # Optional: whether to run only on leader
)
# Contract is now deployed and ready to use
assert contract.address is not None
Read Methods
Reading from the contract is straightforward:
from gltest import get_contract_factory
def test_read_methods():
# Get the contract factory and deploy the contract
factory = get_contract_factory("Storage")
contract = factory.deploy()
# Call a read-only method
result = contract.get_value(args=[])
# Assert the result matches the initial value
assert result == "initial_value"
Write Methods
Writing to the contract requires transaction handling:
from gltest import get_contract_factory
from gltest.assertions import tx_execution_succeeded
def test_write_methods():
# Get the contract factory and deploy the contract
factory = get_contract_factory("Storage")
contract = factory.deploy()
# Call a write method with arguments
tx_receipt = contract.update_storage(
args=["new_value"], # Method arguments
value=0, # Optional: amount of native currency to send
consensus_max_rotations=3, # Optional: max consensus rotations
leader_only=False, # Optional: whether to run only on leader
wait_interval=1, # Optional: seconds between status checks
wait_retries=10, # Optional: max number of retries
)
# Verify the transaction was successful
assert tx_execution_succeeded(tx_receipt)
# Verify the value was updated
assert contract.get_storage() == "new_value"
Assertions
The GenLayer Testing Suite provides powerful assertion functions to validate transaction results and their output:
Basic Transaction Assertions
from gltest.assertions import tx_execution_succeeded, tx_execution_failed
# Basic success/failure checks
assert tx_execution_succeeded(tx_receipt)
assert tx_execution_failed(tx_receipt) # Opposite of tx_execution_succeeded
Advanced Output Matching
You can match specific patterns in the transaction's stdout and stderr output using regex patterns, similar to pytest's match parameter:
# Simple string matching
assert tx_execution_succeeded(tx_receipt, match_std_out="Process completed")
assert tx_execution_failed(tx_receipt, match_std_err="Warning: deprecated")
# Regex pattern matching
assert tx_execution_succeeded(tx_receipt, match_std_out=r".*code \d+")
assert tx_execution_failed(tx_receipt, match_std_err=r"Method.*failed")
Assertion Function Parameters
Both tx_execution_succeeded and tx_execution_failed accept the following parameters:
result: The transaction result object from contract method callsmatch_std_out(optional): String or regex pattern to match in stdoutmatch_std_err(optional): String or regex pattern to match in stderr
Network Compatibility: The stdout/stderr matching feature (match_std_out and match_std_err parameters) is only available when running on studionet and localnet. These features are not supported on testnet.
For more example contracts, check out the contracts directory which contains various sample contracts demonstrating different features and use cases.
Test Fixtures
The GenLayer Testing Suite provides reusable pytest fixtures in gltest.fixtures to simplify common testing operations. These fixtures can be imported and used in your test files to avoid repetitive setup code.
Available Fixtures
The following fixtures are available in gltest.fixtures:
gl_client(session scope) - GenLayer client instance for network operationsdefault_account(session scope) - Default account for testing and deploymentsaccounts(session scope) - List of test accounts for multi-account scenariossetup_validators(function scope) - Function to create test validators for LLM operations
1. gl_client (session scope)
Provides a GenLayer PY client instance that's created once per test session. This is useful for operations that interact directly with the GenLayer network.
def test_client_operations(gl_client):
# Use the client for network operations
tx_hash = "0x1234..."
transaction = gl_client.get_transaction(tx_hash)
2. default_account (session scope)
Provides the default account used to execute transactions when no account is specified.
def test_with_default_account(default_account):
# Use the default account for deployments
factory = get_contract_factory("MyContract")
contract = factory.deploy(account=default_account)
3. accounts (session scope)
Provides a list of account objects loaded from the private keys defined in gltest.config.yaml for the current network, or pre-created test accounts if no config is present
def test_multiple_accounts(accounts):
# Get multiple accounts for testing
sender = accounts[0]
receiver = accounts[1]
# Test transfers or multi-party interactions
contract.transfer(args=[receiver.address, 100], account=sender)
4. setup_validators (function scope)
Creates test validators for localnet environment. This fixture is particularly useful for testing LLM-based contract methods and consensus behavior. It yields a function that allows you to configure validators with custom settings.
def test_with_validators(setup_validators):
# Setup validators with default configuration
setup_validators()
# Or setup with custom mock responses for testing
mock_response = {"result": "mocked LLM response"}
setup_validators(mock_response=mock_response, n_validators=3)
# Now test your LLM-based contract methods
contract = factory.deploy()
result = contract.llm_based_method()
Parameters for setup_validators:
mock_response(dict, optional): Mock validator response when using--test-with-mocksflagn_validators(int, optional): Number of validators to create (default: 5)
Using Fixtures in Your Tests
To use these fixtures, simply import them and include them as parameters in your test functions:
from gltest import get_contract_factory
from gltest.assertions import tx_execution_succeeded
def test_complete_workflow(gl_client, default_account, accounts, setup_validators):
# Setup validators for LLM operations
setup_validators()
# Deploy contract with default account
factory = get_contract_factory("MyContract")
contract = factory.deploy(account=default_account)
# Interact using other accounts
other_account = accounts[1]
tx_receipt = contract.some_method(args=["value"], account=other_account)
assert tx_execution_succeeded(tx_receipt)
Fixtures help maintain clean, DRY test code by:
- Eliminating repetitive setup code
- Ensuring consistent test environments
- Managing resource cleanup automatically
- Providing appropriate scoping for performance
📝 Best Practices
-
Test Organization
- Keep tests in a dedicated
testsdirectory - Use descriptive test names
- Group related tests using pytest markers
- Keep tests in a dedicated
-
Contract Deployment
- Always verify deployment success
- Use appropriate consensus parameters
- Handle deployment errors gracefully
-
Transaction Handling
- Always wait for transaction finalization
- Verify transaction status
- Handle transaction failures appropriately
-
State Management
- Reset state between tests
- Use fixtures for common setup
- Avoid test dependencies
🔧 Troubleshooting
Common Issues
-
Deployment Failures
- Problem: Contract deployment fails due to various reasons like insufficient funds, invalid contract code, or network issues.
- Solution: Implement proper error handling
try: contract = factory.deploy(args=["initial_value"]) except DeploymentError as e: print(f"Deployment failed: {e}")
-
Transaction Timeouts
- Problem: Transactions take too long to complete or fail due to network congestion or consensus delays.
- Solution: Adjust timeout parameters and implement retry logic:
tx_receipt = contract.set_value( args=["new_value"], wait_interval=2, # Increase wait interval between status checks wait_retries=20, # Increase number of retry attempts )
-
Consensus Issues
- Problem: Transactions fail due to consensus-related problems like network partitions or slow consensus.
- Solution: Adjust consensus parameters and try different modes:
# Try with increased consensus parameters contract = factory.deploy( consensus_max_rotations=5, # Increase number of consensus rotations leader_only=True, # Try leader-only mode for faster execution ) # For critical operations, use more conservative settings contract = factory.deploy( consensus_max_rotations=10, # More rotations for better reliability leader_only=False, # Full consensus for better security wait_interval=3, # Longer wait between checks wait_retries=30 # More retries for consensus )
-
Contracts Directory Issues
- Problem:
get_contract_factorycan't find your contract files. - Solution: Ensure proper directory structure and configuration:
# Default structure your_project/ ├── contracts/ # Default contracts directory │ └── my_contract.py # Your contract file └── tests/ └── test_contract.py # Your test file # If using a different directory structure gltest --contracts-dir /path/to/your/contracts
- Problem:
-
Contract File Naming and Structure
- Problem: Contracts aren't being recognized or loaded properly.
- Solution: Follow the correct naming and structure conventions:
# Correct file: contracts/my_contract.py # Correct structure: from genlayer import * class MyContract(gl.Contract): # Contract code here pass # Incorrect structure: class MyContract: # Missing gl.Contract inheritance pass
-
Environment Setup Issues
- Problem: Tests fail due to missing or incorrect environment setup.
- Solution: Verify your environment:
# Check Python version python --version # Should be >= 3.12 # Check GenLayer Studio status docker ps # Should show GenLayer Studio running # Verify package installation pip list | grep genlayer-test # Should show installed version
🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
💬 Support
Project details
Release history Release notifications | RSS feed
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 genlayer_test-0.4.0.tar.gz.
File metadata
- Download URL: genlayer_test-0.4.0.tar.gz
- Upload date:
- Size: 41.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49636d2eb6895f28c2ba393032f05e6c8eabe816f0a063201e2b278b8ce85ee4
|
|
| MD5 |
ad43f274417f220d176e423e4dd6831c
|
|
| BLAKE2b-256 |
d6a219b3b3b6f09479748d6aa3b4d5a38b396874e30b01c098447dd552808cf3
|
File details
Details for the file genlayer_test-0.4.0-py3-none-any.whl.
File metadata
- Download URL: genlayer_test-0.4.0-py3-none-any.whl
- Upload date:
- Size: 58.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7624d708eba9abf8751de68ec5a713b16883bcc2ff784b4eb8d0231abb58c83f
|
|
| MD5 |
35afd3722c46a099bcaa1071118ff166
|
|
| BLAKE2b-256 |
721ba65d998a0c462ea85c3cfcb06819ddf89aa9c72ae5954daf83df1da21b2a
|