test_load_and_handle_cert.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. '''
  2. Unit tests for the load_and_handle_cert method
  3. '''
  4. import datetime
  5. import os
  6. import sys
  7. import pytest
  8. MODULE_PATH = os.path.realpath(os.path.join(__file__, os.pardir, os.pardir, 'library'))
  9. sys.path.insert(1, MODULE_PATH)
  10. # pylint: disable=import-error,wrong-import-position,missing-docstring
  11. # pylint: disable=invalid-name,redefined-outer-name
  12. import openshift_cert_expiry # noqa: E402
  13. # TODO: More testing on the results of the load_and_handle_cert function
  14. # could be implemented here as well, such as verifying subjects
  15. # match up.
  16. @pytest.fixture(params=['OpenSSLCertificate', 'FakeOpenSSLCertificate'])
  17. def loaded_cert(request, valid_cert):
  18. """ parameterized fixture to provide load_and_handle_cert results
  19. for both OpenSSL and FakeOpenSSL parsed certificates
  20. """
  21. now = datetime.datetime.now()
  22. openshift_cert_expiry.HAS_OPENSSL = request.param == 'OpenSSLCertificate'
  23. # valid_cert['cert_file'] is a `py.path.LocalPath` object and
  24. # provides a read_text() method for reading the file contents.
  25. cert_string = valid_cert['cert_file'].read_text('utf8')
  26. (subject,
  27. expiry_date,
  28. time_remaining,
  29. serial) = openshift_cert_expiry.load_and_handle_cert(cert_string, now)
  30. return {
  31. 'now': now,
  32. 'subject': subject,
  33. 'expiry_date': expiry_date,
  34. 'time_remaining': time_remaining,
  35. 'serial': serial,
  36. }
  37. def test_serial(loaded_cert, valid_cert):
  38. """Params:
  39. * `loaded_cert` comes from the `loaded_cert` fixture in this file
  40. * `valid_cert` comes from the 'valid_cert' fixture in conftest.py
  41. """
  42. valid_cert_serial = valid_cert['cert'].get_serial_number()
  43. assert loaded_cert['serial'] == valid_cert_serial
  44. def test_expiry(loaded_cert):
  45. """Params:
  46. * `loaded_cert` comes from the `loaded_cert` fixture in this file
  47. """
  48. expiry_date = loaded_cert['expiry_date']
  49. time_remaining = loaded_cert['time_remaining']
  50. now = loaded_cert['now']
  51. assert expiry_date == now + time_remaining