Commit 29ef309e by Russell Belfer

Make errors for system and global files consistent

The error codes from failed lookups of system and global files
on Windows were not consistent with the codes returned on other
platforms.  This makes the error detection patterns match and
adds a unit test for the various errors.
parent 4728b55a
...@@ -417,11 +417,17 @@ int git_futils_find_system_file(git_buf *path, const char *filename) ...@@ -417,11 +417,17 @@ int git_futils_find_system_file(git_buf *path, const char *filename)
struct win32_path root; struct win32_path root;
if (win32_expand_path(&root, L"%PROGRAMFILES%\\Git\\etc\\") < 0 || if (win32_expand_path(&root, L"%PROGRAMFILES%\\Git\\etc\\") < 0 ||
win32_find_file(path, &root, filename) < 0) { root.path[0] == L'%') /* i.e. no expansion happened */
giterr_set(GITERR_OS, "Cannot find the system's Program Files directory"); {
giterr_set(GITERR_OS, "Cannot locate the system's Program Files directory");
return -1; return -1;
} }
if (win32_find_file(path, &root, filename) < 0) {
git_buf_clear(path);
return GIT_ENOTFOUND;
}
return 0; return 0;
#else #else
...@@ -442,11 +448,17 @@ int git_futils_find_global_file(git_buf *path, const char *filename) ...@@ -442,11 +448,17 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
struct win32_path root; struct win32_path root;
if (win32_expand_path(&root, L"%USERPROFILE%\\") < 0 || if (win32_expand_path(&root, L"%USERPROFILE%\\") < 0 ||
win32_find_file(path, &root, filename) < 0) { root.path[0] == L'%') /* i.e. no expansion happened */
giterr_set(GITERR_OS, "Failed to lookup the current user's Windows profile"); {
giterr_set(GITERR_OS, "Cannot locate the user's profile directory");
return -1; return -1;
} }
if (win32_find_file(path, &root, filename) < 0) {
git_buf_clear(path);
return GIT_ENOTFOUND;
}
return 0; return 0;
#else #else
const char *home = getenv("HOME"); const char *home = getenv("HOME");
......
...@@ -54,6 +54,7 @@ static int cl_setenv(const char *name, const char *value) ...@@ -54,6 +54,7 @@ static int cl_setenv(const char *name, const char *value)
#ifdef GIT_WIN32 #ifdef GIT_WIN32
static char *env_userprofile = NULL; static char *env_userprofile = NULL;
static char *env_programfiles = NULL;
#else #else
static char *env_home = NULL; static char *env_home = NULL;
#endif #endif
...@@ -62,6 +63,7 @@ void test_core_env__initialize(void) ...@@ -62,6 +63,7 @@ void test_core_env__initialize(void)
{ {
#ifdef GIT_WIN32 #ifdef GIT_WIN32
env_userprofile = cl_getenv("USERPROFILE"); env_userprofile = cl_getenv("USERPROFILE");
env_programfiles = cl_getenv("PROGRAMFILES");
#else #else
env_home = cl_getenv("HOME"); env_home = cl_getenv("HOME");
#endif #endif
...@@ -72,6 +74,8 @@ void test_core_env__cleanup(void) ...@@ -72,6 +74,8 @@ void test_core_env__cleanup(void)
#ifdef GIT_WIN32 #ifdef GIT_WIN32
cl_setenv("USERPROFILE", env_userprofile); cl_setenv("USERPROFILE", env_userprofile);
git__free(env_userprofile); git__free(env_userprofile);
cl_setenv("PROGRAMFILES", env_programfiles);
git__free(env_programfiles);
#else #else
cl_setenv("HOME", env_home); cl_setenv("HOME", env_home);
#endif #endif
...@@ -128,3 +132,34 @@ void test_core_env__0(void) ...@@ -128,3 +132,34 @@ void test_core_env__0(void)
git_buf_free(&path); git_buf_free(&path);
git_buf_free(&found); git_buf_free(&found);
} }
void test_core_env__1(void)
{
git_buf path = GIT_BUF_INIT;
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("USERPROFILE", "doesnotexist"));
#else
cl_git_pass(cl_setenv("HOME", "doesnotexist"));
#endif
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("USERPROFILE", NULL));
#else
cl_git_pass(cl_setenv("HOME", NULL));
#endif
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == -1);
cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("PROGRAMFILES", NULL));
cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == -1);
#endif
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment