mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-04 14:08:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "clar_libgit2.h"
 | 
						|
#include "buffer.h"
 | 
						|
#include "refs.h"
 | 
						|
#include "posix.h"
 | 
						|
#include "fileops.h"
 | 
						|
 | 
						|
static git_repository *_repo;
 | 
						|
static git_buf _path;
 | 
						|
 | 
						|
void test_repo_state__initialize(void)
 | 
						|
{
 | 
						|
	_repo = cl_git_sandbox_init("testrepo.git");
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__cleanup(void)
 | 
						|
{
 | 
						|
	cl_git_sandbox_cleanup();
 | 
						|
	git_buf_free(&_path);
 | 
						|
}
 | 
						|
 | 
						|
static void setup_simple_state(const char *filename)
 | 
						|
{
 | 
						|
	cl_git_pass(git_buf_joinpath(&_path, git_repository_path(_repo), filename));
 | 
						|
	git_futils_mkpath2file(git_buf_cstr(&_path), 0777);
 | 
						|
	cl_git_mkfile(git_buf_cstr(&_path), "dummy");
 | 
						|
}
 | 
						|
 | 
						|
static void assert_repo_state(git_repository_state_t state)
 | 
						|
{
 | 
						|
	cl_assert_equal_i(state, git_repository_state(_repo));
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__none_with_HEAD_attached(void)
 | 
						|
{
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_NONE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__none_with_HEAD_detached(void)
 | 
						|
{
 | 
						|
	cl_git_pass(git_repository_detach_head(_repo));
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_NONE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__merge(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_MERGE_HEAD_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_MERGE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__revert(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REVERT_HEAD_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_REVERT);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__cherry_pick(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_CHERRY_PICK_HEAD_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_CHERRY_PICK);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__bisect(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_BISECT_LOG_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_BISECT);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__rebase_interactive(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REBASE_MERGE_INTERACTIVE_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_REBASE_INTERACTIVE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__rebase_merge(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REBASE_MERGE_DIR "whatever");
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_REBASE_MERGE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__rebase(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REBASE_APPLY_REBASING_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_REBASE);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__apply_mailbox(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REBASE_APPLY_APPLYING_FILE);
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_APPLY_MAILBOX);
 | 
						|
}
 | 
						|
 | 
						|
void test_repo_state__apply_mailbox_or_rebase(void)
 | 
						|
{
 | 
						|
	setup_simple_state(GIT_REBASE_APPLY_DIR "whatever");
 | 
						|
	assert_repo_state(GIT_REPOSITORY_STATE_APPLY_MAILBOX_OR_REBASE);
 | 
						|
}
 |