25-test_crl.t 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #! /usr/bin/env perl
  2. # Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. use strict;
  9. use warnings;
  10. use File::Spec;
  11. use OpenSSL::Test qw/:DEFAULT srctop_file/;
  12. setup("test_crl");
  13. plan tests => 10;
  14. require_ok(srctop_file('test','recipes','tconversion.pl'));
  15. my $pem = srctop_file("test/certs", "cyrillic_crl.pem");
  16. my $out = "cyrillic_crl.out";
  17. my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
  18. subtest 'crl conversions' => sub {
  19. tconversion( -type => "crl", -in => srctop_file("test","testcrl.pem") );
  20. };
  21. ok(run(test(['crltest'])));
  22. ok(compare1stline([qw{openssl crl -noout -fingerprint -in},
  23. srctop_file('test', 'testcrl.pem')],
  24. 'SHA1 Fingerprint=BA:F4:1B:AD:7A:9B:2F:09:16:BC:60:A7:0E:CE:79:2E:36:00:E7:B2'));
  25. ok(compare1stline([qw{openssl crl -noout -fingerprint -sha256 -in},
  26. srctop_file('test', 'testcrl.pem')],
  27. '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'));
  28. ok(compare1stline([qw{openssl crl -noout -hash -in},
  29. srctop_file('test', 'testcrl.pem')],
  30. '106cd822'));
  31. ok(compare1stline_stdin([qw{openssl crl -hash -noout}],
  32. srctop_file("test","testcrl.pem"),
  33. '106cd822'),
  34. "crl piped input test");
  35. ok(!run(app(["openssl", "crl", "-text", "-in", $pem, "-inform", "DER",
  36. "-out", $out, "-nameopt", "utf8"])));
  37. ok(run(app(["openssl", "crl", "-text", "-in", $pem, "-inform", "PEM",
  38. "-out", $out, "-nameopt", "utf8"])));
  39. is(cmp_text($out, srctop_file("test/certs", "cyrillic_crl.utf8")),
  40. 0, 'Comparing utf8 output');
  41. sub compare1stline {
  42. my ($cmdarray, $str) = @_;
  43. my @lines = run(app($cmdarray), capture => 1);
  44. return 1 if $lines[0] =~ m|^\Q${str}\E\R$|;
  45. note "Got ", $lines[0];
  46. note "Expected ", $str;
  47. return 0;
  48. }
  49. sub compare1stline_stdin {
  50. my ($cmdarray, $infile, $str) = @_;
  51. my @lines = run(app($cmdarray, stdin => $infile), capture => 1);
  52. return 1 if $lines[0] =~ m|^\Q${str}\E\R$|;
  53. note "Got ", $lines[0];
  54. note "Expected ", $str;
  55. return 0;
  56. }