mirror of
https://github.com/google/pebble.git
synced 2025-05-29 06:23:13 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
60
third_party/nanopb/tests/map/decode_map.c
vendored
Normal file
60
third_party/nanopb/tests/map/decode_map.c
vendored
Normal file
|
@ -0,0 +1,60 @@
|
|||
/* Decode a message using map field */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <pb_decode.h>
|
||||
#include "map.pb.h"
|
||||
#include "test_helpers.h"
|
||||
#include "unittests.h"
|
||||
|
||||
/* Helper function to find an entry in the list. Not as efficient as a real
|
||||
* hashmap or similar would be, but suitable for small arrays. */
|
||||
MyMessage_NumbersEntry *find_entry(MyMessage *msg, const char *key)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < msg->numbers_count; i++)
|
||||
{
|
||||
if (strcmp(msg->numbers[i].key, key) == 0)
|
||||
{
|
||||
return &msg->numbers[i];
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
uint8_t buffer[MyMessage_size];
|
||||
size_t count;
|
||||
|
||||
SET_BINARY_MODE(stdin);
|
||||
count = fread(buffer, 1, sizeof(buffer), stdin);
|
||||
|
||||
if (!feof(stdin))
|
||||
{
|
||||
printf("Message does not fit in buffer\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
{
|
||||
int status = 0;
|
||||
MyMessage msg = MyMessage_init_zero;
|
||||
MyMessage_NumbersEntry *e;
|
||||
pb_istream_t stream = pb_istream_from_buffer(buffer, count);
|
||||
|
||||
if (!pb_decode(&stream, MyMessage_fields, &msg))
|
||||
{
|
||||
fprintf(stderr, "Decoding failed\n");
|
||||
return 2;
|
||||
}
|
||||
|
||||
TEST((e = find_entry(&msg, "one")) && e->value == 1);
|
||||
TEST((e = find_entry(&msg, "two")) && e->value == 2);
|
||||
TEST((e = find_entry(&msg, "seven")) && e->value == 7);
|
||||
TEST(!find_entry(&msg, "zero"));
|
||||
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue