Blame tests/odb/loose_data.h

Packit Service 20376f
typedef struct object_data {
Packit Service 20376f
    unsigned char *bytes;  /* (compressed) bytes stored in object store */
Packit Service 20376f
    size_t        blen;    /* length of data in object store            */
Packit Service 20376f
    char          *id;     /* object id (sha1)                          */
Packit Service 20376f
    char          *type;   /* object type                               */
Packit Service 20376f
    char          *dir;    /* object store (fan-out) directory name     */
Packit Service 20376f
    char          *file;   /* object store filename                     */
Packit Service 20376f
    unsigned char *data;   /* (uncompressed) object data                */
Packit Service 20376f
    size_t        dlen;    /* length of (uncompressed) object data      */
Packit Service 20376f
} object_data;
Packit Service 20376f
Packit Service 20376f
/* one == 8b137891791fe96927ad78e64b0aad7bded08bdc */
Packit Service 20376f
static unsigned char one_bytes[] = {
Packit Service 20376f
    0x31, 0x78, 0x9c, 0xe3, 0x02, 0x00, 0x00, 0x0b,
Packit Service 20376f
    0x00, 0x0b,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char one_data[] = {
Packit Service 20376f
    0x0a,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data one = {
Packit Service 20376f
    one_bytes,
Packit Service 20376f
    sizeof(one_bytes),
Packit Service 20376f
    "8b137891791fe96927ad78e64b0aad7bded08bdc",
Packit Service 20376f
    "blob",
Packit Service 20376f
    "test-objects/8b",
Packit Service 20376f
    "test-objects/8b/137891791fe96927ad78e64b0aad7bded08bdc",
Packit Service 20376f
    one_data,
Packit Service 20376f
    sizeof(one_data),
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
/* commit == 3d7f8a6af076c8c3f20071a8935cdbe8228594d1 */
Packit Service 20376f
static unsigned char commit_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x85, 0x50, 0xc1, 0x6a, 0xc3, 0x30,
Packit Service 20376f
    0x0c, 0xdd, 0xd9, 0x5f, 0xa1, 0xfb, 0x96, 0x12,
Packit Service 20376f
    0xbb, 0x29, 0x71, 0x46, 0x19, 0x2b, 0x3d, 0x97,
Packit Service 20376f
    0x1d, 0xd6, 0x7d, 0x80, 0x1d, 0xcb, 0x89, 0x21,
Packit Service 20376f
    0xb6, 0x82, 0xed, 0x40, 0xf3, 0xf7, 0xf3, 0x48,
Packit Service 20376f
    0x29, 0x3b, 0x6d, 0xd2, 0xe5, 0xbd, 0x27, 0xbd,
Packit Service 20376f
    0x27, 0x50, 0x4f, 0xde, 0xbb, 0x0c, 0xfb, 0x43,
Packit Service 20376f
    0xf3, 0x94, 0x23, 0x22, 0x18, 0x6b, 0x85, 0x51,
Packit Service 20376f
    0x5d, 0xad, 0xc5, 0xa1, 0x41, 0xae, 0x51, 0x4b,
Packit Service 20376f
    0xd9, 0x19, 0x6e, 0x4b, 0x0b, 0x29, 0x35, 0x72,
Packit Service 20376f
    0x59, 0xef, 0x5b, 0x29, 0x8c, 0x65, 0x6a, 0xc9,
Packit Service 20376f
    0x23, 0x45, 0x38, 0xc1, 0x17, 0x5c, 0x7f, 0xc0,
Packit Service 20376f
    0x71, 0x13, 0xde, 0xf1, 0xa6, 0xfc, 0x3c, 0xe1,
Packit Service 20376f
    0xae, 0x27, 0xff, 0x06, 0x5c, 0x88, 0x56, 0xf2,
Packit Service 20376f
    0x46, 0x74, 0x2d, 0x3c, 0xd7, 0xa5, 0x58, 0x51,
Packit Service 20376f
    0xcb, 0xb9, 0x8c, 0x11, 0xce, 0xf0, 0x01, 0x97,
Packit Service 20376f
    0x0d, 0x1e, 0x1f, 0xea, 0x3f, 0x6e, 0x76, 0x02,
Packit Service 20376f
    0x0a, 0x58, 0x4d, 0x2e, 0x20, 0x6c, 0x1e, 0x48,
Packit Service 20376f
    0x8b, 0xf7, 0x2a, 0xae, 0x8c, 0x5d, 0x47, 0x04,
Packit Service 20376f
    0x4d, 0x66, 0x05, 0xb2, 0x90, 0x0b, 0xbe, 0xcf,
Packit Service 20376f
    0x3d, 0xa6, 0xa4, 0x06, 0x7c, 0x29, 0x3c, 0x64,
Packit Service 20376f
    0xe5, 0x82, 0x0b, 0x03, 0xd8, 0x25, 0x96, 0x8d,
Packit Service 20376f
    0x08, 0x78, 0x9b, 0x27, 0x15, 0x54, 0x76, 0x14,
Packit Service 20376f
    0xd8, 0xdd, 0x35, 0x2f, 0x71, 0xa6, 0x84, 0x8f,
Packit Service 20376f
    0x90, 0x51, 0x85, 0x01, 0x13, 0xb8, 0x90, 0x23,
Packit Service 20376f
    0x99, 0xa5, 0x47, 0x03, 0x7a, 0xfd, 0x15, 0xbf,
Packit Service 20376f
    0x63, 0xec, 0xd3, 0x0d, 0x01, 0x4d, 0x45, 0xb6,
Packit Service 20376f
    0xd2, 0xeb, 0xeb, 0xdf, 0xef, 0x60, 0xdf, 0xef,
Packit Service 20376f
    0x1f, 0x78, 0x35,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char commit_data[] = {
Packit Service 20376f
    0x74, 0x72, 0x65, 0x65, 0x20, 0x64, 0x66, 0x66,
Packit Service 20376f
    0x32, 0x64, 0x61, 0x39, 0x30, 0x62, 0x32, 0x35,
Packit Service 20376f
    0x34, 0x65, 0x31, 0x62, 0x65, 0x62, 0x38, 0x38,
Packit Service 20376f
    0x39, 0x64, 0x31, 0x66, 0x31, 0x66, 0x31, 0x32,
Packit Service 20376f
    0x38, 0x38, 0x62, 0x65, 0x31, 0x38, 0x30, 0x33,
Packit Service 20376f
    0x37, 0x38, 0x32, 0x64, 0x66, 0x0a, 0x61, 0x75,
Packit Service 20376f
    0x74, 0x68, 0x6f, 0x72, 0x20, 0x41, 0x20, 0x55,
Packit Service 20376f
    0x20, 0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61,
Packit Service 20376f
    0x75, 0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78,
Packit Service 20376f
    0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
Packit Service 20376f
    0x6d, 0x3e, 0x20, 0x31, 0x32, 0x32, 0x37, 0x38,
Packit Service 20376f
    0x31, 0x34, 0x32, 0x39, 0x37, 0x20, 0x2b, 0x30,
Packit Service 20376f
    0x30, 0x30, 0x30, 0x0a, 0x63, 0x6f, 0x6d, 0x6d,
Packit Service 20376f
    0x69, 0x74, 0x74, 0x65, 0x72, 0x20, 0x43, 0x20,
Packit Service 20376f
    0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
Packit Service 20376f
    0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
Packit Service 20376f
    0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
Packit Service 20376f
    0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
Packit Service 20376f
    0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
Packit Service 20376f
    0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
Packit Service 20376f
    0x30, 0x0a, 0x0a, 0x41, 0x20, 0x6f, 0x6e, 0x65,
Packit Service 20376f
    0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63, 0x6f,
Packit Service 20376f
    0x6d, 0x6d, 0x69, 0x74, 0x20, 0x73, 0x75, 0x6d,
Packit Service 20376f
    0x6d, 0x61, 0x72, 0x79, 0x0a, 0x0a, 0x54, 0x68,
Packit Service 20376f
    0x65, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x6f,
Packit Service 20376f
    0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
Packit Service 20376f
    0x6d, 0x6d, 0x69, 0x74, 0x20, 0x6d, 0x65, 0x73,
Packit Service 20376f
    0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x63, 0x6f,
Packit Service 20376f
    0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67,
Packit Service 20376f
    0x20, 0x66, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72,
Packit Service 20376f
    0x20, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x6e, 0x61,
Packit Service 20376f
    0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x6f, 0x66, 0x20,
Packit Service 20376f
    0x74, 0x68, 0x65, 0x20, 0x70, 0x75, 0x72, 0x70,
Packit Service 20376f
    0x6f, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67,
Packit Service 20376f
    0x65, 0x73, 0x20, 0x69, 0x6e, 0x74, 0x72, 0x6f,
Packit Service 20376f
    0x64, 0x75, 0x63, 0x65, 0x64, 0x20, 0x62, 0x79,
Packit Service 20376f
    0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d,
Packit Service 20376f
    0x6d, 0x69, 0x74, 0x2e, 0x0a, 0x0a, 0x53, 0x69,
Packit Service 20376f
    0x67, 0x6e, 0x65, 0x64, 0x2d, 0x6f, 0x66, 0x2d,
Packit Service 20376f
    0x62, 0x79, 0x3a, 0x20, 0x41, 0x20, 0x55, 0x20,
Packit Service 20376f
    0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61, 0x75,
Packit Service 20376f
    0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78, 0x61,
Packit Service 20376f
    0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d,
Packit Service 20376f
    0x3e, 0x0a,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data commit = {
Packit Service 20376f
    commit_bytes,
Packit Service 20376f
    sizeof(commit_bytes),
Packit Service 20376f
    "3d7f8a6af076c8c3f20071a8935cdbe8228594d1",
Packit Service 20376f
    "commit",
Packit Service 20376f
    "test-objects/3d",
Packit Service 20376f
    "test-objects/3d/7f8a6af076c8c3f20071a8935cdbe8228594d1",
Packit Service 20376f
    commit_data,
Packit Service 20376f
    sizeof(commit_data),
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
/* tree == dff2da90b254e1beb889d1f1f1288be1803782df */
Packit Service 20376f
static unsigned char tree_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x2b, 0x29, 0x4a, 0x4d, 0x55, 0x30,
Packit Service 20376f
    0x34, 0x32, 0x63, 0x30, 0x34, 0x30, 0x30, 0x33,
Packit Service 20376f
    0x31, 0x51, 0xc8, 0xcf, 0x4b, 0x65, 0xe8, 0x16,
Packit Service 20376f
    0xae, 0x98, 0x58, 0x29, 0xff, 0x32, 0x53, 0x7d,
Packit Service 20376f
    0x6d, 0xc5, 0x33, 0x6f, 0xae, 0xb5, 0xd5, 0xf7,
Packit Service 20376f
    0x2e, 0x74, 0xdf, 0x81, 0x4a, 0x17, 0xe7, 0xe7,
Packit Service 20376f
    0xa6, 0x32, 0xfc, 0x6d, 0x31, 0xd8, 0xd3, 0xe6,
Packit Service 20376f
    0xf3, 0xe7, 0xea, 0x47, 0xbe, 0xd0, 0x09, 0x3f,
Packit Service 20376f
    0x96, 0xb8, 0x3f, 0x90, 0x9e, 0xa2, 0xfd, 0x0f,
Packit Service 20376f
    0x2a, 0x5f, 0x52, 0x9e, 0xcf, 0x50, 0x31, 0x43,
Packit Service 20376f
    0x52, 0x29, 0xd1, 0x5a, 0xeb, 0x77, 0x82, 0x2a,
Packit Service 20376f
    0x8b, 0xfe, 0xb7, 0xbd, 0xed, 0x5d, 0x07, 0x67,
Packit Service 20376f
    0xfa, 0xb5, 0x42, 0xa5, 0xab, 0x52, 0x8b, 0xf2,
Packit Service 20376f
    0x19, 0x9e, 0xcd, 0x7d, 0x34, 0x7b, 0xd3, 0xc5,
Packit Service 20376f
    0x6b, 0xce, 0xde, 0xdd, 0x9a, 0xeb, 0xca, 0xa3,
Packit Service 20376f
    0x6e, 0x1c, 0x7a, 0xd2, 0x13, 0x3c, 0x11, 0x00,
Packit Service 20376f
    0xe2, 0xaa, 0x38, 0x57,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char tree_data[] = {
Packit Service 20376f
    0x31, 0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x6f,
Packit Service 20376f
    0x6e, 0x65, 0x00, 0x8b, 0x13, 0x78, 0x91, 0x79,
Packit Service 20376f
    0x1f, 0xe9, 0x69, 0x27, 0xad, 0x78, 0xe6, 0x4b,
Packit Service 20376f
    0x0a, 0xad, 0x7b, 0xde, 0xd0, 0x8b, 0xdc, 0x31,
Packit Service 20376f
    0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x73, 0x6f,
Packit Service 20376f
    0x6d, 0x65, 0x00, 0xfd, 0x84, 0x30, 0xbc, 0x86,
Packit Service 20376f
    0x4c, 0xfc, 0xd5, 0xf1, 0x0e, 0x55, 0x90, 0xf8,
Packit Service 20376f
    0xa4, 0x47, 0xe0, 0x1b, 0x94, 0x2b, 0xfe, 0x31,
Packit Service 20376f
    0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x74, 0x77,
Packit Service 20376f
    0x6f, 0x00, 0x78, 0x98, 0x19, 0x22, 0x61, 0x3b,
Packit Service 20376f
    0x2a, 0xfb, 0x60, 0x25, 0x04, 0x2f, 0xf6, 0xbd,
Packit Service 20376f
    0x87, 0x8a, 0xc1, 0x99, 0x4e, 0x85, 0x31, 0x30,
Packit Service 20376f
    0x30, 0x36, 0x34, 0x34, 0x20, 0x7a, 0x65, 0x72,
Packit Service 20376f
    0x6f, 0x00, 0xe6, 0x9d, 0xe2, 0x9b, 0xb2, 0xd1,
Packit Service 20376f
    0xd6, 0x43, 0x4b, 0x8b, 0x29, 0xae, 0x77, 0x5a,
Packit Service 20376f
    0xd8, 0xc2, 0xe4, 0x8c, 0x53, 0x91,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data tree = {
Packit Service 20376f
    tree_bytes,
Packit Service 20376f
    sizeof(tree_bytes),
Packit Service 20376f
    "dff2da90b254e1beb889d1f1f1288be1803782df",
Packit Service 20376f
    "tree",
Packit Service 20376f
    "test-objects/df",
Packit Service 20376f
    "test-objects/df/f2da90b254e1beb889d1f1f1288be1803782df",
Packit Service 20376f
    tree_data,
Packit Service 20376f
    sizeof(tree_data),
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
/* tag == 09d373e1dfdc16b129ceec6dd649739911541e05 */
Packit Service 20376f
static unsigned char tag_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x35, 0x4e, 0xcb, 0x0a, 0xc2, 0x40,
Packit Service 20376f
    0x10, 0xf3, 0xbc, 0x5f, 0x31, 0x77, 0xa1, 0xec,
Packit Service 20376f
    0xa3, 0xed, 0x6e, 0x41, 0x44, 0xf0, 0x2c, 0x5e,
Packit Service 20376f
    0xfc, 0x81, 0xe9, 0x76, 0xb6, 0xad, 0xb4, 0xb4,
Packit Service 20376f
    0x6c, 0x07, 0xd1, 0xbf, 0x77, 0x44, 0x0d, 0x39,
Packit Service 20376f
    0x84, 0x10, 0x92, 0x30, 0xf6, 0x60, 0xbc, 0xdb,
Packit Service 20376f
    0x2d, 0xed, 0x9d, 0x22, 0x83, 0xeb, 0x7c, 0x0a,
Packit Service 20376f
    0x58, 0x63, 0xd2, 0xbe, 0x8e, 0x21, 0xba, 0x64,
Packit Service 20376f
    0xb5, 0xf6, 0x06, 0x43, 0xe3, 0xaa, 0xd8, 0xb5,
Packit Service 20376f
    0x14, 0xac, 0x0d, 0x55, 0x53, 0x76, 0x46, 0xf1,
Packit Service 20376f
    0x6b, 0x25, 0x88, 0xcb, 0x3c, 0x8f, 0xac, 0x58,
Packit Service 20376f
    0x3a, 0x1e, 0xba, 0xd0, 0x85, 0xd8, 0xd8, 0xf7,
Packit Service 20376f
    0x94, 0xe1, 0x0c, 0x57, 0xb8, 0x8c, 0xcc, 0x22,
Packit Service 20376f
    0x0f, 0xdf, 0x90, 0xc8, 0x13, 0x3d, 0x71, 0x5e,
Packit Service 20376f
    0x27, 0x2a, 0xc4, 0x39, 0x82, 0xb1, 0xd6, 0x07,
Packit Service 20376f
    0x53, 0xda, 0xc6, 0xc3, 0x5e, 0x0b, 0x94, 0xba,
Packit Service 20376f
    0x0d, 0xe3, 0x06, 0x42, 0x1e, 0x08, 0x3e, 0x95,
Packit Service 20376f
    0xbf, 0x4b, 0x69, 0xc9, 0x90, 0x69, 0x22, 0xdc,
Packit Service 20376f
    0xe8, 0xbf, 0xf2, 0x06, 0x42, 0x9a, 0x36, 0xb1,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char tag_data[] = {
Packit Service 20376f
    0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x33,
Packit Service 20376f
    0x64, 0x37, 0x66, 0x38, 0x61, 0x36, 0x61, 0x66,
Packit Service 20376f
    0x30, 0x37, 0x36, 0x63, 0x38, 0x63, 0x33, 0x66,
Packit Service 20376f
    0x32, 0x30, 0x30, 0x37, 0x31, 0x61, 0x38, 0x39,
Packit Service 20376f
    0x33, 0x35, 0x63, 0x64, 0x62, 0x65, 0x38, 0x32,
Packit Service 20376f
    0x32, 0x38, 0x35, 0x39, 0x34, 0x64, 0x31, 0x0a,
Packit Service 20376f
    0x74, 0x79, 0x70, 0x65, 0x20, 0x63, 0x6f, 0x6d,
Packit Service 20376f
    0x6d, 0x69, 0x74, 0x0a, 0x74, 0x61, 0x67, 0x20,
Packit Service 20376f
    0x76, 0x30, 0x2e, 0x30, 0x2e, 0x31, 0x0a, 0x74,
Packit Service 20376f
    0x61, 0x67, 0x67, 0x65, 0x72, 0x20, 0x43, 0x20,
Packit Service 20376f
    0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
Packit Service 20376f
    0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
Packit Service 20376f
    0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
Packit Service 20376f
    0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
Packit Service 20376f
    0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
Packit Service 20376f
    0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
Packit Service 20376f
    0x30, 0x0a, 0x0a, 0x54, 0x68, 0x69, 0x73, 0x20,
Packit Service 20376f
    0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74,
Packit Service 20376f
    0x61, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63,
Packit Service 20376f
    0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65,
Packit Service 20376f
    0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x76, 0x30,
Packit Service 20376f
    0x2e, 0x30, 0x2e, 0x31, 0x0a,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data tag = {
Packit Service 20376f
    tag_bytes,
Packit Service 20376f
    sizeof(tag_bytes),
Packit Service 20376f
    "09d373e1dfdc16b129ceec6dd649739911541e05",
Packit Service 20376f
    "tag",
Packit Service 20376f
    "test-objects/09",
Packit Service 20376f
    "test-objects/09/d373e1dfdc16b129ceec6dd649739911541e05",
Packit Service 20376f
    tag_data,
Packit Service 20376f
    sizeof(tag_data),
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
/* zero == e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 */
Packit Service 20376f
static unsigned char zero_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x4b, 0xca, 0xc9, 0x4f, 0x52, 0x30,
Packit Service 20376f
    0x60, 0x00, 0x00, 0x09, 0xb0, 0x01, 0xf0,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char zero_data[] = {
Packit Service 20376f
    0x00  /* dummy data */
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data zero = {
Packit Service 20376f
    zero_bytes,
Packit Service 20376f
    sizeof(zero_bytes),
Packit Service 20376f
    "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
Packit Service 20376f
    "blob",
Packit Service 20376f
    "test-objects/e6",
Packit Service 20376f
    "test-objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391",
Packit Service 20376f
    zero_data,
Packit Service 20376f
    0,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
/* two == 78981922613b2afb6025042ff6bd878ac1994e85 */
Packit Service 20376f
static unsigned char two_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x4b, 0xca, 0xc9, 0x4f, 0x52, 0x30,
Packit Service 20376f
    0x62, 0x48, 0xe4, 0x02, 0x00, 0x0e, 0x64, 0x02,
Packit Service 20376f
    0x5d,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char two_data[] = {
Packit Service 20376f
    0x61, 0x0a,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data two = {
Packit Service 20376f
    two_bytes,
Packit Service 20376f
    sizeof(two_bytes),
Packit Service 20376f
    "78981922613b2afb6025042ff6bd878ac1994e85",
Packit Service 20376f
    "blob",
Packit Service 20376f
    "test-objects/78",
Packit Service 20376f
    "test-objects/78/981922613b2afb6025042ff6bd878ac1994e85",
Packit Service 20376f
    two_data,
Packit Service 20376f
    sizeof(two_data),
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
/* some == fd8430bc864cfcd5f10e5590f8a447e01b942bfe */
Packit Service 20376f
static unsigned char some_bytes[] = {
Packit Service 20376f
    0x78, 0x01, 0x7d, 0x54, 0xc1, 0x4e, 0xe3, 0x30,
Packit Service 20376f
    0x10, 0xdd, 0x33, 0x5f, 0x31, 0xc7, 0x5d, 0x94,
Packit Service 20376f
    0xa5, 0x84, 0xd5, 0x22, 0xad, 0x7a, 0x0a, 0x15,
Packit Service 20376f
    0x85, 0x48, 0xd0, 0x56, 0x49, 0x2a, 0xd4, 0xa3,
Packit Service 20376f
    0x13, 0x4f, 0x88, 0x85, 0x63, 0x47, 0xb6, 0x43,
Packit Service 20376f
    0xc9, 0xdf, 0xef, 0x8c, 0x69, 0x17, 0x56, 0x0b,
Packit Service 20376f
    0x7b, 0xaa, 0x62, 0x7b, 0xde, 0xbc, 0xf7, 0xe6,
Packit Service 20376f
    0x4d, 0x6b, 0x6d, 0x6b, 0x48, 0xd3, 0xcb, 0x5f,
Packit Service 20376f
    0x5f, 0x66, 0xa7, 0x27, 0x70, 0x0a, 0x55, 0xa7,
Packit Service 20376f
    0x3c, 0xb4, 0x4a, 0x23, 0xf0, 0xaf, 0x43, 0x04,
Packit Service 20376f
    0x6f, 0xdb, 0xb0, 0x17, 0x0e, 0xe7, 0x30, 0xd9,
Packit Service 20376f
    0x11, 0x1a, 0x61, 0xc0, 0xa1, 0x54, 0x3e, 0x38,
Packit Service 20376f
    0x55, 0x8f, 0x81, 0x9e, 0x05, 0x10, 0x46, 0xce,
Packit Service 20376f
    0xac, 0x83, 0xde, 0x4a, 0xd5, 0x4e, 0x0c, 0x42,
Packit Service 20376f
    0x67, 0xa3, 0x91, 0xe8, 0x20, 0x74, 0x08, 0x01,
Packit Service 20376f
    0x5d, 0xef, 0xc1, 0xb6, 0xf1, 0xe3, 0x66, 0xb5,
Packit Service 20376f
    0x85, 0x1b, 0x34, 0xe8, 0x84, 0x86, 0xcd, 0x58,
Packit Service 20376f
    0x6b, 0xd5, 0xc0, 0x9d, 0x6a, 0xd0, 0x78, 0x4c,
Packit Service 20376f
    0xe0, 0x19, 0x9d, 0x57, 0xd6, 0xc0, 0x45, 0xc2,
Packit Service 20376f
    0x18, 0xc2, 0xc3, 0xc0, 0x0f, 0x7c, 0x87, 0x12,
Packit Service 20376f
    0xea, 0x29, 0x56, 0x2f, 0x99, 0x4f, 0x79, 0xe0,
Packit Service 20376f
    0x03, 0x4b, 0x4b, 0x4d, 0x44, 0xa0, 0x92, 0x33,
Packit Service 20376f
    0x2a, 0xe0, 0x9a, 0xdc, 0x80, 0x90, 0x52, 0xf1,
Packit Service 20376f
    0x11, 0x04, 0x1b, 0x4b, 0x06, 0xea, 0xae, 0x3c,
Packit Service 20376f
    0xe3, 0x7a, 0x50, 0x74, 0x4a, 0x84, 0xfe, 0xc3,
Packit Service 20376f
    0x81, 0x41, 0xf8, 0x89, 0x18, 0x43, 0x67, 0x9d,
Packit Service 20376f
    0x87, 0x47, 0xf5, 0x8c, 0x51, 0xf6, 0x68, 0xb4,
Packit Service 20376f
    0xea, 0x55, 0x20, 0x2a, 0x6f, 0x80, 0xdc, 0x42,
Packit Service 20376f
    0x2b, 0xf3, 0x14, 0x2b, 0x1a, 0xdb, 0x0f, 0xe4,
Packit Service 20376f
    0x9a, 0x64, 0x84, 0xa3, 0x90, 0xa8, 0xf9, 0x8f,
Packit Service 20376f
    0x9d, 0x86, 0x9e, 0xd3, 0xab, 0x5a, 0x99, 0xc8,
Packit Service 20376f
    0xd9, 0xc3, 0x5e, 0x85, 0x0e, 0x2c, 0xb5, 0x73,
Packit Service 20376f
    0x30, 0x38, 0xfb, 0xe8, 0x44, 0xef, 0x5f, 0x95,
Packit Service 20376f
    0x1b, 0xc9, 0xd0, 0xef, 0x3c, 0x26, 0x32, 0x1e,
Packit Service 20376f
    0xff, 0x2d, 0xb6, 0x23, 0x7b, 0x3f, 0xd1, 0x3c,
Packit Service 20376f
    0x78, 0x1a, 0x0d, 0xcb, 0xe6, 0xf6, 0xd4, 0x44,
Packit Service 20376f
    0x99, 0x47, 0x1a, 0x9e, 0xed, 0x23, 0xb5, 0x91,
Packit Service 20376f
    0x6a, 0xdf, 0x53, 0x39, 0x03, 0xf8, 0x5a, 0xb1,
Packit Service 20376f
    0x0f, 0x1f, 0xce, 0x81, 0x11, 0xde, 0x01, 0x7a,
Packit Service 20376f
    0x90, 0x16, 0xc4, 0x30, 0xe8, 0x89, 0xed, 0x7b,
Packit Service 20376f
    0x65, 0x4b, 0xd7, 0x03, 0x36, 0xc1, 0xcf, 0xa1,
Packit Service 20376f
    0xa5, 0xb1, 0xe3, 0x8b, 0xe8, 0x07, 0x4d, 0xf3,
Packit Service 20376f
    0x23, 0x25, 0x13, 0x35, 0x27, 0xf5, 0x8c, 0x11,
Packit Service 20376f
    0xd3, 0xa0, 0x9a, 0xa8, 0xf5, 0x38, 0x7d, 0xce,
Packit Service 20376f
    0x55, 0xc2, 0x71, 0x79, 0x13, 0xc7, 0xa3, 0xda,
Packit Service 20376f
    0x77, 0x68, 0xc0, 0xd8, 0x10, 0xdd, 0x24, 0x8b,
Packit Service 20376f
    0x15, 0x59, 0xc5, 0x10, 0xe2, 0x20, 0x99, 0x8e,
Packit Service 20376f
    0xf0, 0x05, 0x9b, 0x31, 0x88, 0x5a, 0xe3, 0xd9,
Packit Service 20376f
    0x37, 0xba, 0xe2, 0xdb, 0xbf, 0x92, 0xfa, 0x66,
Packit Service 20376f
    0x16, 0x97, 0x47, 0xd9, 0x9d, 0x1d, 0x28, 0x7c,
Packit Service 20376f
    0x9d, 0x08, 0x1c, 0xc7, 0xbd, 0xd2, 0x1a, 0x6a,
Packit Service 20376f
    0x04, 0xf2, 0xa2, 0x1d, 0x75, 0x02, 0x14, 0x5d,
Packit Service 20376f
    0xc6, 0x78, 0xc8, 0xab, 0xdb, 0xf5, 0xb6, 0x82,
Packit Service 20376f
    0x6c, 0xb5, 0x83, 0x87, 0xac, 0x28, 0xb2, 0x55,
Packit Service 20376f
    0xb5, 0x9b, 0xc7, 0xc1, 0xb0, 0xb7, 0xf8, 0x4c,
Packit Service 20376f
    0xbc, 0x38, 0x0e, 0x8a, 0x04, 0x2a, 0x62, 0x41,
Packit Service 20376f
    0x6b, 0xe0, 0x84, 0x09, 0x13, 0xe9, 0xe1, 0xea,
Packit Service 20376f
    0xfb, 0xeb, 0x62, 0x71, 0x4b, 0x25, 0xd9, 0x55,
Packit Service 20376f
    0x7e, 0x97, 0x57, 0x3b, 0x20, 0x33, 0x96, 0x79,
Packit Service 20376f
    0xb5, 0xba, 0x2e, 0x4b, 0x58, 0xae, 0x0b, 0xc8,
Packit Service 20376f
    0x60, 0x93, 0x15, 0x55, 0xbe, 0xd8, 0xde, 0x65,
Packit Service 20376f
    0x05, 0x6c, 0xb6, 0xc5, 0x66, 0x5d, 0x5e, 0x93,
Packit Service 20376f
    0xf7, 0x25, 0x65, 0x98, 0x41, 0x29, 0x86, 0x0c,
Packit Service 20376f
    0xf2, 0xf1, 0x14, 0xa2, 0xb3, 0xbd, 0x75, 0x08,
Packit Service 20376f
    0x12, 0x83, 0x50, 0xda, 0x1f, 0x23, 0xbe, 0xa3,
Packit Service 20376f
    0x1d, 0xf4, 0x9d, 0x1d, 0xb5, 0x84, 0x4e, 0x50,
Packit Service 20376f
    0x38, 0x1d, 0x36, 0x48, 0x21, 0x95, 0xd1, 0xac,
Packit Service 20376f
    0x81, 0x99, 0x1d, 0xc1, 0x3f, 0x41, 0xe6, 0x9e,
Packit Service 20376f
    0x42, 0x5b, 0x0a, 0x48, 0xcc, 0x5f, 0xe0, 0x7d,
Packit Service 20376f
    0x3f, 0xc4, 0x6f, 0x0e, 0xfe, 0xc0, 0x2d, 0xfe,
Packit Service 20376f
    0x01, 0x2c, 0xd6, 0x9b, 0x5d, 0xbe, 0xba, 0x21,
Packit Service 20376f
    0xca, 0x79, 0xcb, 0xe3, 0x49, 0x60, 0xef, 0x68,
Packit Service 20376f
    0x05, 0x28, 0x9b, 0x8c, 0xc1, 0x12, 0x3e, 0xdb,
Packit Service 20376f
    0xc7, 0x04, 0x7e, 0xa6, 0x74, 0x29, 0xcc, 0x13,
Packit Service 20376f
    0xed, 0x07, 0x94, 0x81, 0xd6, 0x96, 0xaa, 0x97,
Packit Service 20376f
    0xaa, 0xa5, 0xc0, 0x2f, 0xb5, 0xb5, 0x2e, 0xe6,
Packit Service 20376f
    0xfc, 0xca, 0xfa, 0x60, 0x4d, 0x02, 0xf7, 0x19,
Packit Service 20376f
    0x9c, 0x5f, 0xa4, 0xe9, 0xf9, 0xf7, 0xf4, 0xc7,
Packit Service 20376f
    0x79, 0x9a, 0xc0, 0xb6, 0xcc, 0x58, 0xec, 0xec,
Packit Service 20376f
    0xe4, 0x37, 0x22, 0xfa, 0x8b, 0x53,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static unsigned char some_data[] = {
Packit Service 20376f
    0x2f, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x54, 0x68,
Packit Service 20376f
    0x69, 0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20,
Packit Service 20376f
    0x69, 0x73, 0x20, 0x66, 0x72, 0x65, 0x65, 0x20,
Packit Service 20376f
    0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
Packit Service 20376f
    0x3b, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61,
Packit Service 20376f
    0x6e, 0x20, 0x72, 0x65, 0x64, 0x69, 0x73, 0x74,
Packit Service 20376f
    0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x69,
Packit Service 20376f
    0x74, 0x20, 0x61, 0x6e, 0x64, 0x2f, 0x6f, 0x72,
Packit Service 20376f
    0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x0a,
Packit Service 20376f
    0x20, 0x2a, 0x20, 0x69, 0x74, 0x20, 0x75, 0x6e,
Packit Service 20376f
    0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20,
Packit Service 20376f
    0x74, 0x65, 0x72, 0x6d, 0x73, 0x20, 0x6f, 0x66,
Packit Service 20376f
    0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
Packit Service 20376f
    0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
Packit Service 20376f
    0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
Packit Service 20376f
    0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c,
Packit Service 20376f
    0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
Packit Service 20376f
    0x20, 0x32, 0x2c, 0x0a, 0x20, 0x2a, 0x20, 0x61,
Packit Service 20376f
    0x73, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
Packit Service 20376f
    0x68, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
Packit Service 20376f
    0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
Packit Service 20376f
    0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
Packit Service 20376f
    0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x20, 0x2a, 0x0a,
Packit Service 20376f
    0x20, 0x2a, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x64,
Packit Service 20376f
    0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74,
Packit Service 20376f
    0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x65,
Packit Service 20376f
    0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
Packit Service 20376f
    0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
Packit Service 20376f
    0x20, 0x47, 0x4e, 0x55, 0x20, 0x47, 0x65, 0x6e,
Packit Service 20376f
    0x65, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x75, 0x62,
Packit Service 20376f
    0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69, 0x63, 0x65,
Packit Service 20376f
    0x6e, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x2a, 0x20,
Packit Service 20376f
    0x74, 0x68, 0x65, 0x20, 0x61, 0x75, 0x74, 0x68,
Packit Service 20376f
    0x6f, 0x72, 0x73, 0x20, 0x67, 0x69, 0x76, 0x65,
Packit Service 20376f
    0x20, 0x79, 0x6f, 0x75, 0x20, 0x75, 0x6e, 0x6c,
Packit Service 20376f
    0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x20, 0x70,
Packit Service 20376f
    0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
Packit Service 20376f
    0x6e, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x69, 0x6e,
Packit Service 20376f
    0x6b, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
Packit Service 20376f
    0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x0a, 0x20,
Packit Service 20376f
    0x2a, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
Packit Service 20376f
    0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x69,
Packit Service 20376f
    0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69,
Packit Service 20376f
    0x6e, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6d, 0x62,
Packit Service 20376f
    0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
Packit Service 20376f
    0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x6f, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x67,
Packit Service 20376f
    0x72, 0x61, 0x6d, 0x73, 0x2c, 0x0a, 0x20, 0x2a,
Packit Service 20376f
    0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20,
Packit Service 20376f
    0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
Packit Service 20376f
    0x74, 0x65, 0x20, 0x74, 0x68, 0x6f, 0x73, 0x65,
Packit Service 20376f
    0x20, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61,
Packit Service 20376f
    0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x77, 0x69,
Packit Service 20376f
    0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x61, 0x6e,
Packit Service 20376f
    0x79, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69,
Packit Service 20376f
    0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x2a,
Packit Service 20376f
    0x20, 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x20,
Packit Service 20376f
    0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65,
Packit Service 20376f
    0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20,
Packit Service 20376f
    0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
Packit Service 20376f
    0x65, 0x2e, 0x20, 0x20, 0x28, 0x54, 0x68, 0x65,
Packit Service 20376f
    0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
Packit Service 20376f
    0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
Packit Service 20376f
    0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
Packit Service 20376f
    0x20, 0x2a, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72,
Packit Service 20376f
    0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
Packit Service 20376f
    0x64, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79,
Packit Service 20376f
    0x20, 0x69, 0x6e, 0x20, 0x6f, 0x74, 0x68, 0x65,
Packit Service 20376f
    0x72, 0x20, 0x72, 0x65, 0x73, 0x70, 0x65, 0x63,
Packit Service 20376f
    0x74, 0x73, 0x3b, 0x20, 0x66, 0x6f, 0x72, 0x20,
Packit Service 20376f
    0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c,
Packit Service 20376f
    0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x63, 0x6f,
Packit Service 20376f
    0x76, 0x65, 0x72, 0x0a, 0x20, 0x2a, 0x20, 0x6d,
Packit Service 20376f
    0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
Packit Service 20376f
    0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2c,
Packit Service 20376f
    0x20, 0x61, 0x6e, 0x64, 0x20, 0x64, 0x69, 0x73,
Packit Service 20376f
    0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f,
Packit Service 20376f
    0x6e, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x6e,
Packit Service 20376f
    0x6f, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
Packit Service 20376f
    0x64, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x0a, 0x20,
Packit Service 20376f
    0x2a, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6d, 0x62,
Packit Service 20376f
    0x69, 0x6e, 0x65, 0x64, 0x20, 0x65, 0x78, 0x65,
Packit Service 20376f
    0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e,
Packit Service 20376f
    0x29, 0x0a, 0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20,
Packit Service 20376f
    0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
Packit Service 20376f
    0x65, 0x20, 0x69, 0x73, 0x20, 0x64, 0x69, 0x73,
Packit Service 20376f
    0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
Packit Service 20376f
    0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
Packit Service 20376f
    0x68, 0x6f, 0x70, 0x65, 0x20, 0x74, 0x68, 0x61,
Packit Service 20376f
    0x74, 0x20, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6c,
Packit Service 20376f
    0x6c, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65,
Packit Service 20376f
    0x66, 0x75, 0x6c, 0x2c, 0x20, 0x62, 0x75, 0x74,
Packit Service 20376f
    0x0a, 0x20, 0x2a, 0x20, 0x57, 0x49, 0x54, 0x48,
Packit Service 20376f
    0x4f, 0x55, 0x54, 0x20, 0x41, 0x4e, 0x59, 0x20,
Packit Service 20376f
    0x57, 0x41, 0x52, 0x52, 0x41, 0x4e, 0x54, 0x59,
Packit Service 20376f
    0x3b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
Packit Service 20376f
    0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69,
Packit Service 20376f
    0x65, 0x64, 0x20, 0x77, 0x61, 0x72, 0x72, 0x61,
Packit Service 20376f
    0x6e, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x0a, 0x20,
Packit Service 20376f
    0x2a, 0x20, 0x4d, 0x45, 0x52, 0x43, 0x48, 0x41,
Packit Service 20376f
    0x4e, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
Packit Service 20376f
    0x59, 0x20, 0x6f, 0x72, 0x20, 0x46, 0x49, 0x54,
Packit Service 20376f
    0x4e, 0x45, 0x53, 0x53, 0x20, 0x46, 0x4f, 0x52,
Packit Service 20376f
    0x20, 0x41, 0x20, 0x50, 0x41, 0x52, 0x54, 0x49,
Packit Service 20376f
    0x43, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x50, 0x55,
Packit Service 20376f
    0x52, 0x50, 0x4f, 0x53, 0x45, 0x2e, 0x20, 0x20,
Packit Service 20376f
    0x53, 0x65, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20,
Packit Service 20376f
    0x47, 0x4e, 0x55, 0x0a, 0x20, 0x2a, 0x20, 0x47,
Packit Service 20376f
    0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x50,
Packit Service 20376f
    0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69,
Packit Service 20376f
    0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x66, 0x6f,
Packit Service 20376f
    0x72, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x64,
Packit Service 20376f
    0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x0a,
Packit Service 20376f
    0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x59, 0x6f,
Packit Service 20376f
    0x75, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64,
Packit Service 20376f
    0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x72, 0x65,
Packit Service 20376f
    0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x61,
Packit Service 20376f
    0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66,
Packit Service 20376f
    0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
Packit Service 20376f
    0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
Packit Service 20376f
    0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
Packit Service 20376f
    0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
Packit Service 20376f
    0x20, 0x2a, 0x20, 0x61, 0x6c, 0x6f, 0x6e, 0x67,
Packit Service 20376f
    0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68,
Packit Service 20376f
    0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72,
Packit Service 20376f
    0x61, 0x6d, 0x3b, 0x20, 0x73, 0x65, 0x65, 0x20,
Packit Service 20376f
    0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65,
Packit Service 20376f
    0x20, 0x43, 0x4f, 0x50, 0x59, 0x49, 0x4e, 0x47,
Packit Service 20376f
    0x2e, 0x20, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f,
Packit Service 20376f
    0x74, 0x2c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65,
Packit Service 20376f
    0x20, 0x74, 0x6f, 0x0a, 0x20, 0x2a, 0x20, 0x74,
Packit Service 20376f
    0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
Packit Service 20376f
    0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
Packit Service 20376f
    0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
Packit Service 20376f
    0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x35, 0x31, 0x20,
Packit Service 20376f
    0x46, 0x72, 0x61, 0x6e, 0x6b, 0x6c, 0x69, 0x6e,
Packit Service 20376f
    0x20, 0x53, 0x74, 0x72, 0x65, 0x65, 0x74, 0x2c,
Packit Service 20376f
    0x20, 0x46, 0x69, 0x66, 0x74, 0x68, 0x20, 0x46,
Packit Service 20376f
    0x6c, 0x6f, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x2a,
Packit Service 20376f
    0x20, 0x42, 0x6f, 0x73, 0x74, 0x6f, 0x6e, 0x2c,
Packit Service 20376f
    0x20, 0x4d, 0x41, 0x20, 0x30, 0x32, 0x31, 0x31,
Packit Service 20376f
    0x30, 0x2d, 0x31, 0x33, 0x30, 0x31, 0x2c, 0x20,
Packit Service 20376f
    0x55, 0x53, 0x41, 0x2e, 0x0a, 0x20, 0x2a, 0x2f,
Packit Service 20376f
    0x0a,
Packit Service 20376f
};
Packit Service 20376f
Packit Service 20376f
static object_data some = {
Packit Service 20376f
    some_bytes,
Packit Service 20376f
    sizeof(some_bytes),
Packit Service 20376f
    "fd8430bc864cfcd5f10e5590f8a447e01b942bfe",
Packit Service 20376f
    "blob",
Packit Service 20376f
    "test-objects/fd",
Packit Service 20376f
    "test-objects/fd/8430bc864cfcd5f10e5590f8a447e01b942bfe",
Packit Service 20376f
    some_data,
Packit Service 20376f
    sizeof(some_data),
Packit Service 20376f
};