Files
@ 61cbaabb84d2
Branch filter:
Location: gimmecert/tests/test_commands.py
61cbaabb84d2
71.5 KiB
text/x-python
GC-37: Updated documentation to cover key specification options.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 | # -*- 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/>.
#
import argparse
import io
import os
import sys
import cryptography.x509
from cryptography.hazmat.primitives.asymmetric import ec
import gimmecert.commands
import gimmecert.crypto
import pytest
from unittest import mock
from freezegun import freeze_time
def test_init_sets_up_directory_structure(tmpdir):
base_dir = tmpdir.join('.gimmecert')
ca_dir = tmpdir.join('.gimmecert', 'ca')
server_dir = tmpdir.join('.gimmecert', 'server')
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
assert os.path.exists(base_dir.strpath)
assert os.path.exists(ca_dir.strpath)
assert os.path.exists(server_dir.strpath)
def test_init_generates_single_ca_artifact_for_depth_1(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level1.key.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').strpath)
def test_init_generates_three_ca_artifacts_for_depth_3(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 3, ("rsa", 2048))
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level1.key.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level2.key.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level2.cert.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level3.key.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'level3.cert.pem').strpath)
assert os.path.exists(tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').strpath)
def test_init_outputs_full_chain_for_depth_1(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
level1_certificate = tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').read()
full_chain = tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').read()
assert level1_certificate == full_chain
assert full_chain.replace(level1_certificate, '') == ''
def test_init_outputs_full_chain_for_depth_3(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 3, ("rsa", 2048))
level1_certificate = tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').read()
level2_certificate = tmpdir.join('.gimmecert', 'ca', 'level2.cert.pem').read()
level3_certificate = tmpdir.join('.gimmecert', 'ca', 'level3.cert.pem').read()
full_chain = tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').read()
assert level1_certificate in full_chain
assert level2_certificate in full_chain
assert level3_certificate in full_chain
assert full_chain == "%s\n%s\n%s" % (level1_certificate, level2_certificate, level3_certificate)
def test_init_returns_success_if_directory_has_not_been_previously_initialised(tmpdir):
status_code = gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
assert status_code == gimmecert.commands.ExitCode.SUCCESS
def test_init_returns_error_code_if_directory_has_been_previously_initialised(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
status_code = gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
assert status_code == gimmecert.commands.ExitCode.ERROR_ALREADY_INITIALISED
def test_init_does_not_overwrite_artifcats_if_already_initialised(tmpdir):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
level1_private_key_before = tmpdir.join('.gimmecert', 'ca', 'level1.key.pem').read()
level1_certificate_before = tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').read()
full_chain_before = tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').read()
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
level1_private_key_after = tmpdir.join('.gimmecert', 'ca', 'level1.key.pem').read()
level1_certificate_after = tmpdir.join('.gimmecert', 'ca', 'level1.cert.pem').read()
full_chain_after = tmpdir.join('.gimmecert', 'ca', 'chain-full.cert.pem').read()
assert level1_private_key_before == level1_private_key_after
assert level1_certificate_before == level1_certificate_after
assert full_chain_before == full_chain_after
def test_server_returns_status_code(tmpdir):
status_code = gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver', None, None, None)
assert isinstance(status_code, int)
def test_server_reports_error_if_directory_is_not_initialised(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.server(stdout_stream, stderr_stream, tmpdir.strpath, 'myserver', None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert "must be initialised" in stderr
assert stdout == ""
assert status_code == gimmecert.commands.ExitCode.ERROR_NOT_INITIALISED
@pytest.mark.parametrize(
"entity_name, custom_csr_path, strings_expected_in_output, strings_not_expected_in_output",
[
# New server certificate, generate private key.
("myserver", None,
[".gimmecert/server/myserver.key.pem", ".gimmecert/server/myserver.cert.pem"],
[".gimmecert/server/myserver.csr.pem"]),
# New server certificate, use custom CSR.
("myserver", "custom_csr/mycustom.csr.pem",
[".gimmecert/server/myserver.cert.pem", ".gimmecert/server/myserver.csr.pem"],
[".gimmecert/server/myserver.key.pem"]),
]
)
def test_server_reports_success_and_outputs_correct_information(sample_project_directory, key_with_csr,
entity_name, custom_csr_path,
strings_expected_in_output, strings_not_expected_in_output):
"""
Tests if the server command reports success and outputs correct
information for user.
Test is parametrised in order to avoid code duplication.
Tests have been designed to cater to different output depending on
whether the CSR was passed-in or not.
For each variation we have lines we expect in standard output, and
lines which we expect _not_ to be in standard output. E.g. if
private key was generated by Gimmecert, we don't expect to see
information about the CSR and vice-versa.
"""
sample_project_directory.chdir()
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.server(stdout_stream, stderr_stream,
sample_project_directory.strpath, entity_name, None,
custom_csr_path, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
for expected in strings_expected_in_output:
assert expected in stdout
for not_expected in strings_not_expected_in_output:
assert not_expected not in stdout
def test_server_outputs_private_key_to_file_without_csr(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
csr_file = gctmpdir.join('.gimmecert', 'server', 'myserver.csr.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
assert private_key_file.check(file=1)
assert not csr_file.check()
private_key_file_content = private_key_file.read()
assert private_key_file_content.startswith('-----BEGIN RSA PRIVATE KEY')
assert private_key_file_content.endswith('END RSA PRIVATE KEY-----\n')
def test_server_outputs_certificate_to_file(gctmpdir):
certificate_file = gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem')
csr_file = gctmpdir.join('.gimmecert', 'client', 'myclient.csr.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
assert certificate_file.check(file=1)
assert not csr_file.check()
certificate_file_content = certificate_file.read()
assert certificate_file_content.startswith('-----BEGIN CERTIFICATE')
assert certificate_file_content.endswith('END CERTIFICATE-----\n')
def test_server_errors_out_if_certificate_already_issued(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Previous run.
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
existing_private_key = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem').read()
certificate = gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem').read()
# New run.
status_code = gimmecert.commands.server(stdout_stream, stderr_stream, gctmpdir.strpath, 'myserver', None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_CERTIFICATE_ALREADY_ISSUED
assert "already been issued" in stderr
assert "server myserver" in stderr
assert stdout == ""
assert gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem').read() == existing_private_key
assert gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem').read() == certificate
@pytest.mark.parametrize("key_specification, key_specification_representation", [
[("rsa", 2048), "2048-bit RSA"],
[("ecdsa", ec.SECP192R1), "secp192r1 ECDSA"],
])
def test_init_command_stdout_and_stderr_for_single_ca(tmpdir, key_specification, key_specification_representation):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.init(stdout_stream, stderr_stream, tmpdir.strpath, "myproject", 1, key_specification)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert stderr == ""
assert "CA hierarchy initialised using %s keys" % key_specification_representation in stdout
assert ".gimmecert/ca/level1.cert.pem" in stdout
assert ".gimmecert/ca/level1.key.pem" in stdout
assert ".gimmecert/ca/chain-full.cert.pem" in stdout
@pytest.mark.parametrize("key_specification, key_specification_representation", [
[("rsa", 1024), "1024-bit RSA"],
[("ecdsa", ec.SECP192R1), "secp192r1 ECDSA"],
])
def test_init_command_stdout_and_stderr_for_multiple_cas_with_key_specification(tmpdir, key_specification, key_specification_representation):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.init(stdout_stream, stderr_stream, tmpdir.strpath, "myproject", 3, key_specification)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert stderr == ""
assert "CA hierarchy initialised using %s keys" % key_specification_representation in stdout
assert ".gimmecert/ca/level1.cert.pem" in stdout
assert ".gimmecert/ca/level1.key.pem" in stdout
assert ".gimmecert/ca/level2.cert.pem" in stdout
assert ".gimmecert/ca/level2.key.pem" in stdout
assert ".gimmecert/ca/level3.cert.pem" in stdout
assert ".gimmecert/ca/level3.key.pem" in stdout
assert ".gimmecert/ca/chain-full.cert.pem" in stdout
def test_init_command_stdout_and_stderr_if_hierarchy_already_initialised(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, "myproject", 1, ("rsa", 2048))
gimmecert.commands.init(stdout_stream, stderr_stream, tmpdir.strpath, "myproject", 1, ("rsa", 2048))
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert "CA hierarchy has already been initialised" in stderr
assert stdout == ""
def test_help_command_returns_success_status_code():
status_code = gimmecert.commands.help_(io.StringIO(), io.StringIO(), argparse.ArgumentParser())
assert status_code == gimmecert.commands.ExitCode.SUCCESS
def test_help_command_outputs_help():
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
parser = argparse.ArgumentParser(description="This is help")
gimmecert.commands.help_(stdout_stream, stderr_stream, parser)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert stderr == ""
assert "usage" in stdout
assert "--help" in stdout
def test_usage_command_returns_success_status_code():
status_code = gimmecert.commands.usage(io.StringIO(), io.StringIO(), argparse.ArgumentParser())
assert status_code == gimmecert.commands.ExitCode.SUCCESS
def test_usage_command_outputs_usage():
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
parser = argparse.ArgumentParser(description="This is help")
gimmecert.commands.usage(stdout_stream, stderr_stream, parser)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert stderr == ""
assert "usage:" in stdout
assert len(stdout.splitlines()) == 1
def test_client_reports_error_if_directory_is_not_initialised(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, tmpdir.strpath, 'myclient', None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert "must be initialised" in stderr
assert stdout == ""
assert status_code == gimmecert.commands.ExitCode.ERROR_NOT_INITIALISED
def test_client_returns_status_code(tmpdir):
status_code = gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient', None, None)
assert isinstance(status_code, int)
def test_client_reports_success_and_paths_to_generated_artifacts(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, gctmpdir.strpath, 'myclient', None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "certificate issued" in stdout
assert ".gimmecert/client/myclient.cert.pem" in stdout
assert ".gimmecert/client/myclient.key.pem" in stdout
assert ".gimmecert/client/myclient.csr.pem" not in stdout
assert stderr == ""
def test_client_outputs_private_key_to_file_without_csr(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
csr_file = gctmpdir.join('.gimmecert', 'client', 'myclient.csr.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
assert private_key_file.check(file=1)
assert not csr_file.check()
private_key_file_content = private_key_file.read()
assert private_key_file_content.startswith('-----BEGIN RSA PRIVATE KEY')
assert private_key_file_content.endswith('END RSA PRIVATE KEY-----\n')
def test_client_outputs_certificate_to_file(gctmpdir):
certificate_file = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
assert certificate_file.check(file=1)
certificate_file_content = certificate_file.read()
assert certificate_file_content.startswith('-----BEGIN CERTIFICATE-----')
assert certificate_file_content.endswith('-----END CERTIFICATE-----\n')
def test_client_errors_out_if_certificate_already_issued(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Previous run.
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
existing_private_key = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem').read()
certificate = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem').read()
# New run.
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, gctmpdir.strpath, 'myclient', None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_CERTIFICATE_ALREADY_ISSUED
assert "already been issued" in stderr
assert "client myclient" in stderr
assert stdout == ""
assert gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem').read() == existing_private_key
assert gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem').read() == certificate
def test_renew_returns_status_code(tmpdir):
tmpdir.chdir()
status_code = gimmecert.commands.renew(io.StringIO(), io.StringIO(), tmpdir.strpath, 'server', 'myserver', False, None, None, None)
assert isinstance(status_code, int)
def test_renew_reports_error_if_directory_is_not_initialised(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, tmpdir.strpath, 'server', 'myserver', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert "No CA hierarchy has been initialised yet" in stderr
assert stdout == ""
assert status_code == gimmecert.commands.ExitCode.ERROR_NOT_INITIALISED
def test_renew_reports_error_if_no_existing_server_certificate_is_present(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_UNKNOWN_ENTITY
assert "Cannot renew certificate" in stderr
assert "server myserver" in stderr
assert stdout == ""
def test_renew_reports_error_if_no_existing_client_certificate_is_present(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'client', 'myclient', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_UNKNOWN_ENTITY
assert "Cannot renew certificate" in stderr
assert "client myclient" in stderr
assert stdout == ""
def test_renew_reports_success_and_paths_to_server_artifacts(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Renewed certificate for server myserver." in stdout
assert ".gimmecert/server/myserver.key.pem" in stdout
assert ".gimmecert/server/myserver.cert.pem" in stdout
assert ".gimmecert/server/myserver.csr.pem" not in stdout
assert stderr == ""
def test_renew_reports_success_and_paths_to_client_artifacts(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'client', 'myclient', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Renewed certificate for client myclient." in stdout
assert ".gimmecert/client/myclient.key.pem" in stdout
assert ".gimmecert/client/myclient.cert.pem" in stdout
assert ".gimmecert/client/myclient.csr.pem" not in stdout
assert stderr == ""
def test_renew_keeps_server_private_key(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
private_key_after_issuance = private_key_file.read()
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', False, None, None, None)
private_key_after_renewal = private_key_file.read()
assert private_key_after_issuance == private_key_after_renewal
def test_renew_keeps_client_private_key(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
private_key_after_issuance = private_key_file.read()
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'client', 'myclient', False, None, None, None)
private_key_after_renewal = private_key_file.read()
assert private_key_after_issuance == private_key_after_renewal
def test_renew_replaces_server_certificate(gctmpdir):
certificate_file = gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
certificate_after_issuance = certificate_file.read()
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', False, None, None, None)
certificate_after_renewal = certificate_file.read()
assert certificate_after_issuance != certificate_after_renewal
assert certificate_after_renewal.startswith('-----BEGIN CERTIFICATE')
assert certificate_after_renewal.endswith('END CERTIFICATE-----\n')
def test_renew_replaces_client_certificate(gctmpdir):
certificate_file = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
certificate_after_issuance = certificate_file.read()
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'client', 'myclient', False, None, None, None)
certificate_after_renewal = certificate_file.read()
assert certificate_after_issuance != certificate_after_renewal
assert certificate_after_renewal.startswith('-----BEGIN CERTIFICATE')
assert certificate_after_renewal.endswith('END CERTIFICATE-----\n')
def test_renew_reports_success_and_paths_to_server_artifacts_with_new_key(gctmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', True, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Generated new private key and renewed certificate for server myserver." in stdout
assert ".gimmecert/server/myserver.key.pem" in stdout
assert ".gimmecert/server/myserver.cert.pem" in stdout
assert stderr == ""
def test_renew_generates_new_private_key_if_requested(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
private_key_after_issuance = private_key_file.read()
public_key_after_issuance = gimmecert.storage.read_private_key(private_key_file.strpath).public_key()
key_specification_after_issuance = gimmecert.crypto.key_specification_from_public_key(public_key_after_issuance)
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', True, None, None, None)
private_key_after_renewal = private_key_file.read()
public_key_after_renewal = gimmecert.storage.read_private_key(private_key_file.strpath).public_key()
key_specification_after_renewal = gimmecert.crypto.key_specification_from_public_key(public_key_after_renewal)
assert private_key_after_issuance != private_key_after_renewal
assert key_specification_after_issuance == key_specification_after_renewal
def test_status_returns_status_code(tmpdir):
status_code = gimmecert.commands.status(io.StringIO(), io.StringIO(), tmpdir.strpath)
assert isinstance(status_code, int)
def test_status_reports_uninitialised_directory(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_NOT_INITIALISED
assert stderr == ""
assert "CA hierarchy has not been initialised in current directory." in stdout
@pytest.mark.parametrize('ca_key_specification,ca_key_representation', [
(('rsa', 1024), '1024-bit RSA'),
(('rsa', 2048), '2048-bit RSA'),
(('ecdsa', ec.SECP521R1), 'secp521r1 ECDSA'),
])
def test_status_reports_ca_hierarchy_information(tmpdir, ca_key_specification, ca_key_representation):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
with freeze_time('2018-01-01 00:15:00'):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 3, ca_key_specification)
with freeze_time('2018-06-01 00:15:00'):
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stdout_lines = stdout.split("\n")
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
assert "CA hierarchy\n------------\n" in stdout
index_ca_key_algorithm = stdout_lines.index("Default key algorithm: %s" % ca_key_representation) # Should not raise
index_ca_1 = stdout_lines.index("CN=%s Level 1 CA" % tmpdir.basename) # Should not raise
index_ca_2 = stdout_lines.index("CN=%s Level 2 CA" % tmpdir.basename) # Should not raise
index_ca_3 = stdout_lines.index("CN=%s Level 3 CA [END ENTITY ISSUING CA]" % tmpdir.basename) # Should not raise
full_chain = stdout_lines.index("Full certificate chain: .gimmecert/ca/chain-full.cert.pem") # Shold not raise
assert full_chain > index_ca_3 > index_ca_2 > index_ca_1 > index_ca_key_algorithm, "Output ordering for CA section is wrong:\n%s" % stdout
ca_1_validity = stdout_lines[index_ca_1 + 1]
ca_1_certificate_path = stdout_lines[index_ca_1 + 2]
ca_2_validity = stdout_lines[index_ca_2 + 1]
ca_2_certificate_path = stdout_lines[index_ca_2 + 2]
ca_3_validity = stdout_lines[index_ca_3 + 1]
ca_3_certificate_path = stdout_lines[index_ca_3 + 2]
assert ca_1_validity == " Validity: 2018-01-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert ca_1_certificate_path == " Certificate: .gimmecert/ca/level1.cert.pem"
assert ca_2_validity == " Validity: 2018-01-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert ca_2_certificate_path == " Certificate: .gimmecert/ca/level2.cert.pem"
assert ca_3_validity == " Validity: 2018-01-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert ca_3_certificate_path == " Certificate: .gimmecert/ca/level3.cert.pem"
def test_status_reports_server_certificate_information(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
myserver3_csr_file = tmpdir.join('server3.csr.pem')
myserver3_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
myserver3_csr = gimmecert.crypto.generate_csr('blah', myserver3_private_key)
gimmecert.storage.write_csr(myserver3_csr, myserver3_csr_file.strpath)
with freeze_time('2018-01-01 00:15:00'):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 3, ("rsa", 2048))
with freeze_time('2018-02-01 00:15:00'):
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver1', None, None, ("rsa", 1024))
with freeze_time('2018-03-01 00:15:00'):
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver2', ['myservice1.example.com', 'myservice2.example.com'], None, None)
with freeze_time('2018-04-01 00:15:00'):
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver3', None, myserver3_csr_file.strpath, None)
with freeze_time('2018-05-01 00:15:00'):
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver4', None, None, ("ecdsa", ec.SECP256R1))
with freeze_time('2018-06-01 00:15:00'):
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stdout_lines = stdout.split("\n")
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
assert "Server certificates\n-------------------\n" in stdout
assert "No server certificates" not in stdout
index_myserver1 = stdout_lines.index("CN=myserver1") # Should not raise
index_myserver2 = stdout_lines.index("CN=myserver2") # Should not raise
index_myserver3 = stdout_lines.index("CN=myserver3") # Should not raise
index_myserver4 = stdout_lines.index("CN=myserver4") # Should not raise
myserver1_validity = stdout_lines[index_myserver1 + 1]
myserver1_dns = stdout_lines[index_myserver1 + 2]
myserver1_key_algorithm = stdout_lines[index_myserver1 + 3]
myserver1_private_key_path = stdout_lines[index_myserver1 + 4]
myserver1_certificate_path = stdout_lines[index_myserver1 + 5]
myserver2_validity = stdout_lines[index_myserver2 + 1]
myserver2_dns = stdout_lines[index_myserver2 + 2]
myserver2_key_algorithm = stdout_lines[index_myserver2 + 3]
myserver2_private_key_path = stdout_lines[index_myserver2 + 4]
myserver2_certificate_path = stdout_lines[index_myserver2 + 5]
myserver3_validity = stdout_lines[index_myserver3 + 1]
myserver3_dns = stdout_lines[index_myserver3 + 2]
myserver3_key_algorithm = stdout_lines[index_myserver3 + 3]
myserver3_csr_path = stdout_lines[index_myserver3 + 4]
myserver3_certificate_path = stdout_lines[index_myserver3 + 5]
myserver4_validity = stdout_lines[index_myserver4 + 1]
myserver4_dns = stdout_lines[index_myserver4 + 2]
myserver4_key_algorithm = stdout_lines[index_myserver4 + 3]
myserver4_private_key_path = stdout_lines[index_myserver4 + 4]
myserver4_certificate_path = stdout_lines[index_myserver4 + 5]
assert myserver1_validity == " Validity: 2018-02-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myserver1_dns == " DNS: myserver1"
assert myserver1_key_algorithm == " Key algorithm: 1024-bit RSA"
assert myserver1_private_key_path == " Private key: .gimmecert/server/myserver1.key.pem"
assert myserver1_certificate_path == " Certificate: .gimmecert/server/myserver1.cert.pem"
assert myserver2_validity == " Validity: 2018-03-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myserver2_dns == " DNS: myserver2, myservice1.example.com, myservice2.example.com"
assert myserver2_key_algorithm == " Key algorithm: 2048-bit RSA"
assert myserver2_private_key_path == " Private key: .gimmecert/server/myserver2.key.pem"
assert myserver2_certificate_path == " Certificate: .gimmecert/server/myserver2.cert.pem"
assert myserver3_validity == " Validity: 2018-04-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myserver3_dns == " DNS: myserver3"
assert myserver3_key_algorithm == " Key algorithm: 2048-bit RSA"
assert myserver3_csr_path == " CSR: .gimmecert/server/myserver3.csr.pem"
assert myserver3_certificate_path == " Certificate: .gimmecert/server/myserver3.cert.pem"
assert myserver4_validity == " Validity: 2018-05-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myserver4_dns == " DNS: myserver4"
assert myserver4_key_algorithm == " Key algorithm: secp256r1 ECDSA"
assert myserver4_private_key_path == " Private key: .gimmecert/server/myserver4.key.pem"
assert myserver4_certificate_path == " Certificate: .gimmecert/server/myserver4.cert.pem"
def test_status_reports_client_certificate_information(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
myclient3_csr_file = tmpdir.join('client3.csr.pem')
myclient3_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
myclient3_csr = gimmecert.crypto.generate_csr('blah', myclient3_private_key)
gimmecert.storage.write_csr(myclient3_csr, myclient3_csr_file.strpath)
with freeze_time('2018-01-01 00:15:00'):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 3, ("rsa", 2048))
with freeze_time('2018-02-01 00:15:00'):
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient1', None, ("rsa", 1024))
with freeze_time('2018-03-01 00:15:00'):
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient2', None, None)
with freeze_time('2018-04-01 00:15:00'):
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient3', myclient3_csr_file.strpath, None)
with freeze_time('2018-05-01 00:15:00'):
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient4', None, ("ecdsa", ec.SECP384R1))
with freeze_time('2018-06-01 00:15:00'):
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stdout_lines = stdout.split("\n")
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
assert "Client certificates\n-------------------\n" in stdout
assert "No client certificates" not in stdout
index_myclient1 = stdout_lines.index("CN=myclient1") # Should not raise
index_myclient2 = stdout_lines.index("CN=myclient2") # Should not raise
index_myclient3 = stdout_lines.index("CN=myclient3") # Should not raise
index_myclient4 = stdout_lines.index("CN=myclient4") # Should not raise
myclient1_validity = stdout_lines[index_myclient1 + 1]
myclient1_key_algorithm = stdout_lines[index_myclient1 + 2]
myclient1_private_key_path = stdout_lines[index_myclient1 + 3]
myclient1_certificate_path = stdout_lines[index_myclient1 + 4]
myclient2_validity = stdout_lines[index_myclient2 + 1]
myclient2_key_algorithm = stdout_lines[index_myclient2 + 2]
myclient2_private_key_path = stdout_lines[index_myclient2 + 3]
myclient2_certificate_path = stdout_lines[index_myclient2 + 4]
myclient3_validity = stdout_lines[index_myclient3 + 1]
myclient3_key_algorithm = stdout_lines[index_myclient3 + 2]
myclient3_csr_path = stdout_lines[index_myclient3 + 3]
myclient3_certificate_path = stdout_lines[index_myclient3 + 4]
myclient4_validity = stdout_lines[index_myclient4 + 1]
myclient4_key_algorithm = stdout_lines[index_myclient4 + 2]
myclient4_private_key_path = stdout_lines[index_myclient4 + 3]
myclient4_certificate_path = stdout_lines[index_myclient4 + 4]
assert myclient1_validity == " Validity: 2018-02-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myclient1_key_algorithm == " Key algorithm: 1024-bit RSA"
assert myclient1_private_key_path == " Private key: .gimmecert/client/myclient1.key.pem"
assert myclient1_certificate_path == " Certificate: .gimmecert/client/myclient1.cert.pem"
assert myclient2_validity == " Validity: 2018-03-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myclient2_key_algorithm == " Key algorithm: 2048-bit RSA"
assert myclient2_private_key_path == " Private key: .gimmecert/client/myclient2.key.pem"
assert myclient2_certificate_path == " Certificate: .gimmecert/client/myclient2.cert.pem"
assert myclient3_validity == " Validity: 2018-04-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myclient3_key_algorithm == " Key algorithm: 2048-bit RSA"
assert myclient3_csr_path == " CSR: .gimmecert/client/myclient3.csr.pem"
assert myclient3_certificate_path == " Certificate: .gimmecert/client/myclient3.cert.pem"
assert myclient4_validity == " Validity: 2018-05-01 00:00:00 UTC - 2019-01-01 00:15:00 UTC"
assert myclient4_key_algorithm == " Key algorithm: secp384r1 ECDSA"
assert myclient4_private_key_path == " Private key: .gimmecert/client/myclient4.key.pem"
assert myclient4_certificate_path == " Certificate: .gimmecert/client/myclient4.cert.pem"
def test_status_reports_no_server_certificates_were_issued(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Just create some sample data, but no server certificates.
with freeze_time('2018-01-01 00:15:00'):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient1', None, None)
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient2', None, None)
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
assert "Server certificates\n-------------------\n\nNo server certificates have been issued." in stdout, \
"Missing message about no server certificates being issued:\n%s" % stdout
def test_status_reports_no_client_certificates_were_issued(tmpdir):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Just create some sample data, but no client certificates.
with freeze_time('2018-01-01 00:15:00'):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, ("rsa", 2048))
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver1', None, None, None)
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver2', None, None, None)
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
assert "Client certificates\n-------------------\n\nNo client certificates have been issued." in stdout, \
"Missing message about no client certificates being issued:\n%s" % stdout
@pytest.mark.parametrize("subject_dn_line", [
"CN=My Project Level 1 CA [END ENTITY ISSUING CA]",
"CN=myserver",
"CN=myclient",
])
@pytest.mark.parametrize("issuance_date, status_date, validity_status", [
("2018-01-01 00:15:00", "2018-06-01 00:00:00", ""),
("2018-01-01 00:15:00", "2017-01-01 00:15:00", " [NOT VALID YET]"),
("2018-01-01 00:15:00", "2020-01-01 00:15:00", " [EXPIRED]"),
])
def test_certificate_marked_as_not_valid_or_expired_as_appropriate(tmpdir, subject_dn_line, issuance_date, status_date, validity_status):
"""
Tests if various certificates (CA, server, client) are marked and
valid/invalid in terms of validity dates.
The test has been parametrised since the pattern is pretty similar
between these.
"""
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Perform action on our fixed issuance date.
with freeze_time(issuance_date):
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, "My Project", 1, ("rsa", 2048))
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver', None, None, None)
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient', None, None)
# Move to specific date in future/past for different validity checks.
with freeze_time(status_date):
status_code = gimmecert.commands.status(stdout_stream, stderr_stream, tmpdir.strpath)
stdout = stdout_stream.getvalue()
stdout_lines = stdout.split("\n")
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert stderr == ""
index_dn = stdout_lines.index(subject_dn_line) # Should not raise
validity = stdout_lines[index_dn + 1]
assert validity.endswith(validity_status)
def test_client_reports_success_and_paths_to_generated_artifacts_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join('mycustom.csr.pem')
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
custom_csr = gimmecert.crypto.generate_csr('blah', private_key)
gimmecert.storage.write_csr(custom_csr, custom_csr_file.strpath)
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, gctmpdir.strpath, 'myclient', custom_csr_file.strpath, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "certificate issued" in stdout
assert ".gimmecert/client/myclient.cert.pem" in stdout
assert ".gimmecert/client/myclient.csr.pem" in stdout
assert ".gimmecert/client/myclient.key.pem" not in stdout
assert stderr == ""
def test_client_outputs_passed_in_csr_to_file_without_private_key(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
csr_file = gctmpdir.join('.gimmecert', 'client', 'myclient.csr.pem')
custom_csr_file = gctmpdir.join('mycustom.csr.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
custom_csr_file_content = custom_csr_file.read()
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', custom_csr_file.strpath, None)
assert csr_file.check(file=1)
assert not private_key_file.check()
csr_file_content = csr_file.read()
assert csr_file_content == custom_csr_file_content
def test_client_uses_correct_public_key_without_csr(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
certificate_file = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, None)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
private_key_public_numbers = private_key.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
assert certificate_public_numbers == private_key_public_numbers
def test_client_uses_correct_public_key_but_no_naming_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join('customcsr.pem')
certificate_file = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', custom_csr_file.strpath, None)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
csr_public_numbers = csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
assert certificate_public_numbers == csr_public_numbers
assert csr.subject != certificate.subject
def test_server_outputs_passed_in_csr_to_file_without_private_key(gctmpdir):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
csr_file = gctmpdir.join('.gimmecert', 'server', 'myserver.csr.pem')
custom_csr_file = gctmpdir.join('mycustom.csr.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
custom_csr_file_content = custom_csr_file.read()
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
assert csr_file.check(file=1)
assert not private_key_file.check()
csr_file_content = csr_file.read()
assert csr_file_content == custom_csr_file_content
def test_server_uses_correct_public_key_but_no_naming_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join('customcsr.pem')
certificate_file = gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
csr_public_numbers = csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
assert certificate_public_numbers == csr_public_numbers
assert csr.subject != certificate.subject
def test_client_errors_out_if_certificate_already_issued_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join('mycustom.csr.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Previous run.
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', custom_csr_file.strpath, None)
existing_csr = gctmpdir.join('.gimmecert', 'client', 'myclient.csr.pem').read()
certificate = gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem').read()
# New run.
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, gctmpdir.strpath, 'myclient', custom_csr_file.strpath, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_CERTIFICATE_ALREADY_ISSUED
assert "already been issued" in stderr
assert "client myclient" in stderr
assert stdout == ""
assert gctmpdir.join('.gimmecert', 'client', 'myclient.csr.pem').read() == existing_csr
assert gctmpdir.join('.gimmecert', 'client', 'myclient.cert.pem').read() == certificate
def test_server_errors_out_if_certificate_already_issued_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join('mycustom.csr.pem')
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr('mycustomcsr', private_key)
gimmecert.storage.write_csr(csr, custom_csr_file.strpath)
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
# Previous run.
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
existing_csr = gctmpdir.join('.gimmecert', 'server', 'myserver.csr.pem').read()
certificate = gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem').read()
# New run.
status_code = gimmecert.commands.server(stdout_stream, stderr_stream, gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.ERROR_CERTIFICATE_ALREADY_ISSUED
assert "already been issued" in stderr
assert "server myserver" in stderr
assert stdout == ""
assert gctmpdir.join('.gimmecert', 'server', 'myserver.csr.pem').read() == existing_csr
assert gctmpdir.join('.gimmecert', 'server', 'myserver.cert.pem').read() == certificate
def test_renew_reports_success_and_paths_to_server_artifacts_with_csr(gctmpdir):
csr_file = gctmpdir.join("mycustom.csr.pem")
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr("mytest", private_key)
gimmecert.storage.write_csr(csr, csr_file.strpath)
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, csr_file.strpath, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Renewed certificate for server myserver." in stdout
assert ".gimmecert/server/myserver.csr.pem" in stdout
assert ".gimmecert/server/myserver.cert.pem" in stdout
assert ".gimmecert/server/myserver.key.pem" not in stdout
assert stderr == ""
def test_renew_reports_success_and_paths_to_client_artifacts_with_csr(gctmpdir):
csr_file = gctmpdir.join("mycustom.csr.pem")
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr("mytest", private_key)
gimmecert.storage.write_csr(csr, csr_file.strpath)
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', csr_file.strpath, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'client', 'myclient', False, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Renewed certificate for client myclient." in stdout
assert ".gimmecert/client/myclient.csr.pem" in stdout
assert ".gimmecert/client/myclient.cert.pem" in stdout
assert ".gimmecert/client/myclient.key.pem" not in stdout
assert stderr == ""
def test_renew_reports_success_and_paths_to_server_artifacts_with_csr_when_replacing_private_key(gctmpdir):
csr_file = gctmpdir.join("mycustom.csr.pem")
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
csr = gimmecert.crypto.generate_csr("mytest", private_key)
gimmecert.storage.write_csr(csr, csr_file.strpath)
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', False, csr_file.strpath, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Renewed certificate for server myserver." in stdout
assert "removed" in stdout
assert "replaced" in stdout
assert ".gimmecert/server/myserver.csr.pem" in stdout
assert ".gimmecert/server/myserver.cert.pem" in stdout
assert ".gimmecert/server/myserver.key.pem" not in stdout
assert stderr == ""
def test_renew_replaces_server_private_key_with_csr(gctmpdir):
custom_csr_file = gctmpdir.join("mycustom.csr.pem")
csr_file = gctmpdir.join(".gimmecert", "server", "myserver.csr.pem")
certificate_file = gctmpdir.join(".gimmecert", "server", "myserver.cert.pem")
private_key_file = gctmpdir.join(".gimmecert", "server", "myserver.key.pem")
custom_csr_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
custom_csr = gimmecert.crypto.generate_csr("mycustom", custom_csr_private_key)
gimmecert.storage.write_csr(custom_csr, custom_csr_file.strpath)
custom_csr_file_content = custom_csr_file.read()
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
assert private_key_file.check(file=1)
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', False, custom_csr_file.strpath, None, None)
assert csr_file.check(file=1)
csr_file_content = csr_file.read()
csr = gimmecert.storage.read_csr(csr_file.strpath)
csr_public_numbers = csr.public_key().public_numbers()
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
certificate_public_numbers = certificate.public_key().public_numbers()
assert csr_file_content == custom_csr_file_content
assert not private_key_file.check()
assert certificate_public_numbers == csr_public_numbers
def test_renew_raises_exception_if_both_new_private_key_generation_and_csr_are_passed_in(gctmpdir):
custom_csr_file = gctmpdir.join("mycustom.csr.pem")
custom_csr_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
custom_csr = gimmecert.crypto.generate_csr("mycustom", custom_csr_private_key)
gimmecert.storage.write_csr(custom_csr, custom_csr_file.strpath)
with pytest.raises(gimmecert.commands.InvalidCommandInvocation) as e_info:
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', True, custom_csr_file.strpath, None, None)
assert str(e_info.value) == "Only one of the following two parameters should be specified: generate_new_private_key, custom_csr_path."
def test_renew_raises_exception_if_update_dns_names_is_used_for_client_certificate(sample_project_directory):
with pytest.raises(gimmecert.commands.InvalidCommandInvocation) as e_info:
gimmecert.commands.renew(io.StringIO(), io.StringIO(), sample_project_directory.strpath,
'client', 'client-with-privkey-1',
False, None, ["myservice.example.com"], None)
assert str(e_info.value) == "Updating DNS subject alternative names can be done only for server certificates."
def test_renew_reports_success_and_paths_to_server_artifacts_with_private_key_when_replacing_csr(gctmpdir):
custom_csr_file = gctmpdir.join("mycustom.csr.pem")
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
custom_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
custom_csr = gimmecert.crypto.generate_csr("mytest", custom_private_key)
gimmecert.storage.write_csr(custom_csr, custom_csr_file.strpath)
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, gctmpdir.strpath, 'server', 'myserver', True, None, None, None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "Generated new private key and renewed certificate for server myserver." in stdout
assert "removed" in stdout
assert "generated" in stdout
assert ".gimmecert/server/myserver.key.pem" in stdout
assert ".gimmecert/server/myserver.cert.pem" in stdout
assert ".gimmecert/server/myserver.csr.pem" not in stdout
assert stderr == ""
@pytest.mark.parametrize('entity_name,key_or_csr',
[('server-with-privkey-1', 'key'),
('server-with-csr-1', 'csr')])
def test_renew_reports_success_and_paths_to_artifacts_when_renewing_server_certificate_with_dns_names(sample_project_directory, entity_name, key_or_csr):
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream,
sample_project_directory.strpath,
'server', entity_name,
False, None, ["myservice.example.com"], None)
stdout = stdout_stream.getvalue()
stderr = stderr_stream.getvalue()
assert status_code == gimmecert.commands.ExitCode.SUCCESS
assert "DNS subject alternative names have been updated." in stdout
assert ".gimmecert/server/%s.%s.pem" % (entity_name, key_or_csr) in stdout
assert ".gimmecert/server/%s.cert.pem" % entity_name in stdout
assert stderr == ""
def test_renew_replaces_dns_names(gctmpdir):
certificate_file = gctmpdir.join(".gimmecert", "server", "myserver.cert.pem")
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', ['myservice1.local', 'myservice2.local'], None, None)
old_certificate_pem = certificate_file.read()
old_certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
old_subject_alt_name = old_certificate.extensions.get_extension_for_class(cryptography.x509.SubjectAlternativeName).value
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath,
'server', 'myserver',
False, None, ["myservice1.example.com", "myservice2.example.com"], None)
new_certificate_pem = certificate_file.read()
new_certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
new_subject_alt_name = new_certificate.extensions.get_extension_for_class(cryptography.x509.SubjectAlternativeName).value
expected_subject_alt_name = cryptography.x509.SubjectAlternativeName([
cryptography.x509.DNSName(dns_name) for dns_name in ['myserver', 'myservice1.example.com', 'myservice2.example.com']])
assert new_certificate_pem != old_certificate_pem
assert old_subject_alt_name != new_subject_alt_name
assert new_subject_alt_name == expected_subject_alt_name
def test_renew_removes_dns_names(gctmpdir):
certificate_file = gctmpdir.join(".gimmecert", "server", "myserver.cert.pem")
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', ['myservice1.local', 'myservice2.local'], None, None)
old_certificate_pem = certificate_file.read()
old_certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
old_subject_alt_name = old_certificate.extensions.get_extension_for_class(cryptography.x509.SubjectAlternativeName).value
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', False, None, [], None)
new_certificate_pem = certificate_file.read()
new_certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
new_subject_alt_name = new_certificate.extensions.get_extension_for_class(cryptography.x509.SubjectAlternativeName).value
expected_subject_alt_name = cryptography.x509.SubjectAlternativeName([
cryptography.x509.DNSName(dns_name) for dns_name in ['myserver']])
assert new_certificate_pem != old_certificate_pem
assert old_subject_alt_name != new_subject_alt_name
assert new_subject_alt_name == expected_subject_alt_name
def test_renew_replaces_server_csr_with_private_key(gctmpdir):
custom_csr_file = gctmpdir.join("mycustom.csr.pem")
csr_file = gctmpdir.join(".gimmecert", "server", "myserver.csr.pem")
certificate_file = gctmpdir.join(".gimmecert", "server", "myserver.cert.pem")
private_key_file = gctmpdir.join(".gimmecert", "server", "myserver.key.pem")
custom_csr_private_key = gimmecert.crypto.KeyGenerator('rsa', 2048)()
custom_csr = gimmecert.crypto.generate_csr("mycustom", custom_csr_private_key)
gimmecert.storage.write_csr(custom_csr, custom_csr_file.strpath)
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, custom_csr_file.strpath, None)
assert csr_file.check(file=1)
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', True, None, None, None)
assert private_key_file.check(file=1)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
private_key_public_numbers = private_key.public_key().public_numbers()
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
certificate_public_numbers = certificate.public_key().public_numbers()
assert not csr_file.check()
assert certificate_public_numbers == private_key_public_numbers
@mock.patch('gimmecert.utils.read_input')
def test_server_reads_csr_from_stdin(mock_read_input, sample_project_directory, key_with_csr):
entity_name = 'myserver'
stored_csr_file = sample_project_directory.join('.gimmecert', 'server', '%s.csr.pem' % entity_name)
certificate_file = sample_project_directory.join('.gimmecert', 'server', '%s.cert.pem' % entity_name)
# Mock our util for reading input from user.
mock_read_input.return_value = key_with_csr.csr_pem
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.server(stdout_stream, stderr_stream, sample_project_directory.strpath, entity_name, None, '-', None)
assert status_code == 0
# Read stored/generated artefacts.
stored_csr = gimmecert.storage.read_csr(stored_csr_file.strpath)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
custom_csr_public_numbers = key_with_csr.csr.public_key().public_numbers()
stored_csr_public_numbers = stored_csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
mock_read_input.assert_called_once_with(sys.stdin, stderr_stream, "Please enter the CSR")
assert stored_csr_public_numbers == custom_csr_public_numbers
assert certificate_public_numbers == custom_csr_public_numbers
assert certificate.subject != key_with_csr.csr.subject
@mock.patch('gimmecert.utils.read_input')
def test_client_reads_csr_from_stdin(mock_read_input, sample_project_directory, key_with_csr):
entity_name = 'myclient'
stored_csr_file = sample_project_directory.join('.gimmecert', 'client', '%s.csr.pem' % entity_name)
certificate_file = sample_project_directory.join('.gimmecert', 'client', '%s.cert.pem' % entity_name)
# Mock our util for reading input from user.
mock_read_input.return_value = key_with_csr.csr_pem
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.client(stdout_stream, stderr_stream, sample_project_directory.strpath, entity_name, '-', None)
assert status_code == 0
# Read stored/generated artefacts.
stored_csr = gimmecert.storage.read_csr(stored_csr_file.strpath)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
custom_csr_public_numbers = key_with_csr.csr.public_key().public_numbers()
stored_csr_public_numbers = stored_csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
mock_read_input.assert_called_once_with(sys.stdin, stderr_stream, "Please enter the CSR")
assert stored_csr_public_numbers == custom_csr_public_numbers
assert certificate_public_numbers == custom_csr_public_numbers
assert certificate.subject != key_with_csr.csr.subject
@mock.patch('gimmecert.utils.read_input')
def test_renew_server_reads_csr_from_stdin(mock_read_input, sample_project_directory, key_with_csr):
entity_name = 'myserver'
stored_csr_file = sample_project_directory.join('.gimmecert', 'server', '%s.csr.pem' % entity_name)
certificate_file = sample_project_directory.join('.gimmecert', 'server', '%s.cert.pem' % entity_name)
# Generate server certificate that will be renewed.
gimmecert.commands.server(io.StringIO(), io.StringIO(), sample_project_directory.strpath, entity_name, None, None, None)
# Mock our util for reading input from user.
mock_read_input.return_value = key_with_csr.csr_pem
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, sample_project_directory.strpath, "server", entity_name, False, '-', None, None)
assert status_code == 0
# Read stored/generated artefacts.
stored_csr = gimmecert.storage.read_csr(stored_csr_file.strpath)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
custom_csr_public_numbers = key_with_csr.csr.public_key().public_numbers()
stored_csr_public_numbers = stored_csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
mock_read_input.assert_called_once_with(sys.stdin, stderr_stream, "Please enter the CSR")
assert stored_csr_public_numbers == custom_csr_public_numbers
assert certificate_public_numbers == custom_csr_public_numbers
assert certificate.subject != key_with_csr.csr.subject
@mock.patch('gimmecert.utils.read_input')
def test_renew_client_reads_csr_from_stdin(mock_read_input, sample_project_directory, key_with_csr):
entity_name = 'myclient'
stored_csr_file = sample_project_directory.join('.gimmecert', 'client', '%s.csr.pem' % entity_name)
certificate_file = sample_project_directory.join('.gimmecert', 'client', '%s.cert.pem' % entity_name)
# Generate client certificate that will be renewed.
gimmecert.commands.client(io.StringIO(), io.StringIO(), sample_project_directory.strpath, entity_name, None, None)
# Mock our util for reading input from user.
mock_read_input.return_value = key_with_csr.csr_pem
stdout_stream = io.StringIO()
stderr_stream = io.StringIO()
status_code = gimmecert.commands.renew(stdout_stream, stderr_stream, sample_project_directory.strpath, "client", entity_name, False, '-', None, None)
assert status_code == 0
# Read stored/generated artefacts.
stored_csr = gimmecert.storage.read_csr(stored_csr_file.strpath)
certificate = gimmecert.storage.read_certificate(certificate_file.strpath)
custom_csr_public_numbers = key_with_csr.csr.public_key().public_numbers()
stored_csr_public_numbers = stored_csr.public_key().public_numbers()
certificate_public_numbers = certificate.public_key().public_numbers()
mock_read_input.assert_called_once_with(sys.stdin, stderr_stream, "Please enter the CSR")
assert stored_csr_public_numbers == custom_csr_public_numbers
assert certificate_public_numbers == custom_csr_public_numbers
assert certificate.subject != key_with_csr.csr.subject
@pytest.mark.parametrize("key_specification", [
("rsa", 1024),
("rsa", 2048),
("ecdsa", ec.SECP192R1),
("ecdsa", ec.SECP384R1),
])
def test_server_uses_same_private_key_algorithm_and_parameters_as_issuer_when_generating_private_key(tmpdir, key_specification):
private_key_file = tmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, key_specification)
gimmecert.commands.server(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myserver', None, None, None)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
public_key = private_key.public_key()
public_key_specification = gimmecert.crypto.key_specification_from_public_key(public_key)
assert public_key_specification == key_specification
@pytest.mark.parametrize("key_specification", [
("rsa", 1024),
("rsa", 2048),
("ecdsa", ec.SECP192R1),
("ecdsa", ec.SECP384R1),
])
def test_server_uses_passed_in_private_key_algorithm_and_parameters_when_generating_private_key(gctmpdir, key_specification):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, key_specification)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
public_key = private_key.public_key()
public_key_specification = gimmecert.crypto.key_specification_from_public_key(public_key)
assert public_key_specification == key_specification
@pytest.mark.parametrize("key_specification", [
("rsa", 1024),
("rsa", 2048),
("ecdsa", ec.SECP192R1),
("ecdsa", ec.SECP384R1),
])
def test_client_uses_same_private_key_algorithm_and_parameters_as_issuer_when_generating_private_key(tmpdir, key_specification):
private_key_file = tmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
gimmecert.commands.init(io.StringIO(), io.StringIO(), tmpdir.strpath, tmpdir.basename, 1, key_specification)
gimmecert.commands.client(io.StringIO(), io.StringIO(), tmpdir.strpath, 'myclient', None, None)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
public_key = private_key.public_key()
public_key_specification = gimmecert.crypto.key_specification_from_public_key(public_key)
assert public_key_specification == key_specification
assert public_key_specification == key_specification
@pytest.mark.parametrize("key_specification", [
("rsa", 1024),
("rsa", 2048),
("ecdsa", ec.SECP192R1),
("ecdsa", ec.SECP384R1),
])
def test_client_uses_passed_in_private_key_algorithm_and_parameters_when_generating_private_key(gctmpdir, key_specification):
private_key_file = gctmpdir.join('.gimmecert', 'client', 'myclient.key.pem')
gimmecert.commands.client(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myclient', None, key_specification)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
public_key = private_key.public_key()
public_key_specification = gimmecert.crypto.key_specification_from_public_key(public_key)
assert public_key_specification == key_specification
@pytest.mark.parametrize("key_specification", [
("rsa", 1024),
("rsa", 3072),
("ecdsa", ec.SECP192R1),
("ecdsa", ec.SECP384R1),
])
def test_renew_generates_new_private_key_with_passed_in_algorithm_if_requested(gctmpdir, key_specification):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
# Should produce 2048-bit RSA key (default from hierarchy).
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, None)
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', True, None, None, key_specification)
private_key = gimmecert.storage.read_private_key(private_key_file.strpath)
public_key = private_key.public_key()
public_key_specification = gimmecert.crypto.key_specification_from_public_key(public_key)
assert public_key_specification == key_specification
@pytest.mark.parametrize("key_specification", [
('rsa', 1024),
('ecdsa', cryptography.hazmat.primitives.asymmetric.ec.SECP256K1),
])
def test_renew_generates_new_private_key_with_same_key_specification_as_old_one(gctmpdir, key_specification):
private_key_file = gctmpdir.join('.gimmecert', 'server', 'myserver.key.pem')
gimmecert.commands.server(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'myserver', None, None, key_specification)
private_key_after_issuance = private_key_file.read()
gimmecert.commands.renew(io.StringIO(), io.StringIO(), gctmpdir.strpath, 'server', 'myserver', True, None, None, None)
private_key_after_renewal = private_key_file.read()
public_key_after_renewal = gimmecert.storage.read_private_key(private_key_file.strpath).public_key()
key_specification_after_renewal = gimmecert.crypto.key_specification_from_public_key(public_key_after_renewal)
assert private_key_after_issuance != private_key_after_renewal
assert key_specification_after_renewal == key_specification
|