summaryrefslogtreecommitdiff
path: root/tests-clar/object/raw/type2string.c
blob: a3585487f6525115556d949b18a0168135cc43a3 (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

#include "clar_libgit2.h"

#include "odb.h"
#include "hash.h"

void test_object_raw_type2string__convert_type_to_string(void)
{
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_BAD), "");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ__EXT1), "");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_COMMIT), "commit");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_TREE), "tree");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_BLOB), "blob");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_TAG), "tag");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ__EXT2), "");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_OFS_DELTA), "OFS_DELTA");
	cl_assert_equal_s(git_object_type2string(GIT_OBJ_REF_DELTA), "REF_DELTA");

	cl_assert_equal_s(git_object_type2string(-2), "");
	cl_assert_equal_s(git_object_type2string(8), "");
	cl_assert_equal_s(git_object_type2string(1234), "");
}

void test_object_raw_type2string__convert_string_to_type(void)
{
	cl_assert(git_object_string2type(NULL) == GIT_OBJ_BAD);
	cl_assert(git_object_string2type("") == GIT_OBJ_BAD);
	cl_assert(git_object_string2type("commit") == GIT_OBJ_COMMIT);
	cl_assert(git_object_string2type("tree") == GIT_OBJ_TREE);
	cl_assert(git_object_string2type("blob") == GIT_OBJ_BLOB);
	cl_assert(git_object_string2type("tag") == GIT_OBJ_TAG);
	cl_assert(git_object_string2type("OFS_DELTA") == GIT_OBJ_OFS_DELTA);
	cl_assert(git_object_string2type("REF_DELTA") == GIT_OBJ_REF_DELTA);

	cl_assert(git_object_string2type("CoMmIt") == GIT_OBJ_BAD);
	cl_assert(git_object_string2type("hohoho") == GIT_OBJ_BAD);
}

void test_object_raw_type2string__check_type_is_loose(void)
{
	cl_assert(git_object_typeisloose(GIT_OBJ_BAD) == 0);
	cl_assert(git_object_typeisloose(GIT_OBJ__EXT1) == 0);
	cl_assert(git_object_typeisloose(GIT_OBJ_COMMIT) == 1);
	cl_assert(git_object_typeisloose(GIT_OBJ_TREE) == 1);
	cl_assert(git_object_typeisloose(GIT_OBJ_BLOB) == 1);
	cl_assert(git_object_typeisloose(GIT_OBJ_TAG) == 1);
	cl_assert(git_object_typeisloose(GIT_OBJ__EXT2) == 0);
	cl_assert(git_object_typeisloose(GIT_OBJ_OFS_DELTA) == 0);
	cl_assert(git_object_typeisloose(GIT_OBJ_REF_DELTA) == 0);

	cl_assert(git_object_typeisloose(-2) == 0);
	cl_assert(git_object_typeisloose(8) == 0);
	cl_assert(git_object_typeisloose(1234) == 0);
}