Files
aitbc/tests/verification/README.md
oib d9481f2b92 refactor: merge scripts/test/ into tests/verification/
Move 21 standalone verification scripts from scripts/test/ to
tests/verification/. These are run-manually scripts that hit live
services (not pytest suites). Consolidates all test-related files
under tests/ with clear separation:
- tests/cli/, tests/unit/, tests/integration/, etc. = pytest suites
- tests/verification/ = standalone verification scripts
2026-02-13 23:29:48 +01:00

1.1 KiB

Testing Scripts

This directory contains various test scripts and utilities for testing the AITBC platform.

Test Scripts

Block Import Tests

  • test_block_import.py - Main block import endpoint test
  • test_block_import_complete.py - Comprehensive block import test suite
  • test_simple_import.py - Simple block import test
  • test_tx_import.py - Transaction import test
  • test_tx_model.py - Transaction model validation test
  • test_minimal.py - Minimal test case
  • test_model_validation.py - Model validation test

Payment Tests

  • test_payment_integration.py - Payment integration test suite
  • test_payment_local.py - Local payment testing

Test Runners

  • run_test_suite.py - Main test suite runner
  • run_tests.py - Simple test runner
  • verify_windsurf_tests.py - Verify Windsurf test configuration
  • register_test_clients.py - Register test clients for testing

Usage

Most test scripts can be run directly with Python:

python3 test_block_import.py

Some scripts may require specific environment setup or configuration.