git__getenv: utf-8 aware env reader Introduce `git__getenv` which is a UTF-8 aware `getenv` everywhere. Make `cl_getenv` use this to keep consistent memory handling around return values (free everywhere, as opposed to only some platforms).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
diff --git a/src/remote.c b/src/remote.c
index f31fc15..d31e1b8 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -153,7 +153,7 @@ static int get_check_cert(int *out, git_repository *repo)
* most specific to least specific. */
/* GIT_SSL_NO_VERIFY environment variable */
- if ((val = getenv("GIT_SSL_NO_VERIFY")) != NULL)
+ if ((val = p_getenv("GIT_SSL_NO_VERIFY")) != NULL)
return git_config_parse_bool(out, val);
/* http.sslVerify config setting */
@@ -759,7 +759,7 @@ int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_ur
{
git_config *cfg;
git_config_entry *ce = NULL;
- const char *val = NULL;
+ git_buf val = GIT_BUF_INIT;
int error;
assert(remote);
@@ -789,7 +789,7 @@ int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_ur
return error;
if (ce && ce->value) {
- val = ce->value;
+ *proxy_url = git__strdup(ce->value);
goto found;
}
}
@@ -797,19 +797,28 @@ int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_ur
/* http.proxy config setting */
if ((error = git_config__lookup_entry(&ce, cfg, "http.proxy", false)) < 0)
return error;
+
if (ce && ce->value) {
- val = ce->value;
+ *proxy_url = git__strdup(ce->value);
goto found;
}
/* HTTP_PROXY / HTTPS_PROXY environment variables */
- val = use_ssl ? getenv("HTTPS_PROXY") : getenv("HTTP_PROXY");
+ error = git__getenv(&val, use_ssl ? "HTTPS_PROXY" : "HTTP_PROXY");
-found:
- if (val && val[0]) {
- *proxy_url = git__strdup(val);
- GITERR_CHECK_ALLOC(*proxy_url);
+ if (error < 0) {
+ if (error == GIT_ENOTFOUND) {
+ giterr_clear();
+ error = 0;
+ }
+
+ return error;
}
+
+ *proxy_url = git_buf_detach(&val);
+
+found:
+ GITERR_CHECK_ALLOC(*proxy_url);
git_config_entry_free(ce);
return 0;
diff --git a/src/sysdir.c b/src/sysdir.c
index cd94a8b..2795de4 100644
--- a/src/sysdir.c
+++ b/src/sysdir.c
@@ -29,7 +29,14 @@ static int git_sysdir_guess_global_dirs(git_buf *out)
#ifdef GIT_WIN32
return git_win32__find_global_dirs(out);
#else
- return git_buf_sets(out, getenv("HOME"));
+ int error = git__getenv(out, "HOME");
+
+ if (error == GIT_ENOTFOUND) {
+ giterr_clear();
+ error = 0;
+ }
+
+ return error;
#endif
}
@@ -38,15 +45,22 @@ static int git_sysdir_guess_xdg_dirs(git_buf *out)
#ifdef GIT_WIN32
return git_win32__find_xdg_dirs(out);
#else
- const char *env = NULL;
+ git_buf env = GIT_BUF_INIT;
+ int error;
- if ((env = getenv("XDG_CONFIG_HOME")) != NULL)
- return git_buf_joinpath(out, env, "git");
- else if ((env = getenv("HOME")) != NULL)
- return git_buf_joinpath(out, env, ".config/git");
+ if ((error = git__getenv(&env, "XDG_CONFIG_HOME")) == 0)
+ error = git_buf_joinpath(out, env.ptr, "git");
- git_buf_clear(out);
- return 0;
+ if (error == GIT_ENOTFOUND && (error = git__getenv(&env, "HOME")) == 0)
+ error = git_buf_joinpath(out, env.ptr, ".config/git");
+
+ if (error == GIT_ENOTFOUND) {
+ giterr_clear();
+ error = 0;
+ }
+
+ git_buf_free(&env);
+ return error;
#endif
}
diff --git a/src/util.c b/src/util.c
index c628264..b08b2b8 100644
--- a/src/util.c
+++ b/src/util.c
@@ -10,6 +10,10 @@
#include <ctype.h>
#include "posix.h"
+#ifdef GIT_WIN32
+# include "win32/buffer.h"
+#endif
+
#ifdef _MSC_VER
# include <Shlwapi.h>
#endif
@@ -765,3 +769,47 @@ int git__utf8_iterate(const uint8_t *str, int str_len, int32_t *dst)
*dst = uc;
return length;
}
+
+#ifdef GIT_WIN32
+int git__getenv(git_buf *out, const char *name)
+{
+ wchar_t *wide_name = NULL, *wide_value = NULL;
+ DWORD value_len;
+ int error = -1;
+
+ git_buf_clear(out);
+
+ if (git__utf8_to_16_alloc(&wide_name, name) < 0)
+ return -1;
+
+ if ((value_len = GetEnvironmentVariableW(wide_name, NULL, 0)) > 0) {
+ wide_value = git__malloc(value_len * sizeof(wchar_t));
+ GITERR_CHECK_ALLOC(wide_value);
+
+ value_len = GetEnvironmentVariableW(wide_name, wide_value, value_len);
+ }
+
+ if (value_len)
+ error = git_buf_put_w(out, wide_value, value_len);
+ else if (GetLastError() == ERROR_ENVVAR_NOT_FOUND)
+ error = GIT_ENOTFOUND;
+ else
+ giterr_set(GITERR_OS, "could not read environment variable '%s'", name);
+
+ git__free(wide_name);
+ git__free(wide_value);
+ return error;
+}
+#else
+int git__getenv(git_buf *out, const char *name)
+{
+ const char *val = getenv(name);
+
+ git_buf_clear(out);
+
+ if (!val)
+ return GIT_ENOTFOUND;
+
+ return git_buf_puts(out, val);
+}
+#endif
diff --git a/src/util.h b/src/util.h
index b2abbe6..458b0db 100644
--- a/src/util.h
+++ b/src/util.h
@@ -7,6 +7,9 @@
#ifndef INCLUDE_util_h__
#define INCLUDE_util_h__
+#include "git2/buffer.h"
+#include "buffer.h"
+
#if defined(GIT_MSVC_CRTDBG)
/* Enable MSVC CRTDBG memory leak reporting.
*
@@ -596,4 +599,6 @@ GIT_INLINE(double) git__timer(void)
#endif
+extern int git__getenv(git_buf *out, const char *name);
+
#endif /* INCLUDE_util_h__ */
diff --git a/src/win32/posix_w32.c b/src/win32/posix_w32.c
index 504562b..c909af6 100644
--- a/src/win32/posix_w32.c
+++ b/src/win32/posix_w32.c
@@ -11,6 +11,8 @@
#include "utf-conv.h"
#include "repository.h"
#include "reparse.h"
+#include "global.h"
+#include "buffer.h"
#include <errno.h>
#include <io.h>
#include <fcntl.h>
diff --git a/tests/clar_libgit2.c b/tests/clar_libgit2.c
index dabc47a..f73fc5b 100644
--- a/tests/clar_libgit2.c
+++ b/tests/clar_libgit2.c
@@ -58,31 +58,38 @@ void cl_git_rmfile(const char *filename)
cl_must_pass(p_unlink(filename));
}
-#ifdef GIT_WIN32
-
-#include "win32/utf-conv.h"
-
char *cl_getenv(const char *name)
{
- wchar_t *wide_name, *wide_value;
- char *utf8_value = NULL;
- DWORD value_len;
+ git_buf out = GIT_BUF_INIT;
+ int error = git__getenv(&out, name);
- cl_assert(git__utf8_to_16_alloc(&wide_name, name) >= 0);
+ cl_assert(error >= 0 || error == GIT_ENOTFOUND);
- value_len = GetEnvironmentVariableW(wide_name, NULL, 0);
+ if (error == GIT_ENOTFOUND)
+ return NULL;
- if (value_len) {
- cl_assert(wide_value = git__malloc(value_len * sizeof(wchar_t)));
- cl_assert(GetEnvironmentVariableW(wide_name, wide_value, value_len));
- cl_assert(git__utf16_to_8_alloc(&utf8_value, wide_value) >= 0);
- git__free(wide_value);
+ if (out.size == 0) {
+ char *dup = git__strdup("");
+ cl_assert(dup);
+
+ return dup;
}
- git__free(wide_name);
- return utf8_value;
+ return git_buf_detach(&out);
}
+bool cl_is_env_set(const char *name)
+{
+ char *env = cl_getenv(name);
+ bool result = (env != NULL);
+ git__free(env);
+ return result;
+}
+
+#ifdef GIT_WIN32
+
+#include "win32/utf-conv.h"
+
int cl_setenv(const char *name, const char *value)
{
wchar_t *wide_name, *wide_value = NULL;
@@ -138,10 +145,6 @@ int cl_rename(const char *source, const char *dest)
#else
#include <stdlib.h>
-char *cl_getenv(const char *name)
-{
- return getenv(name);
-}
int cl_setenv(const char *name, const char *value)
{
diff --git a/tests/clar_libgit2.h b/tests/clar_libgit2.h
index 9ab0da4..d7e6353 100644
--- a/tests/clar_libgit2.h
+++ b/tests/clar_libgit2.h
@@ -119,6 +119,7 @@ bool cl_is_chmod_supported(void);
/* Environment wrappers */
char *cl_getenv(const char *name);
+bool cl_is_env_set(const char *name);
int cl_setenv(const char *name, const char *value);
/* Reliable rename */
diff --git a/tests/core/env.c b/tests/core/env.c
index 293b786..ee08258 100644
--- a/tests/core/env.c
+++ b/tests/core/env.c
@@ -30,14 +30,8 @@ static char *home_values[] = {
void test_core_env__initialize(void)
{
int i;
- for (i = 0; i < NUM_VARS; ++i) {
- const char *original = cl_getenv(env_vars[i]);
-#ifdef GIT_WIN32
- env_save[i] = (char *)original;
-#else
- env_save[i] = original ? git__strdup(original) : NULL;
-#endif
- }
+ for (i = 0; i < NUM_VARS; ++i)
+ env_save[i] = cl_getenv(env_vars[i]);
}
static void set_global_search_path_from_env(void)
@@ -77,12 +71,14 @@ static void setenv_and_check(const char *name, const char *value)
char *check;
cl_git_pass(cl_setenv(name, value));
-
check = cl_getenv(name);
- cl_assert_equal_s(value, check);
-#ifdef GIT_WIN32
+
+ if (value)
+ cl_assert_equal_s(value, check);
+ else
+ cl_assert(check == NULL);
+
git__free(check);
-#endif
}
void test_core_env__0(void)
diff --git a/tests/core/ftruncate.c b/tests/core/ftruncate.c
index 21981d6..2f4729f 100644
--- a/tests/core/ftruncate.c
+++ b/tests/core/ftruncate.c
@@ -10,7 +10,7 @@ static int fd = -1;
void test_core_ftruncate__initialize(void)
{
- if (!cl_getenv("GITTEST_INVASIVE_FS_SIZE"))
+ if (!cl_is_env_set("GITTEST_INVASIVE_FS_SIZE"))
cl_skip();
cl_must_pass((fd = p_open(filename, O_CREAT | O_RDWR, 0644)));
diff --git a/tests/filter/stream.c b/tests/filter/stream.c
index 603f194..9228911 100644
--- a/tests/filter/stream.c
+++ b/tests/filter/stream.c
@@ -214,7 +214,7 @@ void test_filter_stream__smallfile(void)
/* optionally write a 500 MB file through the compression stream */
void test_filter_stream__bigfile(void)
{
- if (!cl_getenv("GITTEST_INVASIVE_FS_SIZE"))
+ if (!cl_is_env_set("GITTEST_INVASIVE_FS_SIZE"))
cl_skip();
test_stream(51200);
diff --git a/tests/online/clone.c b/tests/online/clone.c
index e63cf55..225b3ab 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -17,6 +17,15 @@
static git_repository *g_repo;
static git_clone_options g_options;
+static char *_remote_url = NULL;
+static char *_remote_user = NULL;
+static char *_remote_pass = NULL;
+static char *_remote_ssh_pubkey = NULL;
+static char *_remote_ssh_privkey = NULL;
+static char *_remote_ssh_passphrase = NULL;
+static char *_remote_ssh_fingerprint = NULL;
+
+
void test_online_clone__initialize(void)
{
git_checkout_options dummy_opts = GIT_CHECKOUT_OPTIONS_INIT;
@@ -29,6 +38,14 @@ void test_online_clone__initialize(void)
g_options.checkout_opts = dummy_opts;
g_options.checkout_opts.checkout_strategy = GIT_CHECKOUT_SAFE;
g_options.fetch_opts = dummy_fetch;
+
+ _remote_url = cl_getenv("GITTEST_REMOTE_URL");
+ _remote_user = cl_getenv("GITTEST_REMOTE_USER");
+ _remote_pass = cl_getenv("GITTEST_REMOTE_PASS");
+ _remote_ssh_pubkey = cl_getenv("GITTEST_REMOTE_SSH_PUBKEY");
+ _remote_ssh_privkey = cl_getenv("GITTEST_REMOTE_SSH_KEY");
+ _remote_ssh_passphrase = cl_getenv("GITTEST_REMOTE_SSH_PASSPHRASE");
+ _remote_ssh_fingerprint = cl_getenv("GITTEST_REMOTE_SSH_FINGERPRINT");
}
void test_online_clone__cleanup(void)
@@ -38,6 +55,14 @@ void test_online_clone__cleanup(void)
g_repo = NULL;
}
cl_fixture_cleanup("./foo");
+
+ git__free(_remote_url);
+ git__free(_remote_user);
+ git__free(_remote_pass);
+ git__free(_remote_ssh_pubkey);
+ git__free(_remote_ssh_privkey);
+ git__free(_remote_ssh_passphrase);
+ git__free(_remote_ssh_fingerprint);
}
void test_online_clone__network_full(void)
@@ -202,15 +227,12 @@ static int cred_failure_cb(
void test_online_clone__cred_callback_failure_return_code_is_tunnelled(void)
{
- const char *remote_url = cl_getenv("GITTEST_REMOTE_URL");
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
-
- if (!remote_url || !remote_user)
+ if (!_remote_url || !_remote_user)
clar__skip();
g_options.fetch_opts.callbacks.credentials = cred_failure_cb;
- cl_git_fail_with(-172, git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_fail_with(-172, git_clone(&g_repo, _remote_url, "./foo", &g_options));
}
static int cred_count_calls_cb(git_cred **cred, const char *url, const char *user,
@@ -233,17 +255,15 @@ static int cred_count_calls_cb(git_cred **cred, const char *url, const char *use
void test_online_clone__cred_callback_called_again_on_auth_failure(void)
{
- const char *remote_url = cl_getenv("GITTEST_REMOTE_URL");
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
size_t counter = 0;
- if (!remote_url || !remote_user)
+ if (!_remote_url || !_remote_user)
clar__skip();
g_options.fetch_opts.callbacks.credentials = cred_count_calls_cb;
g_options.fetch_opts.callbacks.payload = &counter;
- cl_git_fail_with(GIT_EUSER, git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_fail_with(GIT_EUSER, git_clone(&g_repo, _remote_url, "./foo", &g_options));
cl_assert_equal_i(3, counter);
}
@@ -269,22 +289,22 @@ void test_online_clone__credentials(void)
/* Remote URL environment variable must be set.
* User and password are optional.
*/
- const char *remote_url = cl_getenv("GITTEST_REMOTE_URL");
git_cred_userpass_payload user_pass = {
- cl_getenv("GITTEST_REMOTE_USER"),
- cl_getenv("GITTEST_REMOTE_PASS")
+ _remote_user,
+ _remote_pass
};
- if (!remote_url) return;
+ if (!_remote_url)
+ clar__skip();
- if (cl_getenv("GITTEST_REMOTE_DEFAULT")) {
+ if (cl_is_env_set("GITTEST_REMOTE_DEFAULT")) {
g_options.fetch_opts.callbacks.credentials = cred_default;
} else {
g_options.fetch_opts.callbacks.credentials = git_cred_userpass;
g_options.fetch_opts.callbacks.payload = &user_pass;
}
- cl_git_pass(git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_pass(git_clone(&g_repo, _remote_url, "./foo", &g_options));
git_repository_free(g_repo); g_repo = NULL;
cl_fixture_cleanup("./foo");
}
@@ -335,18 +355,15 @@ void test_online_clone__can_cancel(void)
static int cred_cb(git_cred **cred, const char *url, const char *user_from_url,
unsigned int allowed_types, void *payload)
{
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
- const char *pubkey = cl_getenv("GITTEST_REMOTE_SSH_PUBKEY");
- const char *privkey = cl_getenv("GITTEST_REMOTE_SSH_KEY");
- const char *passphrase = cl_getenv("GITTEST_REMOTE_SSH_PASSPHRASE");
-
GIT_UNUSED(url); GIT_UNUSED(user_from_url); GIT_UNUSED(payload);
if (allowed_types & GIT_CREDTYPE_USERNAME)
- return git_cred_username_new(cred, remote_user);
+ return git_cred_username_new(cred, _remote_user);
if (allowed_types & GIT_CREDTYPE_SSH_KEY)
- return git_cred_ssh_key_new(cred, remote_user, pubkey, privkey, passphrase);
+ return git_cred_ssh_key_new(cred,
+ _remote_user, _remote_ssh_pubkey,
+ _remote_ssh_privkey, _remote_ssh_passphrase);
giterr_set(GITERR_NET, "unexpected cred type");
return -1;
@@ -417,13 +434,10 @@ void test_online_clone__ssh_with_paths(void)
2,
};
- const char *remote_url = cl_getenv("GITTEST_REMOTE_URL");
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
-
#ifndef GIT_SSH
clar__skip();
#endif
- if (!remote_url || !remote_user || strncmp(remote_url, "ssh://", 5) != 0)
+ if (!_remote_url || !_remote_user || strncmp(_remote_url, "ssh://", 5) != 0)
clar__skip();
g_options.remote_cb = custom_remote_ssh_with_paths;
@@ -431,10 +445,10 @@ void test_online_clone__ssh_with_paths(void)
g_options.fetch_opts.callbacks.credentials = cred_cb;
g_options.fetch_opts.callbacks.payload = &arr;
- cl_git_fail(git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_fail(git_clone(&g_repo, _remote_url, "./foo", &g_options));
arr.strings = good_paths;
- cl_git_pass(git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_pass(git_clone(&g_repo, _remote_url, "./foo", &g_options));
}
static int cred_foo_bar(git_cred **cred, const char *url, const char *username_from_url,
@@ -460,15 +474,13 @@ int ssh_certificate_check(git_cert *cert, int valid, const char *host, void *pay
{
git_cert_hostkey *key;
git_oid expected = {{0}}, actual = {{0}};
- const char *expected_str;
GIT_UNUSED(valid);
GIT_UNUSED(payload);
- expected_str = cl_getenv("GITTEST_REMOTE_SSH_FINGERPRINT");
- cl_assert(expected_str);
+ cl_assert(_remote_ssh_fingerprint);
- cl_git_pass(git_oid_fromstrp(&expected, expected_str));
+ cl_git_pass(git_oid_fromstrp(&expected, _remote_ssh_fingerprint));
cl_assert_equal_i(GIT_CERT_HOSTKEY_LIBSSH2, cert->cert_type);
key = (git_cert_hostkey *) cert;
@@ -477,9 +489,9 @@ int ssh_certificate_check(git_cert *cert, int valid, const char *host, void *pay
* the type. Here we abuse the fact that both hashes fit into
* our git_oid type.
*/
- if (strlen(expected_str) == 32 && key->type & GIT_CERT_SSH_MD5) {
+ if (strlen(_remote_ssh_fingerprint) == 32 && key->type & GIT_CERT_SSH_MD5) {
memcpy(&actual.id, key->hash_md5, 16);
- } else if (strlen(expected_str) == 40 && key->type & GIT_CERT_SSH_SHA1) {
+ } else if (strlen(_remote_ssh_fingerprint) == 40 && key->type & GIT_CERT_SSH_SHA1) {
memcpy(&actual, key->hash_sha1, 20);
} else {
cl_fail("Cannot find a usable SSH hash");
@@ -496,7 +508,7 @@ void test_online_clone__ssh_cert(void)
{
g_options.fetch_opts.callbacks.certificate_check = ssh_certificate_check;
- if (!cl_getenv("GITTEST_REMOTE_SSH_FINGERPRINT"))
+ if (!_remote_ssh_fingerprint)
cl_skip();
cl_git_fail_with(GIT_EUSER, git_clone(&g_repo, "ssh://localhost/foo", "./foo", &g_options));
@@ -525,22 +537,17 @@ static char *read_key_file(const char *path)
static int ssh_memory_cred_cb(git_cred **cred, const char *url, const char *user_from_url,
unsigned int allowed_types, void *payload)
{
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
- const char *pubkey_path = cl_getenv("GITTEST_REMOTE_SSH_PUBKEY");
- const char *privkey_path = cl_getenv("GITTEST_REMOTE_SSH_KEY");
- const char *passphrase = cl_getenv("GITTEST_REMOTE_SSH_PASSPHRASE");
-
GIT_UNUSED(url); GIT_UNUSED(user_from_url); GIT_UNUSED(payload);
if (allowed_types & GIT_CREDTYPE_USERNAME)
- return git_cred_username_new(cred, remote_user);
+ return git_cred_username_new(cred, _remote_user);
if (allowed_types & GIT_CREDTYPE_SSH_KEY)
{
- char *pubkey = read_key_file(pubkey_path);
- char *privkey = read_key_file(privkey_path);
+ char *pubkey = read_key_file(_remote_ssh_pubkey);
+ char *privkey = read_key_file(_remote_ssh_privkey);
- int ret = git_cred_ssh_key_memory_new(cred, remote_user, pubkey, privkey, passphrase);
+ int ret = git_cred_ssh_key_memory_new(cred, _remote_user, pubkey, privkey, _remote_ssh_passphrase);
if (privkey)
free(privkey);
@@ -555,19 +562,15 @@ static int ssh_memory_cred_cb(git_cred **cred, const char *url, const char *user
void test_online_clone__ssh_memory_auth(void)
{
- const char *remote_url = cl_getenv("GITTEST_REMOTE_URL");
- const char *remote_user = cl_getenv("GITTEST_REMOTE_USER");
- const char *privkey = cl_getenv("GITTEST_REMOTE_SSH_KEY");
-
#ifndef GIT_SSH_MEMORY_CREDENTIALS
clar__skip();
#endif
- if (!remote_url || !remote_user || !privkey || strncmp(remote_url, "ssh://", 5) != 0)
+ if (!_remote_url || !_remote_user || !_remote_ssh_privkey || strncmp(_remote_url, "ssh://", 5) != 0)
clar__skip();
g_options.fetch_opts.callbacks.credentials = ssh_memory_cred_cb;
- cl_git_pass(git_clone(&g_repo, remote_url, "./foo", &g_options));
+ cl_git_pass(git_clone(&g_repo, _remote_url, "./foo", &g_options));
}
void test_online_clone__url_with_no_path_returns_EINVALIDSPEC(void)
diff --git a/tests/online/push.c b/tests/online/push.c
index 6cd4443..0b0892c 100644
--- a/tests/online/push.c
+++ b/tests/online/push.c
@@ -9,16 +9,16 @@
static git_repository *_repo;
-static char *_remote_url;
+static char *_remote_url = NULL;
-static char *_remote_ssh_key;
-static char *_remote_ssh_pubkey;
-static char *_remote_ssh_passphrase;
+static char *_remote_user = NULL;
+static char *_remote_pass = NULL;
-static char *_remote_user;
-static char *_remote_pass;
+static char *_remote_ssh_key = NULL;
+static char *_remote_ssh_pubkey = NULL;
+static char *_remote_ssh_passphrase = NULL;
-static char *_remote_default;
+static char *_remote_default = NULL;
static int cred_acquire_cb(git_cred **, const char *, const char *, unsigned int, void *);
@@ -355,6 +355,7 @@ void test_online_push__initialize(void)
git_oid_fromstr(&_tag_tag, "eea4f2705eeec2db3813f2430829afce99cd00b5");
/* Remote URL environment variable must be set. User and password are optional. */
+
_remote_url = cl_getenv("GITTEST_REMOTE_URL");
_remote_user = cl_getenv("GITTEST_REMOTE_USER");
_remote_pass = cl_getenv("GITTEST_REMOTE_PASS");
@@ -406,6 +407,14 @@ void test_online_push__cleanup(void)
git_remote_free(_remote);
_remote = NULL;
+ git__free(_remote_url);
+ git__free(_remote_user);
+ git__free(_remote_pass);
+ git__free(_remote_ssh_key);
+ git__free(_remote_ssh_pubkey);
+ git__free(_remote_ssh_passphrase);
+ git__free(_remote_default);
+
/* Freed by cl_git_sandbox_cleanup */
_repo = NULL;
diff --git a/tests/repo/init.c b/tests/repo/init.c
index 525020f..929d741 100644
--- a/tests/repo/init.c
+++ b/tests/repo/init.c
@@ -713,7 +713,7 @@ void test_repo_init__at_filesystem_root(void)
git_buf root = GIT_BUF_INIT;
int root_len;
- if (!cl_getenv("GITTEST_INVASIVE_FS_STRUCTURE"))
+ if (!cl_is_env_set("GITTEST_INVASIVE_FS_STRUCTURE"))
cl_skip();
root_len = git_path_root(sandbox);