summaryrefslogtreecommitdiffstats
path: root/tests/oneof/decode_oneof.c
blob: e94becc74de6f2bb7cf39f563d20a1d6c9f563eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* Decode a message using oneof fields */

#include <stdio.h>
#include <stdlib.h>
#include <pb_decode.h>
#include "oneof.pb.h"
#include "test_helpers.h"
#include "unittests.h"

int main(int argc, char **argv)
{
    uint8_t buffer[OneOfMessage_size];
    OneOfMessage msg = OneOfMessage_init_zero;
    pb_istream_t stream;
    size_t count;
    int option;

    if (argc != 2)
    {
        fprintf(stderr, "Usage: encode_oneof [number]\n");
        return 1;
    }
    option = atoi(argv[1]);

    SET_BINARY_MODE(stdin);
    count = fread(buffer, 1, sizeof(buffer), stdin);

    if (!feof(stdin))
    {
        printf("Message does not fit in buffer\n");
        return 1;
    }

    stream = pb_istream_from_buffer(buffer, count);

    if (!pb_decode(&stream, OneOfMessage_fields, &msg))
    {
        printf("Decoding failed: %s\n", PB_GET_ERROR(&stream));
        return 1;
    }

    {
        int status = 0;

        /* Check that the basic fields work normally */
        TEST(msg.prefix == 123);
        TEST(msg.suffix == 321);

        /* Check that we got the right oneof according to command line */
        if (option == 1)
        {
            TEST(msg.which_values == OneOfMessage_first_tag);
            TEST(msg.values.first == 999);
        }
        else if (option == 2)
        {
            TEST(msg.which_values == OneOfMessage_second_tag);
            TEST(strcmp(msg.values.second, "abcd") == 0);
        }
        else if (option == 3)
        {
            TEST(msg.which_values == OneOfMessage_third_tag);
            TEST(msg.values.third.array[0] == 1);
            TEST(msg.values.third.array[1] == 2);
            TEST(msg.values.third.array[2] == 3);
            TEST(msg.values.third.array[3] == 4);
            TEST(msg.values.third.array[4] == 5);
        }

        return status;
    }
}