summaryrefslogtreecommitdiff
path: root/tests/libgit2/core/useragent.c
blob: a4ece902fd9f85cb40e67f2324ee14b702d6d2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "clar_libgit2.h"
#include "settings.h"

void test_core_useragent__get(void)
{
	const char *custom_name = "super duper git";
	git_str buf = GIT_STR_INIT;

	cl_assert_equal_p(NULL, git_libgit2__user_agent());
	cl_git_pass(git_libgit2_opts(GIT_OPT_SET_USER_AGENT, custom_name));
	cl_assert_equal_s(custom_name, git_libgit2__user_agent());

	cl_git_pass(git_libgit2_opts(GIT_OPT_GET_USER_AGENT, &buf));
	cl_assert_equal_s(custom_name, buf.ptr);

	git_str_dispose(&buf);
}