added Tests and removed problems in test-setup
This commit is contained in:
parent
85da1f1c75
commit
a6a4f458e0
|
@ -3,6 +3,7 @@ from unittest.mock import patch, Mock
|
||||||
import arrow
|
import arrow
|
||||||
from cryptography import x509
|
from cryptography import x509
|
||||||
from lemur.plugins.lemur_entrust import plugin
|
from lemur.plugins.lemur_entrust import plugin
|
||||||
|
from freezegun import freeze_time
|
||||||
|
|
||||||
|
|
||||||
def config_mock(*args):
|
def config_mock(*args):
|
||||||
|
@ -20,12 +21,17 @@ def config_mock(*args):
|
||||||
}
|
}
|
||||||
return values[args[0]]
|
return values[args[0]]
|
||||||
|
|
||||||
|
@patch("lemur.plugins.lemur_digicert.plugin.current_app")
|
||||||
|
def test_determine_end_date(mock_current_app):
|
||||||
|
with freeze_time(time_to_freeze=arrow.get(2016, 11, 3).datetime):
|
||||||
|
assert arrow.get(2017, 12, 3).format('YYYY-MM-DD') == plugin.determine_end_date(0) # 1 year + 1 month
|
||||||
|
assert arrow.get(2017, 3, 5).format('YYYY-MM-DD') == plugin.determine_end_date(arrow.get(2017, 3, 5))
|
||||||
|
assert arrow.get(2017, 12, 3).format('YYYY-MM-DD') == plugin.determine_end_date(arrow.get(2020, 5, 7))
|
||||||
|
|
||||||
@patch("lemur.plugins.lemur_entrust.plugin.current_app")
|
@patch("lemur.plugins.lemur_entrust.plugin.current_app")
|
||||||
def test_process_options(mock_current_app, authority):
|
def test_process_options(mock_current_app, authority):
|
||||||
mock_current_app.config.get = Mock(side_effect=config_mock)
|
mock_current_app.config.get = Mock(side_effect=config_mock)
|
||||||
plugin.determine_end_date = Mock(return_value=arrow.get(2020, 10, 7).format('YYYY-MM-DD'))
|
plugin.determine_end_date = Mock(return_value=arrow.get(2017, 11, 5).format('YYYY-MM-DD'))
|
||||||
|
|
||||||
authority.name = "Entrust"
|
authority.name = "Entrust"
|
||||||
names = [u"one.example.com", u"two.example.com", u"three.example.com"]
|
names = [u"one.example.com", u"two.example.com", u"three.example.com"]
|
||||||
options = {
|
options = {
|
||||||
|
@ -35,7 +41,7 @@ def test_process_options(mock_current_app, authority):
|
||||||
"extensions": {"sub_alt_names": {"names": [x509.DNSName(x) for x in names]}},
|
"extensions": {"sub_alt_names": {"names": [x509.DNSName(x) for x in names]}},
|
||||||
"organization": "Example, Inc.",
|
"organization": "Example, Inc.",
|
||||||
"organizational_unit": "Example Org",
|
"organizational_unit": "Example Org",
|
||||||
"validity_end": arrow.get(2020, 10, 7),
|
"validity_end": arrow.utcnow().shift(years=1, months=+1),
|
||||||
"authority": authority,
|
"authority": authority,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +49,7 @@ def test_process_options(mock_current_app, authority):
|
||||||
"signingAlg": "SHA-2",
|
"signingAlg": "SHA-2",
|
||||||
"eku": "SERVER_AND_CLIENT_AUTH",
|
"eku": "SERVER_AND_CLIENT_AUTH",
|
||||||
"certType": "ADVANTAGE_SSL",
|
"certType": "ADVANTAGE_SSL",
|
||||||
"certExpiryDate": arrow.get(2020, 10, 7).format('YYYY-MM-DD'),
|
"certExpiryDate": arrow.get(2017, 11, 5).format('YYYY-MM-DD'),
|
||||||
"tracking": {
|
"tracking": {
|
||||||
"requesterName": mock_current_app.config.get("ENTRUST_NAME"),
|
"requesterName": mock_current_app.config.get("ENTRUST_NAME"),
|
||||||
"requesterEmail": mock_current_app.config.get("ENTRUST_EMAIL"),
|
"requesterEmail": mock_current_app.config.get("ENTRUST_EMAIL"),
|
||||||
|
|
|
@ -32,9 +32,9 @@ LEMUR_ENCRYPTION_KEYS = "o61sBLNBSGtAckngtNrfVNd8xy8Hp9LBGDstTbMbqCY="
|
||||||
|
|
||||||
# List of domain regular expressions that non-admin users can issue
|
# List of domain regular expressions that non-admin users can issue
|
||||||
LEMUR_WHITELISTED_DOMAINS = [
|
LEMUR_WHITELISTED_DOMAINS = [
|
||||||
"^[a-zA-Z0-9-]+\.example\.com$",
|
r"^[a-zA-Z0-9-]+\.example\.com$",
|
||||||
"^[a-zA-Z0-9-]+\.example\.org$",
|
r"^[a-zA-Z0-9-]+\.example\.org$",
|
||||||
"^example\d+\.long\.com$",
|
r"^example\d+\.long\.com$",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Mail Server
|
# Mail Server
|
||||||
|
|
Loading…
Reference in New Issue