| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- from unittest import skipIf
- from unittest.mock import patch
- from django.test import TestCase
- from core.data_backends import url_has_embedded_credentials
- try:
- import dulwich # noqa: F401
- DULWICH_AVAILABLE = True
- except ImportError:
- DULWICH_AVAILABLE = False
- class URLEmbeddedCredentialsTestCase(TestCase):
- def test_url_with_embedded_username(self):
- self.assertTrue(url_has_embedded_credentials('https://myuser@bitbucket.org/workspace/repo.git'))
- def test_url_without_embedded_username(self):
- self.assertFalse(url_has_embedded_credentials('https://bitbucket.org/workspace/repo.git'))
- def test_url_with_username_and_password(self):
- self.assertTrue(url_has_embedded_credentials('https://user:pass@bitbucket.org/workspace/repo.git'))
- def test_various_providers_with_embedded_username(self):
- urls = [
- 'https://user@bitbucket.org/workspace/repo.git',
- 'https://user@github.com/owner/repo.git',
- 'https://deploy-key@gitlab.com/group/project.git',
- 'http://user@internal-git.example.com/repo.git',
- ]
- for url in urls:
- with self.subTest(url=url):
- self.assertTrue(url_has_embedded_credentials(url))
- def test_various_providers_without_embedded_username(self):
- """Various Git providers without embedded usernames."""
- urls = [
- 'https://bitbucket.org/workspace/repo.git',
- 'https://github.com/owner/repo.git',
- 'https://gitlab.com/group/project.git',
- 'http://internal-git.example.com/repo.git',
- ]
- for url in urls:
- with self.subTest(url=url):
- self.assertFalse(url_has_embedded_credentials(url))
- def test_ssh_url(self):
- # git@host:path format doesn't parse as having a username in the traditional sense
- self.assertFalse(url_has_embedded_credentials('git@github.com:owner/repo.git'))
- def test_file_url(self):
- self.assertFalse(url_has_embedded_credentials('file:///path/to/repo'))
- @skipIf(not DULWICH_AVAILABLE, "dulwich is not installed")
- class GitBackendCredentialIntegrationTestCase(TestCase):
- """
- Integration tests that verify GitBackend correctly applies credential logic.
- These tests require dulwich to be installed and verify the full integration
- of the credential handling in GitBackend.fetch().
- """
- def _get_clone_kwargs(self, url, **params):
- from core.data_backends import GitBackend
- backend = GitBackend(url=url, **params)
- with patch('dulwich.porcelain.clone') as mock_clone, \
- patch('dulwich.porcelain.NoneStream'):
- try:
- with backend.fetch():
- pass
- except Exception:
- pass
- if mock_clone.called:
- return mock_clone.call_args.kwargs
- return {}
- def test_url_with_embedded_username_skips_explicit_credentials(self):
- kwargs = self._get_clone_kwargs(
- url='https://myuser@bitbucket.org/workspace/repo.git',
- username='myuser',
- password='my-api-key'
- )
- self.assertEqual(kwargs.get('username'), None)
- self.assertEqual(kwargs.get('password'), None)
- def test_url_without_embedded_username_passes_explicit_credentials(self):
- kwargs = self._get_clone_kwargs(
- url='https://bitbucket.org/workspace/repo.git',
- username='myuser',
- password='my-api-key'
- )
- self.assertEqual(kwargs.get('username'), 'myuser')
- self.assertEqual(kwargs.get('password'), 'my-api-key')
- def test_url_with_embedded_username_no_explicit_credentials(self):
- kwargs = self._get_clone_kwargs(
- url='https://myuser@bitbucket.org/workspace/repo.git'
- )
- self.assertEqual(kwargs.get('username'), None)
- self.assertEqual(kwargs.get('password'), None)
- def test_public_repo_no_credentials(self):
- kwargs = self._get_clone_kwargs(
- url='https://github.com/public/repo.git'
- )
- self.assertEqual(kwargs.get('username'), None)
- self.assertEqual(kwargs.get('password'), None)
|