Implement Parameter DSL with 12 parameter types #292
Labels
No labels
Blocked
Duplicate
MoSCoW/Could Have
MoSCoW/Must Have
MoSCoW/Should Have
Points/1
Points/13
Points/2
Points/21
Points/3
Points/5
Points/8
Priority/Backlog
Priority/Critical
Priority/High
Priority/Low
Priority/Medium
State/Completed
State/In progress
State/In review
State/Paused
State/Unverified
State/Verified
State/Wont Do
Type/Bug
Type/Epic
Type/Feature
Type/Legendary
Type/Task
Type/Testing
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
#291 Epic: Input Validation Framework
aethyr/Aethyr
Reference: aethyr/Aethyr#292
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Metadata
feature/m1-param-dslfeat: implement Parameter DSL with 12 parameter typesBackground and Context
Command handlers currently parse raw input strings manually, with each handler implementing its own ad-hoc parsing. This leads to inconsistent behavior and duplicated code. A declarative Parameter DSL will allow handlers to specify their expected parameters in a clean, readable format, enabling the validation pipeline to handle parsing and type-checking automatically.
The DSL must support 12 parameter types covering all common input patterns in a MUD:
:string,:integer,:float,:direction,:object,:player,:mobile,:room,:area,:item,:boolean,:enum.Expected Behavior
Command handlers declare parameters using a class-level DSL. Example usage:
Each parameter declaration supports options:
type,required(default false),default,in(scope for resolution),values(for:enumtype), anddescription.Acceptance Criteria
paramclass method is available on all command handler classes.:string,:integer,:float,:direction,:object,:player,:mobile,:room,:area,:item,:boolean,:enum.type,required,default,in,values,description..declared_params.Subtasks
Code
ParameterDSLmodule withparamclass method.ParamDefinitionvalue object storing name, type, options..declared_paramsclass method returning ordered list ofParamDefinition.Quality
tests/unit/parameter_dsl.featurecovering declaring parameters with all 12 types, inheritance, invalid DSL usage, default values, required vs optional.tests/integration/for parameter DSL declarations on command handlers.bundle exec rake unit_profileand verify no performance regressions.bundle exec rake unit. If coverage is <97% then review the current unit test coverage report atbuild/tests/unit/coverage/and use it to write new Cucumber based unit tests to improve coverage. Specifically, write Cucumber/Gherkin style unit tests that are descriptively named and specifically improve coverage on whichever file has the most uncovered lines by writing tests that will target the uncovered lines in the report. Once that is done rerunbundle exec rake unitto verify all tests pass and coverage is above >=97%. Only mark this as complete once coverage is >=97%, if not repeat this task as many times as is needed until coverage reaches >=97%.bundle exec rake(default task: unit tests with coverage) andbundle exec rake integration, fix any errors if needed ensuring both pass across entire code base, do not ignore any failure even if it seems unrelated to this commit, fix it.Definition of Done
This issue is complete when:
master, reviewed, and merged before this issue is marked done.Implementation Notes
Files Created
lib/aethyr/core/input_handlers/validation/type_registry.rb- TypeRegistry module containing all 12 parameter types with metadata (name, description, category)lib/aethyr/core/input_handlers/validation/param_definition.rb- ParamDefinition value object storing parameter name, type, required flag, default value, scope, enum values, and descriptionlib/aethyr/core/input_handlers/validation/parameter_dsl.rb- ParameterDSL module providing theparamclass method anddeclared_paramsaccessor with inheritance supportKey Design Decisions
UnknownTypeErrorimmediately whenparamis calledDuplicateParameterErroris raised if the same parameter name is declared twice (including inherited names)declared_paramsreturns parent parameters first, then own parameters, maintaining declaration order**optionspattern: Used to reduce parameter count and satisfy rubocop while maintaining the same public APITest Coverage