mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
Passes w/ gcc 11 on Fedora x64. Protip: So you don;t have to suffer, ``` perl -pe 's/(-?(?:0x)?[A-Fa-f0-9]+)([Uu])?[Ll][Ll]/\U$2INT64_C(\E$1)/mg' ```
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
#include "clar_libgit2.h"
|
|
#include "varint.h"
|
|
|
|
void test_core_encoding__decode(void)
|
|
{
|
|
const unsigned char *buf = (unsigned char *)"AB";
|
|
size_t size;
|
|
|
|
cl_assert(git_decode_varint(buf, &size) == 65);
|
|
cl_assert(size == 1);
|
|
|
|
buf = (unsigned char *)"\xfe\xdc\xbaXY";
|
|
cl_assert(git_decode_varint(buf, &size) == 267869656);
|
|
cl_assert(size == 4);
|
|
|
|
buf = (unsigned char *)"\xaa\xaa\xfe\xdc\xbaXY";
|
|
cl_assert(git_decode_varint(buf, &size) == UINT64_C(1489279344088));
|
|
cl_assert(size == 6);
|
|
|
|
buf = (unsigned char *)"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xfe\xdc\xbaXY";
|
|
cl_assert(git_decode_varint(buf, &size) == 0);
|
|
cl_assert(size == 0);
|
|
|
|
}
|
|
|
|
void test_core_encoding__encode(void)
|
|
{
|
|
unsigned char buf[100];
|
|
cl_assert(git_encode_varint(buf, 100, 65) == 1);
|
|
cl_assert(buf[0] == 'A');
|
|
|
|
cl_assert(git_encode_varint(buf, 1, 1) == 1);
|
|
cl_assert(!memcmp(buf, "\x01", 1));
|
|
|
|
cl_assert(git_encode_varint(buf, 100, 267869656) == 4);
|
|
cl_assert(!memcmp(buf, "\xfe\xdc\xbaX", 4));
|
|
|
|
cl_assert(git_encode_varint(buf, 100, UINT64_C(1489279344088)) == 6);
|
|
cl_assert(!memcmp(buf, "\xaa\xaa\xfe\xdc\xbaX", 6));
|
|
|
|
cl_assert(git_encode_varint(buf, 1, UINT64_C(1489279344088)) == -1);
|
|
}
|