Cover branches in Tool.php and fix validation logic #41
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit addresses code coverage gaps in
src/Tool/Tool.phpfor the following areas:initializeMetadata: I added tests fordestructiveHint,idempotentHint, andopenWorldHintannotations.initialize/shutdown: I added tests to verify these lifecycle methods are callable and log their execution.validateArguments/validateType: I added tests for 'integer', 'object', and 'any' parameter types.During the process of adding tests for
validateArguments, I identified and fixed the following bugs insrc/Tool/Tool.php:validateArguments: I changed!isset(\$arguments[\$name])to!array_key_exists(\$name, \$arguments)to correctly handle required arguments that are present with anullvalue.validateArguments: I changedif (isset(\$arguments[\$name]))toif (array_key_exists(\$name, \$arguments))to ensure type validation occurs even fornullvalues if the argument key is present.validateType: I added an explicit check to allownullfor the 'any' type and to disallownullby default for other basic types.All new and existing tests pass, and linters are clean for the
srcdirectory. PHPStan errors remain in a test fixture but do not impact the production code.