mirror of
				https://github.com/laurivosandi/certidude
				synced 2025-10-31 09:29:13 +00:00 
			
		
		
		
	Attempt to fix CA test
This commit is contained in:
		| @@ -8,7 +8,7 @@ after_success: | ||||
| virtualenv: | ||||
|   system_site_packages: true | ||||
| before_install: | ||||
|   - sudo apt-get install -qq python-configparser python-cffi | ||||
|   - sudo apt-get install -qq python-configparser python-setuptools | ||||
|   - pip install codecov pytest-cov | ||||
| install: | ||||
|   - pip install -r requirements.txt | ||||
|   | ||||
| @@ -1,25 +1,14 @@ | ||||
| from click.testing import CliRunner | ||||
| from certidude.cli import entry_point as cli | ||||
|  | ||||
|  | ||||
| from certidude.wrappers import CertificateAuthorityConfig | ||||
|  | ||||
| runner = CliRunner() | ||||
|  | ||||
| def test_ca_config(): | ||||
|     # Authority setup | ||||
|     with runner.isolated_filesystem(): | ||||
|         result = runner.invoke(cli, ['setup', 'authority', 'xca']) | ||||
|         result = runner.invoke(cli, ['setup', 'authority']) | ||||
|         assert not result.exception | ||||
|  | ||||
|         # Load CA | ||||
|         conf = CertificateAuthorityConfig('./xca/openssl.cnf.example') | ||||
|  | ||||
|         assert conf.ca_list == ['xca'] | ||||
|  | ||||
|         ca = conf.instantiate_authority('xca') | ||||
|  | ||||
|         cert = ca.certificate | ||||
|  | ||||
|         assert cert.serial_number == '0000000000000000000000000000000000000001' | ||||
|         from certidude import authority | ||||
|         assert authority.certificate.serial_number == '0000000000000000000000000000000000000001' | ||||
|         # TODO: Figure out a way to properly test cert.signed, cert.expires, cert.digest, etc | ||||
|   | ||||
		Reference in New Issue
	
	Block a user