summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-05-30 15:21:48 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-06-03 10:10:57 +0100
commit7a6566e391f50845ea81e3dc18d0da69790c31ee (patch)
treee40a94942f6a45f2e22c820ace244b52e2c777cf
parent3939e810493b4dde595f9b523e24ad1b684ba9bb (diff)
downloadlibgit2-7a6566e391f50845ea81e3dc18d0da69790c31ee.tar.gz
online::clone: test a googlesource URL
Google Git (googlesource.com) behaves differently than git proper. Test that we can communicate with it.
-rw-r--r--tests/online/clone.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/online/clone.c b/tests/online/clone.c
index 034d0c2e8..9107956bd 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -11,6 +11,7 @@
#define BB_REPO_URL "https://libgit3@bitbucket.org/libgit2/testgitrepository.git"
#define BB_REPO_URL_WITH_PASS "https://libgit3:libgit3@bitbucket.org/libgit2/testgitrepository.git"
#define BB_REPO_URL_WITH_WRONG_PASS "https://libgit3:wrong@bitbucket.org/libgit2/testgitrepository.git"
+#define GOOGLESOURCE_REPO_URL "https://chromium.googlesource.com/external/github.com/sergi/go-diff"
#define SSH_REPO_URL "ssh://github.com/libgit2/TestGitRepository"
@@ -463,6 +464,13 @@ void test_online_clone__bitbucket_falls_back_to_specified_creds(void)
cl_fixture_cleanup("./foo");
}
+void test_online_clone__googlesource(void)
+{
+ cl_git_pass(git_clone(&g_repo, GOOGLESOURCE_REPO_URL, "./foo", &g_options));
+ git_repository_free(g_repo); g_repo = NULL;
+ cl_fixture_cleanup("./foo");
+}
+
static int cancel_at_half(const git_indexer_progress *stats, void *payload)
{
GIT_UNUSED(payload);