diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-08 17:52:03 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-08 17:52:03 +0300 |
commit | 262c62676cf740ec3ce14a22bde47b7968fec8f0 (patch) | |
tree | 01cb3a8cc56ea58c536c9fe1d9ca3a46e96db46e /tests/extensions/encode_extensions.c | |
parent | d7f3a74388b4825d2c980c53d0a740ddfd0e4770 (diff) |
Start moving the tests into subfolders. Transition to SCons for build system for the tests.
Only a few tests updated so far. Have to include all the rest before merging to mainline.
Update issue 63
Status: Started
Diffstat (limited to 'tests/extensions/encode_extensions.c')
-rw-r--r-- | tests/extensions/encode_extensions.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/extensions/encode_extensions.c b/tests/extensions/encode_extensions.c new file mode 100644 index 00000000..8857f148 --- /dev/null +++ b/tests/extensions/encode_extensions.c @@ -0,0 +1,38 @@ +/* Tests extension fields. + */ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <pb_encode.h> +#include "alltypes.pb.h" +#include "extensions.pb.h" + +int main(int argc, char **argv) +{ + AllTypes alltypes = {}; + + int32_t extensionfield1 = 12345; + pb_extension_t ext1 = {&AllTypes_extensionfield1, &extensionfield1, NULL}; + alltypes.extensions = &ext1; + + ExtensionMessage extensionfield2 = {"test", 54321}; + pb_extension_t ext2 = {&ExtensionMessage_AllTypes_extensionfield2, &extensionfield2, NULL}; + ext1.next = &ext2; + + uint8_t buffer[1024]; + pb_ostream_t stream = pb_ostream_from_buffer(buffer, sizeof(buffer)); + + /* Now encode it and check if we succeeded. */ + if (pb_encode(&stream, AllTypes_fields, &alltypes)) + { + fwrite(buffer, 1, stream.bytes_written, stdout); + return 0; /* Success */ + } + else + { + fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); + return 1; /* Failure */ + } +} + |