stress.c 979 Bytes
Newer Older
1
#include "clar_libgit2.h"
2 3 4 5 6 7 8

#include "filebuf.h"
#include "fileops.h"
#include "posix.h"

void test_config_stress__initialize(void)
{
9
	git_filebuf file = GIT_FILEBUF_INIT;
10

11
	cl_git_pass(git_filebuf_open(&file, "git-test-config", 0));
12 13 14 15

	git_filebuf_printf(&file, "[color]\n\tui = auto\n");
	git_filebuf_printf(&file, "[core]\n\teditor = \n");

16
	cl_git_pass(git_filebuf_commit(&file, 0666));
17 18 19 20
}

void test_config_stress__cleanup(void)
{
21
	p_unlink("git-test-config");
22 23 24 25 26 27 28 29
}

void test_config_stress__dont_break_on_invalid_input(void)
{
	const char *editor, *color;
	struct git_config_file *file;
	git_config *config;

30
	cl_git_pass(git_path_exists("git-test-config"));
31
	cl_git_pass(git_config_file__ondisk(&file, "git-test-config"));
32 33 34 35 36 37 38 39
	cl_git_pass(git_config_new(&config));
	cl_git_pass(git_config_add_file(config, file, 0));

	cl_git_pass(git_config_get_string(config, "color.ui", &color));
	cl_git_pass(git_config_get_string(config, "core.editor", &editor));

	git_config_free(config);
}