Live Site: https://request.makeboldspark.com
A comprehensive .NET 10 solution for running REST API tests, performance benchmarking, and regression testing using Postman collections.
RequestSpark is a .NET 10 web application and console tool for running REST API tests, performance benchmarking, and regression testing against Postman collections. It provides a browser-based dashboard for managing API configurations, executing test runs, and reviewing results — with built-in support for load testing, OpenAPI specs, and CSV exports.
The live instance is hosted at https://request.makeboldspark.com.
Built by Mark Hazleton — Mark Hazleton, Solutions Architect RequestSpark is part of the Make Bold Spark portfolio of technical demonstrations.
Latest Update (v10.0.0): Upgraded to .NET 10.0 (LTS) with 19% faster builds, 25% faster tests, and comprehensive package optimization!
- Postman Collection Integration: Import and execute existing Postman collections
- Automated Regression Testing: Run comprehensive API test suites automatically
- Performance Analysis: Compare response times across multiple API instances
- Load Testing: Stress test your REST APIs with configurable parameters
- Detailed Reporting: Export results to CSV with comprehensive statistics
- Web Interface: Razor Pages web application for interactive testing
- Sample CRUD API: Built-in sample API for testing and demonstration
- Comprehensive Statistics: Response time percentiles, success rates, and performance metrics
- High Performance: 19% faster builds, 25% faster test execution
- Secure: 93% packages at latest versions, zero vulnerabilities
- Features
- Prerequisites
- Installation
- Quick Start
- Performance
- Changelog
- Migration Guide
- Contributing
- Documentation
- .NET 10.0 SDK or later (LTS)
- Windows, macOS, or Linux
- Visual Studio 2022 17.12+ or VS Code (recommended)
RequestSpark uses .NET 10.0 (LTS) for:
- Long-term support: 3 years of support (until November 2028)
- Performance: Significant improvements in build and test performance
- Security: Latest security patches and updates
- Compatibility: Modern API features and optimizations
git clone https://github.com/markhazleton/RequestSpark.git
cd RequestSparkdotnet build
# Expected output: Project RequestSpark.sln has been successfully built.# Run all tests
dotnet test
# Run specific test project
dotnet test RequestSpark.Domain.Tests
# Expected output: 21/21 tests passing (100%)
# Test execution time: ~0.6s (25% faster than .NET 9)-
Prepare your Postman collection: Place your
collection.jsonfile in theRequestSparkproject directory -
Run the console application:
cd RequestSpark dotnet run -
View results: Check the generated CSV file at
c:\test\RequestSpark.csv
-
Start the web server:
cd RequestSpark.Web dotnet run
RequestSpark v10.0.0 delivers significant performance improvements:
- Build Time: 19% faster (5.1s -> 4.1s)
- Test Execution: 25% faster (0.8s -> 0.6s)
- Package Optimization: 11.8% fewer dependencies
- Latest Versions: 93% packages at latest stable versions
- Security: Zero vulnerabilities
- Framework-Included: Optimized package references for .NET 10
- Test Pass Rate: 100% (21/21 tests)
- Build Errors: 0
- Code Quality: MSTest v4 analyzers enabled for continuous improvement
For detailed upgrade information, see Upgrade Documentation.
Major Changes:
- Upgraded all projects to .NET 10.0 (LTS)
- Build performance improved by 19% (5.1s -> 4.1s)
- Test performance improved by 25% (0.8s -> 0.6s)
- Package optimization: 17 -> 15 packages (93% at latest)
- Removed framework-included packages (System.Text.Json, System.Security.Cryptography.Xml)
- Updated WebSpark packages to latest (Bootswatch 1.34.0, HttpClientUtility 2.1.2)
- MSTest v4 with code quality analyzers
- Comprehensive upgrade documentation
Quality Improvements:
- All 21 tests passing (100%)
- Zero build errors
- NU1510 warnings eliminated
- MSTest v4 code quality analyzers enabled
Documentation:
- Added comprehensive upgrade documentation in
.github/upgrades/ - Created GitHub issues for future improvements (#2, #3)
See CHANGELOG.md for complete version history.
The product identity is now fully standardized as RequestSpark across active source, runtime surfaces, and current documentation.
| Surface | Current Identifier |
|---|---|
| Solution | RequestSpark.sln |
| Console project | RequestSpark |
| Domain project | RequestSpark.Domain |
| Import project | RequestSpark.PostmanImport |
| Web project | RequestSpark.Web |
| Domain test project | RequestSpark.Domain.Tests |
| Web test project | RequestSpark.Web.Tests |
| Namespace root | RequestSpark.* |
| Exception family | RequestSparkException* |
| Console CSV output | RequestSpark.csv |
The lingering-brand audit is clean for active runtime code and project metadata. Remaining former-name references are intentional historical records:
.github/upgrades/assessment.md(generated anchor IDs and graph labels preserved for report integrity).github/upgrades/assessment.csvand.github/upgrades/assessment.json(source analyzer output snapshots).github/security/DEPENDABOT-ANALYSIS.mdand.github/security/VULNERABILITIES-RESOLVED.md(historical security incident documentation).documentation/**historical/specification/audit artifacts (including quickfix and planning records retained for traceability)
- Ensure the GitHub repository name is
RequestSpark. - Confirm badges and links resolve under the new repository path.
- Update any remaining GitHub URLs in active
.github/docs to the renamed repository. - Re-run the lingering-brand audit and keep only explicitly historical exceptions.
Repository engineering rules are defined in .documentation/memory/constitution.md.
Until CI is added, contributors are expected to run dotnet build and dotnet test
locally before merging changes. Run npm run build when editing
RequestSpark.Web asset-pipeline inputs.
Executable code paths must not introduce hardcoded secrets or deployable
credential defaults; use configuration-backed values or clearly non-secret
placeholders instead.
When reporting issues, please include:
- .NET 10 SDK version (
dotnet --version) - Operating system
- Steps to reproduce
- Expected vs actual behavior
- Sample Postman collection (if applicable)
- Engineering Constitution: See .documentation/memory/constitution.md
- Upgrade Guide: See .github/upgrades/upgrade-complete-summary.md
- Assessment Report: .github/upgrades/assessment.md
- Migration Plan: .github/upgrades/plan.md
- Package Optimization: .github/upgrades/package-review-report.md