63 lines
2.2 KiB
Diff
63 lines
2.2 KiB
Diff
From c846d973b2797ad52fa6991f86f0794c8373d961 Mon Sep 17 00:00:00 2001
|
|
From: Mathieu Bridon <bochecha@fedoraproject.org>
|
|
Date: Fri, 19 Sep 2014 17:25:38 +0200
|
|
Subject: [PATCH] Remove remote-calling unit tests
|
|
|
|
These can only fail when building in Koji, as the builder can't access
|
|
the Internet.
|
|
---
|
|
test/test_credentials.py | 18 ------------------
|
|
test/test_repository.py | 8 --------
|
|
2 files changed, 26 deletions(-)
|
|
|
|
diff --git a/test/test_credentials.py b/test/test_credentials.py
|
|
index 3bdeb6f..22dbacc 100644
|
|
--- a/test/test_credentials.py
|
|
+++ b/test/test_credentials.py
|
|
@@ -71,23 +71,5 @@ class CredentialCallback(utils.RepoTestCase):
|
|
|
|
self.assertRaises(Exception, remote.fetch)
|
|
|
|
- def test_bad_cred_type(self):
|
|
- def credentials_cb(url, username, allowed):
|
|
- self.assertTrue(allowed & GIT_CREDTYPE_USERPASS_PLAINTEXT)
|
|
- return Keypair("git", "foo.pub", "foo", "sekkrit")
|
|
-
|
|
- remote = self.repo.create_remote("github", "https://github.com/github/github")
|
|
- remote.credentials = credentials_cb
|
|
-
|
|
- self.assertRaises(TypeError, remote.fetch)
|
|
-
|
|
-class CallableCredentialTest(utils.RepoTestCase):
|
|
-
|
|
- def test_user_pass(self):
|
|
- remote = self.repo.create_remote("bb", "https://bitbucket.org/libgit2/testgitrepository.git")
|
|
- remote.credentials = UserPass("libgit2", "libgit2")
|
|
-
|
|
- remote.fetch()
|
|
-
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
diff --git a/test/test_repository.py b/test/test_repository.py
|
|
index 72a5e64..9cbca66 100644
|
|
--- a/test/test_repository.py
|
|
+++ b/test/test_repository.py
|
|
@@ -454,14 +454,6 @@ class CloneRepositoryTest(utils.NoRepoTestCase):
|
|
clone_into(repo, remote)
|
|
self.assertTrue('refs/remotes/origin/master' in repo.listall_references())
|
|
|
|
- def test_clone_with_credentials(self):
|
|
- credentials = pygit2.UserPass("libgit2", "libgit2")
|
|
- repo = clone_repository(
|
|
- "https://bitbucket.org/libgit2/testgitrepository.git",
|
|
- self._temp_dir, credentials=credentials)
|
|
-
|
|
- self.assertFalse(repo.is_empty)
|
|
-
|
|
def test_clone_with_checkout_branch(self):
|
|
# create a test case which isolates the remote
|
|
test_repo = clone_repository('./test/data/testrepo.git',
|
|
--
|
|
2.1.0
|
|
|