notesref.c 1.71 KB
Newer Older
1 2
#include "clar_libgit2.h"

3 4
#include "notes.h"

5 6 7 8 9 10 11 12 13 14 15 16 17 18
static git_repository *_repo;
static git_note *_note;
static git_signature *_sig;
static git_config *_cfg;

void test_notes_notesref__initialize(void)
{
	cl_fixture_sandbox("testrepo.git");
	cl_git_pass(git_repository_open(&_repo, "testrepo.git"));
}

void test_notes_notesref__cleanup(void)
{
	git_note_free(_note);
19 20
	_note = NULL;

21
	git_signature_free(_sig);
22 23
	_sig = NULL;

24
	git_config_free(_cfg);
25
	_cfg = NULL;
26 27

	git_repository_free(_repo);
28 29
	_repo = NULL;

30 31 32 33 34 35
	cl_fixture_cleanup("testrepo.git");
}

void test_notes_notesref__config_corenotesref(void)
{
	git_oid oid, note_oid;
36
	const char *default_ref;
37 38 39 40 41 42 43 44

	cl_git_pass(git_signature_now(&_sig, "alice", "alice@example.com"));
	cl_git_pass(git_oid_fromstr(&oid, "8496071c1b46c854b31185ea97743be6a8774479"));

	cl_git_pass(git_repository_config(&_cfg, _repo));

	cl_git_pass(git_config_set_string(_cfg, "core.notesRef", "refs/notes/mydefaultnotesref"));

45
	cl_git_pass(git_note_create(&note_oid, _repo, _sig, _sig, NULL, &oid, "test123test\n", 0));
46 47

	cl_git_pass(git_note_read(&_note, _repo, NULL, &oid));
48
	cl_assert_equal_s("test123test\n", git_note_message(_note));
49 50 51 52 53
	cl_assert(!git_oid_cmp(git_note_oid(_note), &note_oid));

	git_note_free(_note);

	cl_git_pass(git_note_read(&_note, _repo, "refs/notes/mydefaultnotesref", &oid));
54
	cl_assert_equal_s("test123test\n", git_note_message(_note));
55
	cl_assert(!git_oid_cmp(git_note_oid(_note), &note_oid));
56 57

	cl_git_pass(git_note_default_ref(&default_ref, _repo));
58
	cl_assert_equal_s("refs/notes/mydefaultnotesref", default_ref);
59

Ben Straub committed
60
	cl_git_pass(git_config_delete_entry(_cfg, "core.notesRef"));
61 62

	cl_git_pass(git_note_default_ref(&default_ref, _repo));
63
	cl_assert_equal_s(GIT_NOTES_DEFAULT_REF, default_ref);
64
}