Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolve fs_resolve_path; allow appending to null from s_append; #43

Merged
merged 1 commit into from
Jun 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/fileutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ char* fs_resolve_path(const char* path) {
char* new_path = NULL;
char* tmp = __str_duplicate(path);
int pos = __str_find_reverse(tmp, '/');

if (pos == -1) {
char* cwd = fs_cwd();
new_path = calloc(strlen(cwd) + 2 + strlen(path), sizeof(char));
snprintf(new_path, strlen(cwd) + 2 + strlen(path), "%s/%s", cwd, path);
free(cwd);
}

while (pos != -1) {
tmp[pos] = '\0';
char* p = realpath(tmp, NULL);
Expand Down
8 changes: 5 additions & 3 deletions src/stringlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ char* s_append(char* s1, const char* s2) {


char* s_append_alt(char* (*s1), const char* s2) {
if ((*s1) == NULL || s2 == NULL)
if (s2 == NULL)
return (*s1);

size_t len = strlen(s2);
char* res = realloc(*s1, strlen(*s1) + len + 1);
size_t len = (*s1) == NULL ? 0 : strlen(*s1);
char* res = realloc(*s1, len + strlen(s2) + 1);
strcat(res, s2);
/* set s1 pointer to the res pointer */
*s1 = res;
Expand All @@ -386,6 +386,8 @@ char* s_append_alt(char* (*s1), const char* s2) {
}

char* s_concat(const char* s1, const char* s2) {
if (s1 == NULL || s2 == NULL)
return NULL;
char* ret = s_duplicate(s1);
return s_append(ret, s2);
}
Expand Down
5 changes: 5 additions & 0 deletions tests/fileutils_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ MU_TEST(test_setup_resolve_paths) {
char* cwd = fs_cwd();
mu_assert_string_eq(cwd, path);
free(path);

path = NULL;
path = fs_resolve_path(""); /* this simulates a relative path without leading . */
mu_assert_string_eq(cwd, path);
free(path);
free(cwd);
}

Expand Down
9 changes: 8 additions & 1 deletion tests/stringlib_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,16 @@ MU_TEST(test_append) {
mu_assert_string_eq("This is a test of the system!", test);
test = s_append(test, NULL); // this returns the same thing passed in
mu_assert_string_eq("This is a test of the system!", test);
mu_assert_null(s_append(NULL, test));
// mu_assert_null(s_append(NULL, test));
free(test);
}

MU_TEST(test_append_alt) {
char* test = NULL;
test = s_append_alt(&test, "Test should no longer be null!");
mu_assert_string_eq("Test should no longer be null!", test);
free(test);
}

/*******************************************************************************
* Test concat
Expand Down Expand Up @@ -672,6 +678,7 @@ MU_TEST_SUITE(test_suite) {

/* append */
MU_RUN_TEST(test_append);
MU_RUN_TEST(test_append_alt);

/* concat */
MU_RUN_TEST(test_concat);
Expand Down