summaryrefslogtreecommitdiff
path: root/tests/libgit2/odb/packed256.c
blob: 65220fd4c8b6c2c88506b7975d8b25218a25388a (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include "clar_libgit2.h"
#include "odb.h"
#include "pack_data_256.h"

#ifdef GIT_EXPERIMENTAL_SHA256
static git_odb *_odb;
#endif

void test_odb_packed256__initialize(void)
{
#ifdef GIT_EXPERIMENTAL_SHA256
	git_odb_options opts = GIT_ODB_OPTIONS_INIT;

	opts.oid_type = GIT_OID_SHA256;

	cl_git_pass(git_odb__open(
		&_odb,
		cl_fixture("testrepo_256.git/objects"),
		&opts));
#endif
}

void test_odb_packed256__cleanup(void)
{
#ifdef GIT_EXPERIMENTAL_SHA256
	git_odb_free(_odb);
	_odb = NULL;
#endif
}

void test_odb_packed256__mass_read(void)
{
#ifdef GIT_EXPERIMENTAL_SHA256
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(packed_objects_256); ++i) {
		git_oid id;
		git_odb_object *obj;

		cl_git_pass(git_oid__fromstr(&id, packed_objects_256[i], GIT_OID_SHA256));
		cl_assert(git_odb_exists(_odb, &id) == 1);
		cl_git_pass(git_odb_read(&obj, _odb, &id));

		git_odb_object_free(obj);
	}
#endif
}

void test_odb_packed256__read_header_0(void)
{
#ifdef GIT_EXPERIMENTAL_SHA256
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(packed_objects_256); ++i) {
		git_oid id;
		git_odb_object *obj;
		size_t len;
		git_object_t type;

		cl_git_pass(git_oid__fromstr(&id, packed_objects_256[i], GIT_OID_SHA256));

		cl_git_pass(git_odb_read(&obj, _odb, &id));
		cl_git_pass(git_odb_read_header(&len, &type, _odb, &id));

		cl_assert(obj->cached.size == len);
		cl_assert(obj->cached.type == type);

		git_odb_object_free(obj);
	}
#endif
}

void test_odb_packed256__read_header_1(void)
{
#ifdef GIT_EXPERIMENTAL_SHA256
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(loose_objects_256); ++i) {
		git_oid id;
		git_odb_object *obj;
		size_t len;
		git_object_t type;

		cl_git_pass(git_oid__fromstr(&id, loose_objects_256[i], GIT_OID_SHA256));

		cl_assert(git_odb_exists(_odb, &id) == 1);

		cl_git_pass(git_odb_read(&obj, _odb, &id));
		cl_git_pass(git_odb_read_header(&len, &type, _odb, &id));

		cl_assert(obj->cached.size == len);
		cl_assert(obj->cached.type == type);

		git_odb_object_free(obj);
	}
#endif
}