summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-05-01 19:24:50 +0200
committerRichard Levitte <levitte@openssl.org>2020-05-03 06:05:27 +0200
commit6d81bb2676f6a210f15f17324ab6852f52cc7f55 (patch)
tree7c5091ca3e0f59a816f2f3bdc2d4564f90e0f6a9 /util
parentc450922c8cd8bc7326670fe83e2eb453fea79595 (diff)
util/perl/OpenSSL/OID.pm: remove the included unit test
The unit test uses features that appeared in perl 5.12, and is therefore a source of trouble when building. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11704)
Diffstat (limited to 'util')
-rw-r--r--util/perl/OpenSSL/OID.pm85
1 files changed, 0 insertions, 85 deletions
diff --git a/util/perl/OpenSSL/OID.pm b/util/perl/OpenSSL/OID.pm
index 0bc34ce5b7..0b39ef9fd2 100644
--- a/util/perl/OpenSSL/OID.pm
+++ b/util/perl/OpenSSL/OID.pm
@@ -304,89 +304,4 @@ sub _pairmap (&@) {
map { $block->($_) } _pairs @_;
}
-######## UNIT TESTING
-
-use Test::More;
-
-sub TEST {
- # Order is important, so we make it a pairwise list
- my @predefined =
- (
- 'pkcs' => '1.2.840.113549',
- 'pkcs-1' => 'pkcs.1',
- );
-
- my %good_cases =
- (
- ' 1.2.840.113549.1.1 ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- 'pkcs.1.1' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- 'pkcs-1.1' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- ' { iso (1) 2 840 113549 1 1 } ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- '{ pkcs 1 1 } ' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- '{pkcs-1 1 }' => [ 42, 134, 72, 134, 247, 13, 1, 1 ],
- );
- my @bad_cases =
- (
- ' { 1.2.840.113549.1.1 } ',
- );
-
- plan tests =>
- scalar ( @predefined ) / 2
- + scalar ( keys %good_cases )
- + scalar @bad_cases;
-
- note 'Predefine a few names OIDs';
- foreach my $pair ( _pairs @predefined ) {
- ok( defined eval { register_oid(@$pair) },
- "Registering $pair->[0] => $pair->[1]" );
- }
-
- note 'Good cases';
- foreach ( keys %good_cases ) {
- subtest "Checking '$_'" => sub {
- my $oid = shift;
-
- plan tests => 5;
-
- my (@l, @e);
-
- ok( scalar (@l = eval { parse_oid $oid }) > 0,
- "Parsing" );
- diag $@ unless @l;
- ok( scalar (@e = eval { encode_oid_nums @l }) > 0,
- "Encoding via encode_oid_nums()" );
- diag $@ unless @e;
- is_deeply(\@e, $good_cases{$oid}, "Checking encoding");
- note "'$oid' => ", join(', ', @e) if @e;
-
- ok( scalar (@e = eval { encode_oid $oid }) > 0,
- "Encoding directly" );
- diag $@ unless @e;
- is_deeply(\@e, $good_cases{$oid}, "Checking encoding");
- note "'$oid' => ", join(', ', @e) if @e;
- },
- $_;
- }
-
- note 'Bad cases';
- foreach ( @bad_cases ) {
- subtest "Checking '$_'" => sub {
- my $oid = shift;
-
- plan tests => 2;
-
- my (@l, @e);
-
- ok( scalar (@l = eval { parse_oid $oid }) == 0,
- "Parsing '$oid'" );
- note $@ unless @l;
- ok( scalar (@e = eval { encode_oid_nums @l }) == 0,
- "Encoding '$oid'" );
- note $@ unless @e;
- note "'$oid' => ", join(', ', @e) if @e;
- },
- $_;
- }
-}
-
1; # End of OpenSSL::OID