mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Introduced `edge-cases.params.json` to define parameter sets for various edge case scenarios including null handling, boundary values, empty collections, special characters, numeric overflow, concurrent access, and malformed data. - Created `edge-cases.test.json` to implement parameterized tests for the defined edge cases, ensuring robust validation of edge case handling in the application. - Added `test-parameters_schema.json` to establish a schema for defining parameterized test input parameters, enhancing validation and structure. - Developed `tests_schema.json` to define the structure for parameterized unit tests, including setup, teardown, and test case definitions.
MetaBuilder Schemas
This directory contains schema files used across the MetaBuilder project for validation and IDE support.
Schema Files
YAML Schemas
yaml-schema.yaml - YAML meta-schema (Draft 2025-11)
- Source: https://github.com/johndoe6345789/yaml-schema
- Purpose: Validates YAML file structure and syntax
- Used by: All
.yamlfiles in the project
Usage in YAML files:
# yaml-language-server: $schema=../../../../../schemas/yaml-schema.yaml
Files using this schema:
packages/*/seed/schema/entities.yaml- Database entity definitions- Other YAML configuration files
JSON Schemas
JSON Schema files are located within individual packages:
packages/json_script_example/seed/script.schema.json- JSON script validationpackages/json_script_example/seed/types.schema.json- Type definitionspackages/json_script_example/seed/schema/entities.schema.json- Entity structure validationpackages/json_script_example/tests/test.schema.json- Test logic validationpackages/json_script_example/tests/test-parameters.schema.json- Test parameters validation
Adding New Schemas
For YAML Files
- Place the schema in this
schemas/directory - Add documentation in this README
- Reference the schema in YAML files using the
yaml-language-serverdirective
For JSON Files
- Place the schema alongside the files it validates (in the package directory)
- Add a
$schemaproperty to JSON files pointing to the schema - Document the schema in the package README
IDE Support
VS Code
Install the YAML extension by Red Hat for YAML schema validation:
- Extension ID:
redhat.vscode-yaml - Provides autocomplete, validation, and hover documentation
JSON schema support is built-in to VS Code.
JetBrains IDEs
YAML and JSON schema validation is built-in to WebStorm, IntelliJ IDEA, and other JetBrains IDEs.
Schema Validation Benefits
- ✅ Real-time validation - Catch errors while editing
- ✅ IDE autocomplete - IntelliSense for properties and values
- ✅ Documentation - Hover tooltips explain each field
- ✅ Type safety - Ensure files match their specifications
- ✅ Consistency - Enforce structure across all files