From 98c4613e2d79f73d5168582c23e87faebc69787b Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Thu, 22 Mar 2012 13:10:23 -0700 Subject: [PATCH] Migrate remaining status tests to Clar This finishes up the migration of remaining tests from tests/t18-status.c over the tests-clar/status/worktree.c. --- tests-clar/status/worktree.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c index 9ddb7d1bc..b9000bb14 100644 --- a/tests-clar/status/worktree.c +++ b/tests-clar/status/worktree.c @@ -201,6 +201,41 @@ void test_status_worktree__single_nonexistent_file(void) cl_assert(error == GIT_ENOTFOUND); } +/* this test is equivalent to t18-status.c:singlestatus2 */ +void test_status_worktree__single_nonexistent_file_empty_repo(void) +{ + int error; + unsigned int status_flags; + git_repository *repo = cl_git_sandbox_init("empty_standard_repo"); + + error = git_status_file(&status_flags, repo, "nonexistent"); + cl_git_fail(error); + cl_assert(error == GIT_ENOTFOUND); +} + +/* this test is equivalent to t18-status.c:singlestatus3 */ +void test_status_worktree__single_file_empty_repo(void) +{ + unsigned int status_flags; + git_repository *repo = cl_git_sandbox_init("empty_standard_repo"); + + cl_git_mkfile("empty_standard_repo/new_file", "new_file\n"); + + cl_git_pass(git_status_file(&status_flags, repo, "new_file")); + cl_assert(status_flags == GIT_STATUS_WT_NEW); +} + +/* this test is equivalent to t18-status.c:singlestatus4 */ +void test_status_worktree__single_folder(void) +{ + int error; + unsigned int status_flags; + git_repository *repo = cl_git_sandbox_init("status"); + + error = git_status_file(&status_flags, repo, "subdir"); + cl_git_fail(error); +} + void test_status_worktree__ignores(void) {