()
| 28 | |
| 29 | |
| 30 | def test_basic_local_request(): |
| 31 | output = lambda_handler_host(VALID_TEST_REQUEST, context=Context, |
| 32 | ca_private_key_password=RSA_CA_PRIVATE_KEY_PASSWORD, |
| 33 | entropy_check=False, |
| 34 | config_file=os.path.join(os.path.dirname(__file__), 'bless-test.cfg')) |
| 35 | print(output) |
| 36 | assert output['certificate'].startswith('ssh-rsa-cert-v01@openssh.com ') |
| 37 | |
| 38 | |
| 39 | def test_basic_local_request_with_multiple_hosts(): |
nothing calls this directly
no test coverage detected