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
|
(ns puppetlabs.ssl-utils.core-test
(:require [clojure.java.io :refer [reader]]
[clojure.test :refer :all]
[puppetlabs.ssl-utils.core :refer :all]
[puppetlabs.ssl-utils.simple :as simple]
[puppetlabs.ssl-utils.testutils :refer :all]
[schema.core :as schema])
(:import (clojure.lang ExceptionInfo)
(com.puppetlabs.ssl_utils SSLUtils)
(java.io ByteArrayOutputStream StringReader)
(java.security KeyStore)
(java.security.cert CertPathValidatorException)
java.util.Arrays
(javax.net.ssl SSLContext)
(javax.security.auth.x500 X500Principal)
(org.bouncycastle.asn1 ASN1Primitive DERUTF8String)
(org.bouncycastle.asn1.pkcs Attribute)
(org.joda.time DateTimeUtils)))
(def key-id-type-2-byte-length 8)
(def key-id-type-1-byte-length 20)
(deftest key-test
(testing "generate public & private keys"
(let [key-pair (generate-key-pair)
public (get-public-key key-pair)
private (get-private-key key-pair)]
(is (keypair? key-pair))
(is (public-key? public))
(is (private-key? private))))
(testing "keylength"
(doseq [[test-str keypair expected-length]
[["defaults to 4096" (generate-key-pair) 4096]
["is configurable" (generate-key-pair 1024) 1024]]]
(testing test-str
(let [public-length (-> keypair get-public-key keylength)
private-length (-> keypair get-private-key keylength)]
(is (= expected-length public-length))
(is (= expected-length private-length))))))
(testing "read public key from PEM stream"
(let [public-key (-> "public_keys/localhost.pem"
open-ssl-file
pem->public-key)]
(is (public-key? public-key))))
(testing "write public key to PEM stream"
(let [original-key (get-public-key (generate-key-pair 512))
parsed-key (-> original-key
(write-to-pem-stream key->pem!)
pem->public-key)]
(is (public-key? parsed-key))
(is (= original-key parsed-key))))
(testing "read single private key from PEM stream"
(let [private-key (-> "private_keys/localhost.pem"
open-ssl-file
pem->private-key)]
(is (private-key? private-key)))
(testing "throws exception if multiple keys found"
(let [pem (open-ssl-file "private_keys/multiple_pks.pem")]
(is (thrown-with-msg? IllegalArgumentException
#"The PEM stream must contain exactly one private key"
(pem->private-key pem))))))
(testing "read multiple private keys from PEM stream"
(let [pem (open-ssl-file "private_keys/multiple_pks.pem")
private-keys (pem->private-keys pem)]
(is (= 2 (count private-keys)))
(is (every? private-key? private-keys))))
(testing "write private key to PEM stream"
(let [original-key (get-private-key (generate-key-pair 512))
parsed-key (-> original-key
(write-to-pem-stream key->pem!)
pem->private-key)]
(is (private-key? parsed-key))
(is (= original-key parsed-key))))
(testing "read RSA-only keys from PEM stream"
(let [rsa-only-keys (-> "private_keys/keyonly.pem" open-ssl-file pem->private-keys)]
(is (every? private-key? rsa-only-keys))))
(testing "read EC key from PEM stream"
(let [ec-key (-> "private_keys/eckey.pem" open-ssl-file pem->private-key)]
(is (private-key? ec-key))))
(testing "throw if PEM not a private key"
(is (thrown-with-msg? IllegalArgumentException
#"Expected a KeyPair or PrivateKey"
(-> "certs/ca.pem" open-ssl-file pem->private-key)))))
(deftest name-test
(testing "create X500 name from common name"
(let [x500-name (cn "common name")
common-name (x500-name->CN x500-name)]
(is (valid-x500-name? x500-name))
(is (= "common name" common-name)))))
(deftest cn-from-x500principal-test
(testing "cn extracted from an X500Principal"
(let [x500-principal (X500Principal.
"CN=myagent, OU=Users, OU=Department A, DC=mydomain, DC=com")
cn (get-cn-from-x500-principal x500-principal)]
(is (= "myagent" cn)))))
(deftest cn-from-x509-certificate-test
(testing "cn extracted from an X509Certificate"
(let [subject (cn "foo")
certificate (:cert (simple/gen-self-signed-cert subject
42
{:keylength 512}))]
(is (= subject (get-cn-from-x509-certificate certificate))))))
(deftest subject-from-x509-certificate-test
(testing "subject extracted from an X509Certificate"
(let [subject "CN=myagent,OU=Users,OU=Department A,DC=mydomain,DC=com"
key-pair (generate-key-pair 512)
certificate (sign-certificate subject
(get-private-key key-pair)
42
(generate-not-before-date)
(generate-not-after-date)
subject
(get-public-key key-pair))]
(is (= subject (get-subject-from-x509-certificate certificate))))))
(deftest certification-request-test
(testing "create CSR"
(let [subject (cn "subject")
csr (generate-certificate-request (generate-key-pair) subject)]
(is (certificate-request? csr))
(is (has-subject? csr subject))))
(testing "read CSR from PEM stream"
(let [pem (open-ssl-file "certification_requests/ca_test_client.pem")
csr (pem->csr pem)]
(is (certificate-request? csr))
(is (has-subject? csr "CN=ca_test_client"))))
(testing "throws exception if multiples found"
(is (thrown-with-msg? IllegalArgumentException
#"The PEM stream contains more than one object"
(-> "certs/multiple.pem" open-ssl-file pem->csr))))
(testing "write CSR to PEM stream"
(let [subject (cn "foo")
orig-csr (generate-certificate-request (generate-key-pair) subject)
pem (write-to-pem-stream orig-csr)
parsed-csr (pem->csr pem)]
(is (certificate-request? parsed-csr))
(is (has-subject? parsed-csr subject))
(is (= orig-csr parsed-csr)))))
(deftest signing-certificates
(let [subject (cn "foo")
key-pair (generate-key-pair)
subj-pub (get-public-key key-pair)
issuer (cn "my ca")
issuer-key-pair (generate-key-pair)
issuer-priv (get-private-key issuer-key-pair)
issuer-pub (get-public-key issuer-key-pair)
not-before (generate-not-before-date)
not-after (generate-not-after-date)
serial 42
crl-num 23]
(testing "sign certificate"
(let [certificate (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub)]
(is (certificate? certificate))
(is (has-subject? certificate subject))
(is (issued-by? certificate issuer))
(is (= serial (get-serial certificate)))))
(testing "signing extensions into certificate"
(let [sign-exts [(puppet-node-uid
"ED803750-E3C7-44F5-BB08-41A04433FE2E" false)
(puppet-node-instance-id
"1234567890" false)
(puppet-node-image-name
"my_ami_image" false)
(puppet-node-preshared-key
"342thbjkt82094y0uthhor289jnqthpc2290" false)
(netscape-comment
"Puppet Server Internal Certificate")
(authority-key-identifier
issuer-pub false)
(basic-constraints-for-non-ca true)
(ext-key-usages
["1.3.6.1.5.5.7.3.1" "1.3.6.1.5.5.7.3.2"] true)
(key-usage
#{:key-encipherment :digital-signature} true)
(subject-key-identifier
subj-pub false)
(subject-dns-alt-names
["onefish" "twofish"] false)
(crl-number crl-num)]
expected-exts [{:oid "1.3.6.1.4.1.34380.1.1.1"
:critical false
:value "ED803750-E3C7-44F5-BB08-41A04433FE2E"}
{:oid "1.3.6.1.4.1.34380.1.1.2"
:critical false
:value "1234567890"}
{:oid "1.3.6.1.4.1.34380.1.1.3"
:critical false
:value "my_ami_image"}
{:oid "1.3.6.1.4.1.34380.1.1.4"
:critical false
:value "342thbjkt82094y0uthhor289jnqthpc2290"}
{:oid "2.16.840.1.113730.1.13"
:critical false
:value "Puppet Server Internal Certificate"}
{:oid "2.5.29.19"
:critical true
:value {:is-ca false
:path-len-constraint nil}}
{:oid "2.5.29.37"
:critical true
:value ["1.3.6.1.5.5.7.3.1" "1.3.6.1.5.5.7.3.2"]}
{:oid "2.5.29.15"
:critical true
:value #{:key-encipherment :digital-signature}}
{:oid "2.5.29.17"
:critical false
:value {:dns-name ["onefish" "twofish"]}}
{:oid "2.5.29.14"
:value (pubkey-sha1 subj-pub)
:critical false}
{:oid "2.5.29.35"
:critical false
:value {:issuer nil
:key-identifier (pubkey-sha1 issuer-pub)
:serial-number nil}}
{:oid "2.5.29.20"
:critical false
:value (biginteger crl-num)}]
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub sign-exts)
cert-exts (get-extensions cert-w-exts)]
(is (= (set cert-exts) (set expected-exts)))))
(testing (str "signing for authority key identifier with issuer and"
"serial number")
(let [sign-exts [(authority-key-identifier
issuer serial true)]
expected-ext {:oid "2.5.29.35"
:critical true
:value {:issuer {:directory-name [issuer]}
:key-identifier nil
:serial-number serial}}
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
sign-exts)
actual-ext (get-extension cert-w-exts
"2.5.29.35")]
(is (= actual-ext expected-ext))))
(testing "signing as an intermediate ca with a type 2 subject id and with a certificate"
(let [int-sign-exts (-> (create-ca-extensions (get-public-key issuer-key-pair) (get-public-key key-pair))
(swap-extension (create-truncated-subject-key-identifier(get-public-key key-pair))))
int-ca (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
int-sign-exts)
new-key-pair (generate-key-pair)
cert (sign-certificate subject (get-private-key key-pair) serial not-before not-after
(cn "bar") (get-public-key new-key-pair)
[(authority-key-identifier int-ca)])
int-ca-subject-id (get-extension-value int-ca "2.5.29.14")
cert-auth-id (get-extension-value cert "2.5.29.35")]
(is (= key-id-type-2-byte-length (count int-ca-subject-id)))
(is (= int-ca-subject-id (:key-identifier cert-auth-id)))))
(testing (str "signing for authority key identifier with public key,"
"issuer, and serial number")
(let [sign-exts [(authority-key-identifier
issuer-pub issuer serial false)]
expected-ext {:oid "2.5.29.35"
:critical false
:value {:issuer {:directory-name [issuer]}
:key-identifier (pubkey-sha1 issuer-pub)
:serial-number serial}}
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
sign-exts)
actual-ext (get-extension cert-w-exts
"2.5.29.35")]
(is (= actual-ext expected-ext))))
(testing "signing for non-critical, non-CA basic constraints"
(let [sign-exts [(basic-constraints-for-non-ca false)]
expected-ext {:oid "2.5.29.19"
:critical false
:value {:is-ca false
:path-len-constraint nil}}
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
sign-exts)
actual-ext (get-extension cert-w-exts
"2.5.29.19")]
(is (= actual-ext expected-ext))))
(testing "signing for CA basic constraints with no path constraint"
(let [sign-exts [(basic-constraints-for-ca)]
expected-ext {:oid "2.5.29.19"
:critical true
:value {:is-ca true
:path-len-constraint nil}}
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
sign-exts)
actual-ext (get-extension cert-w-exts
"2.5.29.19")]
(is (= actual-ext expected-ext))))
(testing "signing for CA basic constraints with a path constraint"
(let [max-path-len (Integer/valueOf 9)
sign-exts [(basic-constraints-for-ca max-path-len)]
expected-ext {:oid "2.5.29.19"
:critical true
:value {:is-ca true
:path-len-constraint max-path-len}}
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub
sign-exts)
actual-ext (get-extension cert-w-exts
"2.5.29.19")]
(is (= actual-ext expected-ext))))
(testing "signing for CA with auth id from public key"
(let [extensions (create-ca-extensions issuer-pub subj-pub)
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub extensions)
expected-ext {:oid authority-key-identifier-oid
:critical false
:value {:issuer nil
:key-identifier (pubkey-sha1 issuer-pub)
:serial-number nil}}
actual-ext (get-extension cert-w-exts
authority-key-identifier-oid)]
(is (= actual-ext expected-ext))))
(testing "signing for CA with auth id from issuer and serial"
(let [extensions (create-ca-extensions issuer serial subj-pub)
cert-w-exts (sign-certificate issuer issuer-priv serial not-before
not-after subject subj-pub extensions)
expected-ext {:oid authority-key-identifier-oid
:critical false
:value {:issuer {:directory-name [issuer]}
:key-identifier nil
:serial-number serial}}
actual-ext (get-extension cert-w-exts
authority-key-identifier-oid)]
(is (= actual-ext expected-ext))))))
(deftest certificate-test
(testing "read certificates from PEM stream"
(let [pem (open-ssl-file "certs/multiple.pem")
certs (pem->certs pem)]
(is (= 2 (count certs)))
(doseq [[actual expected] [[(first certs)
{:subject-name "CN=Puppet CA: explosivo"
:issuer-name "CN=Puppet CA: explosivo"
:serial 1
:version 3}]
[(second certs)
{:subject-name "CN=localhost"
:issuer-name "CN=Puppet CA: explosivo"
:serial 3
:version 3}]]]
(is (certificate? actual))
(is (has-subject? actual (expected :subject-name)))
(is (issued-by? actual (expected :issuer-name)))
(is (= (expected :serial) (get-serial actual)))
(is (= (expected :version) (.getVersion actual))))))
(testing "read CA certificate from PEM stream"
(testing "with an empty reader"
(let [bundle-pem (StringReader. "")
keypair-pem (open-ssl-file "ca/ca_key.pem")]
(is (thrown-with-msg? IllegalArgumentException
#"The certificate PEM stream must contain at least 1 certificate"
(pem->ca-cert bundle-pem keypair-pem)))))
(testing "with a single certificate that matches the public key"
(let [bundle-pem (open-ssl-file "certs/ca.pem")
keypair-pem (open-ssl-file "ca/ca_key.pem")]
(is (certificate? (pem->ca-cert bundle-pem keypair-pem)))))
(testing "can extract the public key for validation if only given a private key"
(let [bundle-pem (open-ssl-file "certs/ca.pem")
key-pem (open-ssl-file "ca/ca_key_pkcs8.pem")]
(is (certificate? (pem->ca-cert bundle-pem key-pem)))))
(testing "with a certificate chain whose first cert matches the public key"
(let [bundle-pem (open-ssl-file "certs/multiple.pem")
keypair-pem (open-ssl-file "ca/ca_key.pem")]
(is (certificate? (pem->ca-cert bundle-pem keypair-pem)))))
(testing "with a certificate chain whose second cert matches the public key"
(let [bundle-pem (open-ssl-file "certs/multiple_reverse.pem")
keypair-pem (open-ssl-file "ca/ca_key.pem")]
(is (certificate? (pem->ca-cert bundle-pem keypair-pem)))))
(testing "with a single certificate that doesn't match the public key"
(let [bundle-pem (open-ssl-file "certs/ca.pem")
keypair-pem (open-ssl-file "private_keys/localhost.pem")]
(is (thrown-with-msg? IllegalArgumentException
#"The certificate chain does not contain a certificate that matches the expected public key"
(pem->ca-cert bundle-pem keypair-pem))))))
(testing "write certificate to PEM stream"
(let [subject (cn "foo")
key-pair (generate-key-pair 512)
subj-pub (get-public-key key-pair)
issuer (cn "my ca")
issuer-key (get-private-key (generate-key-pair))
serial 42
not-before (generate-not-before-date)
not-after (generate-not-after-date)
orig-cert (sign-certificate issuer issuer-key serial not-before
not-after subject subj-pub)
pem (write-to-pem-stream orig-cert cert->pem!)
parsed-cert (pem->cert pem)]
(is (certificate? parsed-cert))
(is (has-subject? parsed-cert subject))
(is (issued-by? parsed-cert issuer))
(is (= serial (get-serial parsed-cert)))
(is (= orig-cert parsed-cert)))))
(deftest crl-with-type-2-auth-id
(let [key-pair (generate-key-pair)
public-key (get-public-key key-pair)
private-key (get-private-key key-pair)
cert-key-pair (generate-key-pair)
issuer-name (cn "Puppet CA: localhost")
not-before (generate-not-before-date)
not-after (generate-not-after-date)
extensions [(create-truncated-authority-key-identifier public-key)]
_ca (sign-certificate
issuer-name private-key
1 not-before not-after
issuer-name public-key
(create-ca-extensions issuer-name 1 public-key))
crl (generate-crl (X500Principal. issuer-name) private-key public-key
not-before not-after (biginteger 0) extensions)
cert (sign-certificate issuer-name private-key 2 not-before not-after
(cn "foo") (get-public-key cert-key-pair))
updated-crl (revoke crl private-key public-key (get-serial cert))]
(testing "The updated-crl is unchanged from the original crl"
(is (= key-id-type-2-byte-length (-> (get-extension-value crl authority-key-identifier-oid)
(:key-identifier)
(count))))
(is (= (get-extension crl authority-key-identifier-oid)
(get-extension updated-crl authority-key-identifier-oid))))))
(deftest certificate-revocation-list
(let [key-pair (generate-key-pair 512)
public-key (get-public-key key-pair)
private-key (get-private-key key-pair)
issuer-name (cn "Puppet CA: localhost")
not-before (generate-not-before-date)
not-after (generate-not-after-date)
cert (sign-certificate
issuer-name private-key
1 not-before not-after
issuer-name public-key
(create-ca-extensions issuer-name 1 public-key))
crl (generate-crl (X500Principal. issuer-name)
private-key public-key)]
(testing "create CRL"
(is (= key-id-type-1-byte-length (-> (get-extension-value crl authority-key-identifier-oid)
(:key-identifier)
(count))))
(is (certificate-revocation-list? crl))
(is (issued-by? crl issuer-name))
(is (nil? (.verify crl public-key)))
(testing "AuthorityKeyIdentifier and CRLNumber extensions are included"
(is (= #{{:oid "2.5.29.35"
:critical false
:value {:issuer nil
:key-identifier (pubkey-sha1 public-key)
:serial-number nil}}
{:oid "2.5.29.20"
:critical false
:value BigInteger/ZERO}}
(set (get-extensions crl))))))
(testing "read CRL from PEM stream"
(let [parsed-crl (-> "ca_crl.pem" open-ssl-file pem->crl)]
(is (certificate-revocation-list? parsed-crl))
(is (issued-by? parsed-crl "CN=Puppet CA: localhost"))))
(testing "write CRL to PEM stream"
(let [parsed-crl (-> crl (write-to-pem-stream crl->pem!) pem->crl)]
(is (certificate-revocation-list? parsed-crl))
(is (issued-by? parsed-crl issuer-name))
(is (= crl parsed-crl))))
(testing "read & write multiple CRLs from PEM stream"
(let [parsed-crls (-> (open-ssl-file "ca_crl_multi.pem")
pem->crls
(write-to-pem-stream objs->pem!)
pem->crls)]
(is (certificate-revocation-list? (first parsed-crls)))
(is (issued-by? (first parsed-crls)
(str "OU=Server Operations,O=Example Org\\, LLC,"
"1.2.840.113549.1.9.1="
"#161074657374406578616d706c652e6f7267,"
"CN=Intermediate CA (master-ca)")))
(is (certificate-revocation-list? (second parsed-crls)))
(is (issued-by? (second parsed-crls)
"CN=Puppet CA: localhost"))))
(testing "read CA CRL from PEM stream"
(let [leaf-name-string "CN=Intermediate CA (master-ca)"
leaf-name (cn leaf-name-string)
leaf-keypair (generate-key-pair)
leaf-private-key (get-private-key leaf-keypair)
leaf-public-key (get-public-key leaf-keypair)
serial 42
not-before (generate-not-before-date)
not-after (generate-not-after-date)
leaf-cert (sign-certificate issuer-name private-key serial not-before
not-after leaf-name leaf-public-key
(create-ca-extensions leaf-name serial leaf-public-key))
leaf-crl (generate-crl (X500Principal. leaf-name)
leaf-private-key leaf-public-key)]
(testing "when the ca crl is first"
(let [crl-chain (write-to-pem-stream [leaf-crl crl] objs->pem!)
ca-crl (pem->ca-crl crl-chain leaf-cert)]
(is (certificate-revocation-list? ca-crl))
(is (issued-by? ca-crl leaf-name))))
(testing "when the ca crl isn't first"
(let [crl-chain (write-to-pem-stream [crl leaf-crl] objs->pem!)
ca-crl (pem->ca-crl crl-chain leaf-cert)]
(is (certificate-revocation-list? ca-crl))
(is (issued-by? ca-crl leaf-name))))
(testing "errors when the crl chain is empty"
(let [crl-chain (StringReader. "")]
(is (thrown-with-msg?
IllegalArgumentException
#"The CRL reader does not contain a CRL matching.*"
(pem->ca-crl crl-chain leaf-cert)))))))
(testing "revoking a certificate"
(let [cert (-> "certs/cert_with_exts.pem" open-ssl-file pem->cert)]
(is (= 0 (get-crl-number crl)))
(is (false? (revoked? crl cert)))
;; We need to advance the value of DateTime.now() so it's not the
;; same value that was used when generating the CRL, otherwise it
;; will look like revoke didn't properly advance the dates.
;; This is a consequence of the test generating the CRL and revoking
;; a certificate before the value of DateTime.now() has changed.
(DateTimeUtils/setCurrentMillisOffset 9999)
(let [updated-crl (revoke crl private-key public-key (get-serial cert))]
(testing "certificate is revoked"
(is (true? (revoked? updated-crl cert))))
(testing "CRLNumber extension value is incremented"
(is (= 1 (get-crl-number updated-crl))))
(testing "dates are advanced"
(is (.after (.getThisUpdate updated-crl) (.getThisUpdate crl)))
(is (.after (.getNextUpdate updated-crl) (.getNextUpdate crl))))
(testing "issuer hasn't changed"
(is (= (.getIssuerX500Principal crl)
(.getIssuerX500Principal updated-crl))))
(testing "AuthorityKeyIdentifier extension hasn't changed"
(is (= (get-extension crl authority-key-identifier-oid)
(get-extension updated-crl authority-key-identifier-oid)))))))
(testing "Revoking multiple certificates"
(let [cert2 (-> "certs/cert_with_exts.pem" open-ssl-file pem->cert)
serials [(get-serial cert) (get-serial cert2)]]
(is (not (revoked? crl cert)))
(is (not (revoked? crl cert2)))
(let [updated-crl (revoke-multiple crl private-key public-key serials)]
(testing "certificates are revoked"
(is (revoked? updated-crl cert))
(is (revoked? updated-crl cert2))))))))
(deftest validate-cert-chain-and-crls-test
(testing "validate cert chain against CRLs"
(let [single-cert-chain (-> "crl_validation/1-cert-chain.pem" open-ssl-file pem->certs)
single-crl-chain (-> "crl_validation/1-crl-chain.pem" open-ssl-file pem->crls)
cert-chain (-> "crl_validation/3-cert-chain.pem" open-ssl-file pem->certs)
crl-chain (-> "crl_validation/3-crl-chain.pem" open-ssl-file pem->crls)
other-crl-chain (-> "crl_validation/other-3-crl-chain.pem" open-ssl-file pem->crls)
crl-chain-missing-crls (-> "crl_validation/2-crl-chain.pem" open-ssl-file pem->crls)
crl-chain-extra-crls (-> "crl_validation/4-crl-chain.pem" open-ssl-file pem->crls)
cert-with-expired-crl (-> "crl_validation/cert-with-expired-crl.pem" open-ssl-file pem->certs)
expired-crl (-> "crl_validation/expired-crl.pem" open-ssl-file pem->crls)
cert-with-not-valid-crl (-> "crl_validation/cert-with-not-valid-crl.pem" open-ssl-file pem->certs)
not-yet-valid-crl (-> "crl_validation/not-yet-valid-crl.pem" open-ssl-file pem->crls)
cert-chain-with-crl-bad-sig (-> "crl_validation/cert-with-crl-bad-sig.pem" open-ssl-file pem->certs)
crl-chain-bad-signature (-> "crl_validation/crl-with-bad-signature.pem" open-ssl-file pem->crls)
cert-chain-with-revoked-cert (-> "crl_validation/cert-chain-with-revoked-cert.pem" open-ssl-file pem->certs)
crl-chain-cert-revoked (-> "crl_validation/crl-chain-with-cert-revoked.pem" open-ssl-file pem->crls)
missing-crls-error-message (if (SSLUtils/isFIPS) #"No CRLs found for issuer*"
#"Could not determine revocation status")
invalid-crls-error-message (if (SSLUtils/isFIPS) #"Cannot verify CRL."
#"Could not determine revocation status")
revoked-cert-error-message (if (SSLUtils/isFIPS) #"Certificate revocation after*"
#"Certificate has been revoked*")]
(testing "successful with single-cert chain and CRL"
(is (nil? (validate-cert-chain single-cert-chain single-crl-chain))))
(testing "successful when all certs have an associated CRL"
(is (nil? (validate-cert-chain cert-chain crl-chain))))
(testing "successful with extra CRLs"
(is (nil? (validate-cert-chain cert-chain crl-chain-extra-crls))))
(testing "fails with missing CRLs"
(is (thrown-with-msg? CertPathValidatorException
missing-crls-error-message
(validate-cert-chain cert-chain crl-chain-missing-crls))))
(testing "fails with totally unrelated CRLs"
(is (thrown-with-msg? CertPathValidatorException
invalid-crls-error-message
(validate-cert-chain cert-chain other-crl-chain))))
(testing "fails with expired CRLs"
(is (thrown-with-msg? CertPathValidatorException
missing-crls-error-message
(validate-cert-chain cert-with-expired-crl expired-crl))))
(testing "fails with not-yet-valid CRLs"
(is (thrown-with-msg? CertPathValidatorException
missing-crls-error-message
(validate-cert-chain cert-with-not-valid-crl not-yet-valid-crl))))
(testing "CRLs with invalid signatures (aka not signed by their issuer) are rejected"
(is (thrown-with-msg? CertPathValidatorException
invalid-crls-error-message
(validate-cert-chain cert-chain-with-crl-bad-sig crl-chain-bad-signature))))
(testing "rejected when cert in chain has been revoked"
(is (thrown-with-msg? CertPathValidatorException
revoked-cert-error-message
(validate-cert-chain cert-chain-with-revoked-cert crl-chain-cert-revoked)))))))
(defn- encoded-content-equal?
[expected actual]
(Arrays/equals (.getEncoded expected) (.getEncoded actual)))
(deftest keystore-test
(testing "create keystore"
(is (instance? KeyStore (keystore))))
(testing "associate certificates from PEM stream"
(let [pem (open-ssl-file "certs/multiple.pem")
keystore (keystore)
expected-certs (pem->certs pem)]
(assoc-certs-from-reader! keystore "foobar" pem)
(is (= 2 (.size keystore)))
(is (.containsAlias keystore "foobar-0"))
(is (.containsAlias keystore "foobar-1"))
(is (= (first expected-certs) (.getCertificate keystore "foobar-0")))
(is (= (second expected-certs) (.getCertificate keystore "foobar-1")))))
(testing "associate private keys from PEM stream"
(let [private-key-file (open-ssl-file "private_keys/localhost.pem")
cert-file (open-ssl-file "certs/localhost.pem")
keystore-val (keystore)
keystore-alias "mykey"
keystore-password "bunkpassword"
keystore-from-reader (assoc-private-key-from-reader! keystore-val
keystore-alias
private-key-file
keystore-password
cert-file)
keystore-key (.getKey keystore-val
keystore-alias
(char-array keystore-password))
keystore-cert (.getCertificate keystore-val keystore-alias)
cert (pem->cert cert-file)
private-key (pem->private-key private-key-file)]
(testing (str "keystore returned from same as keystore passed into "
"assoc-private-key-from-reader")
(is (identical? keystore-val keystore-from-reader)))
(testing "key read from keystore should match key read from PEM"
(is (encoded-content-equal? private-key keystore-key)))
(testing "cert read from keystore should match cert read from PEM"
(is (encoded-content-equal? cert keystore-cert)))
(testing "PEM created from keystore should match original PEM"
(let [stream (ByteArrayOutputStream.)
_ (key->pem! keystore-key stream)
orig-pem (.toByteArray stream)
keystore-pem (-> private-key-file reader slurp .getBytes)]
(is (Arrays/equals orig-pem keystore-pem))))
(testing (str "should be able to load single key and cert to keystore "
"and retrieve them back")
(let [keystore-val (keystore)
keystore-from-assoc (assoc-private-key!
keystore-val
keystore-alias
private-key
keystore-password
cert)
keystore-cert (.getCertificate keystore-val keystore-alias)]
(is (identical? keystore-val keystore-from-assoc)
"Keystore returned from assoc not same as one passed in")
(is (encoded-content-equal? cert keystore-cert)
"Cert passed in differs from cert retrieved from keystore")))
(testing "should fail when loading compound keys"
(let [private-key-file (open-ssl-file "private_keys/multiple_pks.pem")
cert-file (open-ssl-file "certs/localhost.pem")
keystore-val (keystore)]
(is (thrown-with-msg? IllegalArgumentException
#"The PEM stream must contain exactly one private key"
(assoc-private-key-from-reader! keystore-val
keystore-alias
private-key-file
keystore-password
cert-file)))))
(testing (str "should be able to load cert chain from reader in "
"keystore and retrieve it back")
(let [private-key-file (open-ssl-file "private_keys/localhost.pem")
cert-file (open-ssl-file "certs/localhost.pem")
keystore-val (keystore)
_ (assoc-private-key-from-reader! keystore-val
keystore-alias
private-key-file
keystore-password
cert-file)
keystore-chain (.getCertificateChain keystore-val
keystore-alias)
certs (pem->certs cert-file)]
(is (= (count keystore-chain) (count certs))
"Number of keystore certs do not match number of certs from file")
(dotimes [n (count keystore-chain)]
(is (encoded-content-equal? (nth certs n) (nth keystore-chain n))
(str "Cert # " n " from file does not match keystore cert")))))))
(testing "convert PEMs to keystore/truststore"
(let [result (pems->key-and-trust-stores
(open-ssl-file "certs/localhost.pem")
(open-ssl-file "private_keys/localhost.pem")
(open-ssl-file "certs/ca.pem"))]
(is (map? result))
(is (= #{:keystore :keystore-pw :truststore} (-> result keys set)))
(is (instance? KeyStore (:keystore result)))
(is (instance? KeyStore (:truststore result)))
(is (string? (:keystore-pw result))))))
(deftest ssl-context-test
(testing "convert PEMs to SSLContext"
(let [result (pems->ssl-context
(open-ssl-file "certs/localhost.pem")
(open-ssl-file "private_keys/localhost.pem")
(open-ssl-file "certs/ca.pem"))]
(is (instance? SSLContext result))))
(testing "convert CA cert PEM to SSLContext"
(let [result (pems->ssl-context
(open-ssl-file "certs/localhost.pem")
(open-ssl-file "private_keys/localhost.pem")
(open-ssl-file "certs/ca.pem")
(open-ssl-file "ca_crl.pem"))]
(is (instance? SSLContext result))))
(testing "convert CA cert PEM to SSLContext"
(let [result (ca-cert-pem->ssl-context
(open-ssl-file "certs/ca.pem"))]
(is (instance? SSLContext result))))
(testing "convert CA cert and crl PEMs to SSLContext"
(let [result (ca-cert-and-crl-pems->ssl-context
(open-ssl-file "certs/ca.pem")
(open-ssl-file "ca_crl.pem"))]
(is (instance? SSLContext result)))))
(deftest generate-ssl-context-test
(let [ssl-context (SSLContext/getInstance "TLSv1.2")
ssl-cert (open-ssl-file "certs/localhost.pem")
ssl-key (open-ssl-file "private_keys/localhost.pem")
ssl-ca-cert (open-ssl-file "certs/ca.pem")
ssl-ca-crls (open-ssl-file "ca_crl.pem")
ssl-opts {:ssl-context ssl-context
:ssl-cert ssl-cert
:ssl-key ssl-key
:ssl-ca-cert ssl-ca-cert
:ssl-ca-crls ssl-ca-crls}]
(testing "providing an ssl-context option returns the provided SSLContext"
(let [result (generate-ssl-context ssl-opts)]
(is (= ssl-context result))))
(testing "providing :ssl-key, :ssl-cert, and :ssl-ca-cert will cause an SSLContext
to be configured from PEMs"
(let [result (generate-ssl-context (dissoc ssl-opts :ssl-context :ssl-ca-crls))]
(is (instance? SSLContext result))))
(testing "providing :ssl-ca-cert and :ssl-ca-crls will cause an SSLContext to be configured
from CA Cert and crl PEMs"
(let [result (generate-ssl-context (dissoc ssl-opts :ssl-context :ssl-key))]
(is (instance? SSLContext result))))
(testing "providing :ssl-ca-cert will cause an SSLContext to be configured from CA cert PEM"
(let [result (generate-ssl-context (dissoc ssl-opts :ssl-context :ssl-key :ssl-ca-crls))]
(is (instance? SSLContext result))))
(testing "providing no SSL options will result in no SSLContext being returned"
(let [result (generate-ssl-context {})]
(is (nil? result))))
(testing "providing an incomplete SSL configuration will cause an exception to be thrown"
(is (thrown? IllegalArgumentException
(generate-ssl-context (dissoc ssl-opts :ssl-context :ssl-ca-cert)))))))
(let [keypair (generate-key-pair 512)
public (get-public-key keypair)
private (get-private-key keypair)]
(deftest keypair?-test
(is (true? (keypair? keypair)))
(is (false? (keypair? (str keypair))))
(is (false? (keypair? public)))
(is (false? (keypair? private)))
(is (false? (keypair? "foo")))
(is (false? (keypair? nil))))
(deftest public-key?-test
(is (true? (public-key? public)))
(is (false? (public-key? (str public))))
(is (false? (public-key? private)))
(is (false? (public-key? "foo")))
(is (false? (public-key? nil))))
(deftest private-key?-test
(is (true? (private-key? private)))
(is (false? (private-key? (str private))))
(is (false? (private-key? public)))
(is (false? (private-key? "foo")))
(is (false? (private-key? nil)))))
(deftest key-tests
(let [subject (cn "subject")
issuer (cn "issuer")
key-pair (generate-key-pair 512)
csr (generate-certificate-request key-pair subject)
cert (sign-certificate issuer (get-private-key (generate-key-pair 512))
42 (generate-not-before-date)
(generate-not-after-date) subject
(get-public-key (generate-key-pair 512)))
crl-kp (generate-key-pair 512)
crl (generate-crl (X500Principal. issuer)
(get-private-key crl-kp)
(get-public-key crl-kp))
pub-key (get-public-key csr)]
(testing "getting-public-key"
(is (= pub-key (get-public-key key-pair))))
(testing "valid-x500-name?"
(is (= "CN=common name" (dn [:cn "common name"])))
(is (= "CN=cn,O=org" (dn [:cn "cn" :o "org"])))
(is (thrown? ExceptionInfo (dn [])))
(is (thrown? ExceptionInfo (dn [:cn :cn "cn"])))
(is (true? (valid-x500-name? subject)))
(is (false? (valid-x500-name? "subject")))
(is (false? (valid-x500-name? nil))))
(testing "certificate-request?"
(is (true? (certificate-request? csr)))
(is (false? (certificate-request? (str csr))))
(is (false? (certificate-request? "foo")))
(is (false? (certificate-request? nil))))
(testing "certificate?"
(is (true? (certificate? cert)))
(is (false? (certificate? (str cert))))
(is (false? (certificate? csr)))
(is (false? (certificate? "foo")))
(is (false? (certificate? nil))))
(testing "certificate-list?"
(is (true? (certificate-list? [cert])))
(is (false? (certificate-list? cert)))
(is (false? (certificate-list? "foo")))
(is (false? (certificate-list? nil))))
(testing "certificate-revocation-list?"
(is (true? (certificate-revocation-list? crl)))
(is (false? (certificate-revocation-list? (str crl))))
(is (false? (certificate-revocation-list? "foo")))
(is (false? (certificate-revocation-list? nil))))
(testing "has-subject?"
(testing "certificate signing request"
(is (true? (has-subject? csr subject)))
(is (true? (has-subject? csr (str subject))))
(is (true? (has-subject? csr "CN=subject")))
(is (true? (has-subject? csr (cn "subject"))))
(is (false? (has-subject? csr "subject"))))
(testing "certificate"
(is (true? (has-subject? cert subject)))
(is (true? (has-subject? cert (str subject))))
(is (true? (has-subject? cert "CN=subject")))
(is (true? (has-subject? cert (cn "subject"))))
(is (false? (has-subject? cert "subject")))))
(testing "issued-by?"
(testing "certificate"
(is (true? (issued-by? cert issuer)))
(is (true? (issued-by? cert (str issuer))))
(is (true? (issued-by? cert "CN=issuer")))
(is (true? (issued-by? cert (cn "issuer"))))
(is (false? (issued-by? cert "issuer"))))
(testing "certificate revocation list"
(is (true? (issued-by? crl issuer)))
(is (true? (issued-by? crl (str issuer))))
(is (true? (issued-by? crl "CN=issuer")))
(is (true? (issued-by? crl (cn "issuer"))))
(is (false? (issued-by? crl "issuer")))))
(testing "x500-name->CN"
(testing "get proper CN from DN when CN available"
(is (= "subject" (x500-name->CN subject))))
(testing "get empty string for CN when no CN in DN"
(is (= "" (x500-name->CN (dn [:l "Nowheresville"]))))))))
(deftest extensions
(testing "Found all extensions from a certificate on disk."
(let [cert (-> "certs/cert_with_exts.pem"
open-ssl-file
pem->cert)
extensions (get-extensions cert)]
(is (= 10 (count extensions)))
(doseq [[oid value]
[["2.5.29.15" #{:key-encipherment :digital-signature}]
["2.5.29.19" {:is-ca false
:path-len-constraint nil}]
["2.5.29.37" ["1.3.6.1.5.5.7.3.1" "1.3.6.1.5.5.7.3.2"]]
["1.3.6.1.4.1.34380.1.1.1" "ED803750-E3C7-44F5-BB08-41A04433FE2E"]
["1.3.6.1.4.1.34380.1.1.2" "1234567890"]
["1.3.6.1.4.1.34380.1.1.3" "my_ami_image"]
["1.3.6.1.4.1.34380.1.1.4" "342thbjkt82094y0uthhor289jnqthpc2290"]
["2.16.840.1.113730.1.13" "Puppet Ruby/OpenSSL Internal Certificate"]]]
(is (= (get-extension-value extensions oid) value)))))
(testing "Reading cert extensions from an older version of Puppet works"
(let [cert (-> "certs/cert_with_old_exts.pem"
open-ssl-file
pem->cert)
exts (get-extensions cert)]
(doseq [[oid value]
[["2.5.29.15" #{:key-encipherment :digital-signature}]
["2.5.29.19" {:is-ca false
:path-len-constraint nil}]
["2.5.29.37" ["1.3.6.1.5.5.7.3.1" "1.3.6.1.5.5.7.3.2"]]
["1.3.6.1.4.1.34380.1.1.1" "ED803750-E3C7-44F5-BB08-41A04433FE2E"]
["1.3.6.1.4.1.34380.1.1.2" "1234567890"]
["1.3.6.1.4.1.34380.1.1.3" "my_ami_image"]
["1.3.6.1.4.1.34380.1.1.4" "342thbjkt82094y0uthhor289jnqthpc2290"]
["2.16.840.1.113730.1.13" "Puppet Ruby/OpenSSL Internal Certificate"]]]
(is (= (get-extension-value exts oid) value)))))
(testing "Found all extensions from a cert request on disk."
(let [csr (-> "certification_requests/ca_test_client_with_exts.pem"
open-ssl-file
pem->csr)
extensions (get-extensions csr)]
(is (= (set extensions)
#{{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.1",
:value "ED803750-E3C7-44F5-BB08-41A04433FE2E"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.3",
:value "my_ami_image"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.4",
:value "342thbjkt82094y0uthhor289jnqthpc2290"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.2",
:value "1234567890"}}))))
(testing "Reading extensions from an CSR generated by an older version of Puppet works"
(let [csr (-> "certification_requests/ca_test_client_with_old_exts.pem"
open-ssl-file
pem->csr)
extensions (get-extensions csr)]
(is (= (set extensions)
#{{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.1",
:value "ED803750-E3C7-44F5-BB08-41A04433FE2E"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.3",
:value "my_ami_image"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.4",
:value "342thbjkt82094y0uthhor289jnqthpc2290"}
{:critical false,
:oid "1.3.6.1.4.1.34380.1.1.2",
:value "1234567890"}}))))
(testing "Testing OID subtree status"
(is (subtree-of? "1.2.3.4"
"1.2.3.4.5"))
(is (subtree-of? "1.2.3.4.5"
"1.2.3.4.5.6"))
(is (not (subtree-of? "1.2.3.4"
"5.6.7.8")))
(is (not (subtree-of? "1.2.3.4"
"1.2.3.4")))
(is (not (subtree-of? "1.2.3"
"1.2.34")))))
(deftest csr-attributes-test
(testing "one attribute"
(let [csr (generate-certificate-request (generate-key-pair 512)
(cn "subject")
[]
[{:oid "1.3.6.1.4.1.34380.1.3.2" :value true}])]
(testing "attribute is present"
(let [attributes (.getAttributes csr)]
(is (= 1 (count attributes)))
(let [attribute ^Attribute (first attributes)]
(is (= "1.3.6.1.4.1.34380.1.3.2" (.getId (.getAttrType attribute))))
(is (= "true"
;manually extract the value out of the attribute until we have functions to do it.
(.getString ^DERUTF8String (ASN1Primitive/fromByteArray
(.getOctets
(first
(.getAttributeValues attribute))))))))))
(testing "getAttributesList returns expected content"
(let [attributes (get-attributes csr)]
(is (= [{:oid "1.3.6.1.4.1.34380.1.3.2" :values ["true"]}]
attributes))))))
(testing "more than one attribute"
(let [csr (generate-certificate-request (generate-key-pair 512)
(cn "subject")
[]
[{:oid "1.3.6.1.4.1.34380.1.3.2" :value true}
{:oid "1.3.6.1.4.1.34380.1.3.2" :value "herman"}
{:oid "1.3.6.1.4.1.34380.1.3.2" :value 5}
{:oid "1.3.6.1.4.1.34380.1.3.3" :value "one"}
{:oid "1.3.6.1.4.1.34380.1.3.3" :value "two"}])
convert-value-to-set (fn [entry] (update entry :values #(set %)))]
(testing "getAttributeList returns expected content"
(let [attributes (get-attributes csr)]
(is (= #{{:oid "1.3.6.1.4.1.34380.1.3.2" :values #{"true" "herman" "5"}}
{:oid "1.3.6.1.4.1.34380.1.3.3" :values #{"one" "two"}}}
(set (map convert-value-to-set attributes))))))))
(testing "multiples with extensions too"
(let [csr (generate-certificate-request (generate-key-pair 512)
(cn "subject")
[(subject-dns-alt-names ["moe" "curly" "larry"] false)]
[{:oid "1.3.6.1.4.1.34380.1.3.2" :value true}
{:oid "1.3.6.1.4.1.34380.1.3.2" :value "herman"}
{:oid "1.3.6.1.4.1.34380.1.3.2" :value 5}
{:oid "1.3.6.1.4.1.34380.1.3.3" :value "one"}
{:oid "1.3.6.1.4.1.34380.1.3.3" :value "two"}])
convert-value-to-set (fn [entry] (update entry :values #(set %)))]
(testing "getAttributeList returns expected content"
(let [attributes (get-attributes csr)]
(is (= #{{:oid "1.3.6.1.4.1.34380.1.3.2" :values #{"true" "herman" "5"}}
{:oid "1.3.6.1.4.1.34380.1.3.3" :values #{"one" "two"}}
;; attributes only convert simple strings currently, and DNS alt-names is a structure
;; this demonstrates that the mapping doesn't work for this case (which is ok).
{:oid "1.2.840.113549.1.9.14", :values #{[48 30 48 28 6 3 85 29 17 4 21 48 19 -126 3 109 111 101 -126 5 99 117 114 108 121 -126 5 108 97 114 114 121]}}}
(set (map convert-value-to-set attributes)))))))))
(deftest signature-valid?-test
(is (signature-valid?
(pem->csr (open-ssl-file "certification_requests/ca_test_client.pem"))))
(is (signature-valid?
(pem->csr (open-ssl-file "certification_requests/ca_test_client_with_exts.pem"))))
(is (not (signature-valid?
(pem->csr (open-ssl-file "certification_requests/bad_public_key.pem"))))))
(deftest fingerprint-test
(testing "certificate"
(let [cert (pem->cert (open-ssl-file "certs/localhost.pem"))]
(are [algorithm expected] (= expected (fingerprint cert algorithm))
"SHA-1" "8541015c004a0e780fea9d34e85508223540f8db"
"SHA-256" "d23bad16a87151e24bfd05b0aa7c82423d0d74889e7316eddc4384b7f6c95196"
"SHA-512" "71f35390978f0345fbb7f6cbc4be992dcdc07648879d0db836a0a49f637932a4abb4619e37fe9320af5634097204b6d7d2d3326d29d901c95c76e8f2b64e6ce4")))
(testing "csr"
(let [csr (pem->csr (open-ssl-file "certification_requests/ca_test_client.pem"))]
(are [algorithm expected] (= expected (fingerprint csr algorithm))
"SHA-1" "729b47a6e4386a7ac9722c2aff6211bf24717346"
"SHA-256" "13e691167999b6d6578b7acc646900d92337d51abe0ea8fbb5121192d7244ffd"
"SHA-512" "07b9936f81dfc9100e83eb2a19506faf0bf6a2e45e4e56e1e4d30682cdffc84a5a8310517e009398f11b0f9045a416eebf4d040b9badf008cf2e192706f05989"))))
(deftest subject-dns-alt-names-test
(testing "certificate"
(let [cert (sign-certificate (cn "ca")
(get-private-key (generate-key-pair 512))
1234
(generate-not-before-date)
(generate-not-after-date)
(cn "subject")
(get-public-key (generate-key-pair 512))
[(subject-dns-alt-names ["peter" "paul" "mary"] false)])]
(is (= #{"peter" "paul" "mary"} (set (get-subject-dns-alt-names cert))))))
(testing "CSR"
(let [csr (generate-certificate-request (generate-key-pair 512)
(cn "subject")
[(subject-dns-alt-names ["moe" "curly" "larry"] false)])]
(is (= #{"moe" "curly" "larry"} (set (get-subject-dns-alt-names csr)))))))
(deftest subject-ip-alt-names-test
(testing "certificate"
(let [cert (sign-certificate (cn "ca")
(get-private-key (generate-key-pair 512))
1234
(generate-not-before-date)
(generate-not-after-date)
(cn "subject")
(get-public-key (generate-key-pair 512))
[(subject-alt-names {:dns-name ["moe"] :ip ["192.168.69.90" "192.168.69.91" "192.168.69.92"]} false)])]
(is (= #{"192.168.69.90" "192.168.69.91" "192.168.69.92"} (set (get-subject-ip-alt-names cert))))))
(testing "CSR"
(let [csr (generate-certificate-request (generate-key-pair 512)
(cn "subject")
[(subject-alt-names {:dns-name ["moe"] :ip ["192.168.69.90" "192.168.69.91" "192.168.69.92"]} false)])]
(is (= #{"192.168.69.90" "192.168.69.91" "192.168.69.92"} (set (get-subject-ip-alt-names csr)))))))
(deftest schema-test
(testing "readerable"
(is (schema/validate Readerable (char-array "somestring"))
"A char array satisfies Readerable")
(is (schema/validate Readerable (str->bytes "someotherstring"))
"A byte array satisfies Readerable"))
(testing "writerable"
(is (schema/validate Writerable (char-array "somestring"))
"A char array satisfies Writerable")
(is (schema/validate Writerable (str->bytes "someotherstring"))
"A byte array satisfies Writerable")))
|