Test all functionalities

This commit is contained in:
Manuel Thalmann 2023-10-13 02:29:40 +02:00
parent f293664f80
commit 9d5d03346a

View file

@ -1,2 +1,22 @@
// Query Author Name
0x80 0x00 0x00 0x00 0x00 0x7F;
// Store Data
0x80 0x02 0x00 0x00 0x02 0xFF 0xFE 0x7F;
// Querying Data
0x80 0x04 0x00 0x00 0x00 0x01;
0x80 0x04 0x00 0x00 0x00 0x02;
// Triggering Unsupported Instruction Error
0x80 0x01 0x00 0x00 0x00 0x7F;
// Triggering Unsupported CLA Error
0x90 0x01 0x00 0x00 0x00 0x7F;
// Sending Too Many Bytes (> 20)
0x80 0x02 0x00 0x00 0x15 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 0x14 0x15 0x7F;
// Querying Incorrect Amount of Bytes
0x80 0x02 0x00 0x00 0x02 0xFF 0xFE 0x7F;
0x80 0x04 0x00 0x00 0x00 0x03;