29 lines
629 B
C
29 lines
629 B
C
|
#include <assert.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "device_msg.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
static void test_deserialize_clipboard(void) {
|
||
|
const unsigned char input[] = {
|
||
|
DEVICE_MSG_TYPE_CLIPBOARD,
|
||
|
0x00, 0x03, // text length
|
||
|
0x41, 0x42, 0x43, // "ABC"
|
||
|
};
|
||
|
|
||
|
struct device_msg msg;
|
||
|
ssize_t r = device_msg_deserialize(input, sizeof(input), &msg);
|
||
|
assert(r == 6);
|
||
|
|
||
|
assert(msg.type == DEVICE_MSG_TYPE_CLIPBOARD);
|
||
|
assert(msg.clipboard.text);
|
||
|
assert(!strcmp("ABC", msg.clipboard.text));
|
||
|
|
||
|
device_msg_destroy(&msg);
|
||
|
}
|
||
|
|
||
|
int main(void) {
|
||
|
test_deserialize_clipboard();
|
||
|
return 0;
|
||
|
}
|