Skip to content

Commit

Permalink
fix: openapi validation test for xdai plugin
Browse files Browse the repository at this point in the history
Includes tests for endpoints deployContractV1,
invokeContractV1 and runTransactionV1, each of them
with test cases:
  - Right request
  - Request including an invalid parameter
  - Request without a required parameter

Closes #1288

Relationed with #847

Signed-off-by: Elena Izaguirre <[email protected]>
  • Loading branch information
elenaizaguirre authored and petermetz committed Sep 17, 2021
1 parent 35b20ac commit ba8a784
Show file tree
Hide file tree
Showing 2 changed files with 440 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,19 +315,19 @@
},
"transactionHash": {
"type": "string",
"minLength": 64,
"maxLength": 64,
"pattern": "/^0x([A-Fa-f0-9]{64})$/"
"minLength": 66,
"maxLength": 66,
"pattern": "^0x([A-Fa-f0-9]{64})$"
},
"transactionIndex": {
"type": "number",
"nullable": false
},
"blockHash": {
"type": "string",
"minLength": 64,
"maxLength": 64,
"pattern": "/^0x([A-Fa-f0-9]{64})$/"
"minLength": 66,
"maxLength": 66,
"pattern": "^0x([A-Fa-f0-9]{64})$"
},
"blockNumber": {
"type": "number",
Expand Down
Loading

0 comments on commit ba8a784

Please sign in to comment.