Add test case for openssl crl -noout -hash output
authorTomas Mraz <tomas@openssl.org>
Tue, 27 Apr 2021 09:49:44 +0000 (11:49 +0200)
committerTomas Mraz <tomas@openssl.org>
Thu, 29 Apr 2021 09:36:12 +0000 (11:36 +0200)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15044)

test/recipes/25-test_crl.t

index 128ad116ff4b67cfd10c234a394d9d0633bd0cb7..a17383f043b62b350771f5fa61bc84e89d7033d9 100644 (file)
@@ -15,7 +15,7 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/;
 
 setup("test_crl");
 
-plan tests => 7;
+plan tests => 8;
 
 require_ok(srctop_file('test','recipes','tconversion.pl'));
 
@@ -35,6 +35,9 @@ ok(compare1stline([qw{openssl crl -noout -fingerprint -in},
 ok(compare1stline([qw{openssl crl -noout -fingerprint -sha256 -in},
                    srctop_file('test', 'testcrl.pem')],
                   'SHA2-256 Fingerprint=B3:A9:FD:A7:2E:8C:3D:DF:D0:F1:C3:1A:96:60:B5:FD:B0:99:7C:7F:0E:E4:34:F5:DB:87:62:36:BC:F1:BC:1B'));
+ok(compare1stline([qw{openssl crl -noout -hash -in},
+                   srctop_file('test', 'testcrl.pem')],
+                  '106cd822'));
 
 ok(run(app(["openssl", "crl", "-text", "-in", $pem, "-out", $out,
             "-nameopt", "utf8"])));