Files
@ 988ac40d5cec
Branch filter:
Location: gimmecert/functional_tests/test_server.py - annotation
988ac40d5cec
2.3 KiB
text/x-python
GC-15: Implemented scenario for server certificate issuance where user has not initialised the CA hierarchy:
- Added functional test that tests if correct error is shown to user
in case he/she has not initialised the CA hierarchy.
- Introduced new function to check if storage is initialised.
- Added initial simplified server command implementation.
- Added functional test that tests if correct error is shown to user
in case he/she has not initialised the CA hierarchy.
- Introduced new function to check if storage is initialised.
- Added initial simplified server command implementation.
e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d e17474c5ef5d 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec 988ac40d5cec | # -*- coding: utf-8 -*-
#
# Copyright (C) 2018 Branko Majic
#
# This file is part of Gimmecert.
#
# Gimmecert is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# Gimmecert is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# Gimmecert. If not, see <http://www.gnu.org/licenses/>.
#
from .base import run_command
def test_server_command_available_with_help():
# John has finally finished initialising his CA hierarchy. What he
# wants to do now is to issue a server certificate. He starts off
# by having a look at the list of available commands.
stdout, stderr, exit_code = run_command("gimmecert")
# Looking at output, John notices the server command.
assert exit_code == 0
assert stderr == ""
assert "server" in stdout
# He goes ahead and has a look at the server command invocation to
# check what kind of parameters he might need to provide.
stdout, stderr, exit_code = run_command("gimmecert", "server", "-h")
# John can see that the command accepts an entity name, and an
# optional list of DNS subject alternative names.
assert exit_code == 0
assert stderr == ""
assert stdout.startswith("usage: gimmecert server")
assert stdout.split('\n')[0].endswith(" entity_name [dns_name [dns_name ...]]") # First line of help.
def test_server_command_requires_initialised_hierarchy(tmpdir):
# John is about to issue a server certificate. He switches to his
# project directory.
tmpdir.chdir()
# John tries to issue a server certificate.
stdout, stderr, exit_code = run_command("gimmecert", "server", "myserver")
# Unfortunately, John has forgotten to initialise the CA hierarchy
# from within this directory, and is instead presented with an
# error.
assert stdout == ""
assert stderr == "CA hierarchy must be initialised prior to issuing server certificates. Run the gimmecert init command first.\n"
assert exit_code != 0
|