rlp tests, the beginning

This commit is contained in:
debris
2015-12-03 05:44:35 +01:00
parent 84cc7715b4
commit 05f7e85d30
7 changed files with 126 additions and 28 deletions

View File

@@ -0,0 +1,39 @@
# Rlp tests guideline
Rlp can be tested in various ways. It can encode/decode a value or an array of values. Let's start with encoding.
Each operation must have field:
- `operation` - `append`, `append_list`, `append_empty` or `append_raw`
Additionally `append` and `append_raw` must additionally define a `value` field:
- `value` - data
Also `append_raw` and `append_list` requires `len` field
- `len` - integer
### Encoding Test Example
```json
{
"input":
[
{
"operation": "append_list",
"len": 2
},
{
"operation": "append",
"value": "cat"
},
{
"operation": "append",
"value": "dog"
}
]
"output": "0xc88363617183646f67"
}
```

View File

@@ -0,0 +1,18 @@
{
"input":
[
{
"operation": "append_list",
"len": 2
},
{
"operation": "append",
"value": "cat"
},
{
"operation": "append",
"value": "dog"
}
]
"output": "0xc88363617183646f67"
}