123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- from __future__ import absolute_import, unicode_literals
- import pytest
- from case import Mock, mock, patch, skip
- from celery.exceptions import SecurityError
- from celery.security.certificate import Certificate, CertStore, FSCertStore
- from . import CERT1, CERT2, KEY1
- from .case import SecurityCase
- class test_Certificate(SecurityCase):
- def test_valid_certificate(self):
- Certificate(CERT1)
- Certificate(CERT2)
- def test_invalid_certificate(self):
- with pytest.raises((SecurityError, TypeError)):
- Certificate(None)
- with pytest.raises(SecurityError):
- Certificate('')
- with pytest.raises(SecurityError):
- Certificate('foo')
- with pytest.raises(SecurityError):
- Certificate(CERT1[:20] + CERT1[21:])
- with pytest.raises(SecurityError):
- Certificate(KEY1)
- @skip.todo(reason='cert expired')
- def test_has_expired(self):
- assert not Certificate(CERT1).has_expired()
- def test_has_expired_mock(self):
- x = Certificate(CERT1)
- x._cert = Mock(name='cert')
- assert x.has_expired() is x._cert.has_expired()
- class test_CertStore(SecurityCase):
- def test_itercerts(self):
- cert1 = Certificate(CERT1)
- cert2 = Certificate(CERT2)
- certstore = CertStore()
- for c in certstore.itercerts():
- assert False
- certstore.add_cert(cert1)
- certstore.add_cert(cert2)
- for c in certstore.itercerts():
- assert c in (cert1, cert2)
- def test_duplicate(self):
- cert1 = Certificate(CERT1)
- certstore = CertStore()
- certstore.add_cert(cert1)
- with pytest.raises(SecurityError):
- certstore.add_cert(cert1)
- class test_FSCertStore(SecurityCase):
- @patch('os.path.isdir')
- @patch('glob.glob')
- @patch('celery.security.certificate.Certificate')
- def test_init(self, Certificate, glob, isdir):
- cert = Certificate.return_value = Mock()
- cert.has_expired.return_value = False
- isdir.return_value = True
- glob.return_value = ['foo.cert']
- with mock.open():
- cert.get_id.return_value = 1
- x = FSCertStore('/var/certs')
- assert 1 in x._certs
- glob.assert_called_with('/var/certs/*')
- # they both end up with the same id
- glob.return_value = ['foo.cert', 'bar.cert']
- with pytest.raises(SecurityError):
- x = FSCertStore('/var/certs')
- glob.return_value = ['foo.cert']
- cert.has_expired.return_value = True
- with pytest.raises(SecurityError):
- x = FSCertStore('/var/certs')
- isdir.return_value = False
- with pytest.raises(SecurityError):
- x = FSCertStore('/var/certs')
|