2
0

25-test_crl.t 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #! /usr/bin/env perl
  2. # Copyright 2015-2016 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 => 7;
  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("crl", 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. 'SHA256 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(run(app(["openssl", "crl", "-text", "-in", $pem, "-out", $out,
  29. "-nameopt", "utf8"])));
  30. is(cmp_text($out, srctop_file("test/certs", "cyrillic_crl.utf8")),
  31. 0, 'Comparing utf8 output');
  32. unlink $out;
  33. sub compare1stline {
  34. my ($cmdarray, $str) = @_;
  35. my @lines = run(app($cmdarray), capture => 1);
  36. return 1 if $lines[0] =~ m|^\Q${str}\E\R$|;
  37. note "Got ", $lines[0];
  38. note "Expected ", $str;
  39. return 0;
  40. }