mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-10-31 05:54:20 +00:00 
			
		
		
		
	 a1abe66aca
			
		
	
	
		a1abe66aca
		
	
	
	
	
		
			
			Added `struct git_config_entry`: a git_config_entry contains the key, the value, and the config file level from which a config element was found. Added `git_config_open_level`: build a single-level focused config object from a multi-level one. We are now storing `git_config_entry`s in the khash of the config_file
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "clar_libgit2.h"
 | |
| 
 | |
| #include "filebuf.h"
 | |
| #include "fileops.h"
 | |
| #include "posix.h"
 | |
| 
 | |
| #define TEST_CONFIG "git-test-config"
 | |
| 
 | |
| void test_config_stress__initialize(void)
 | |
| {
 | |
| 	git_filebuf file = GIT_FILEBUF_INIT;
 | |
| 
 | |
| 	cl_git_pass(git_filebuf_open(&file, TEST_CONFIG, 0));
 | |
| 
 | |
| 	git_filebuf_printf(&file, "[color]\n\tui = auto\n");
 | |
| 	git_filebuf_printf(&file, "[core]\n\teditor = \n");
 | |
| 
 | |
| 	cl_git_pass(git_filebuf_commit(&file, 0666));
 | |
| }
 | |
| 
 | |
| void test_config_stress__cleanup(void)
 | |
| {
 | |
| 	p_unlink(TEST_CONFIG);
 | |
| }
 | |
| 
 | |
| void test_config_stress__dont_break_on_invalid_input(void)
 | |
| {
 | |
| 	const char *editor, *color;
 | |
| 	git_config *config;
 | |
| 
 | |
| 	cl_assert(git_path_exists(TEST_CONFIG));
 | |
| 	cl_git_pass(git_config_open_ondisk(&config, TEST_CONFIG));
 | |
| 
 | |
| 	cl_git_pass(git_config_get_string(&color, config, "color.ui"));
 | |
| 	cl_git_pass(git_config_get_string(&editor, config, "core.editor"));
 | |
| 
 | |
| 	git_config_free(config);
 | |
| }
 | |
| 
 | |
| void test_config_stress__comments(void)
 | |
| {
 | |
| 	git_config *config;
 | |
| 	const char *str;
 | |
| 
 | |
| 	cl_git_pass(git_config_open_ondisk(&config, cl_fixture("config/config12")));
 | |
| 
 | |
| 	cl_git_pass(git_config_get_string(&str, config, "some.section.other"));
 | |
| 	cl_assert(!strcmp(str, "hello! \" ; ; ; "));
 | |
| 
 | |
| 	cl_git_pass(git_config_get_string(&str, config, "some.section.multi"));
 | |
| 	cl_assert(!strcmp(str, "hi, this is a ; multiline comment # with ;\n special chars and other stuff !@#"));
 | |
| 
 | |
| 	cl_git_pass(git_config_get_string(&str, config, "some.section.back"));
 | |
| 	cl_assert(!strcmp(str, "this is \ba phrase"));
 | |
| 
 | |
| 	git_config_free(config);
 | |
| }
 | |
| 
 | |
| void test_config_stress__escape_subsection_names(void)
 | |
| {
 | |
| 	git_config *config;
 | |
| 	const char *str;
 | |
| 
 | |
| 	cl_assert(git_path_exists("git-test-config"));
 | |
| 	cl_git_pass(git_config_open_ondisk(&config, TEST_CONFIG));
 | |
| 
 | |
| 	cl_git_pass(git_config_set_string(config, "some.sec\\tion.other", "foo"));
 | |
| 	git_config_free(config);
 | |
| 
 | |
| 	cl_git_pass(git_config_open_ondisk(&config, TEST_CONFIG));
 | |
| 
 | |
| 	cl_git_pass(git_config_get_string(&str, config, "some.sec\\tion.other"));
 | |
| 	cl_assert(!strcmp("foo", str));
 | |
| 	git_config_free(config);
 | |
| }
 |