Move legacy ciphers into the legacy provider
[openssl.git] / test / recipes / 20-test_enc_more.t
1 #! /usr/bin/env perl
2 # Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3 # Copyright (c) 2017, Oracle and/or its affiliates.  All rights reserved.
4 #
5 # Licensed under the Apache License 2.0 (the "License").  You may not use
6 # this file except in compliance with the License.  You can obtain a copy
7 # in the file LICENSE in the source distribution or at
8 # https://www.openssl.org/source/license.html
9
10
11 use strict;
12 use warnings;
13
14 use File::Spec::Functions qw/catfile/;
15 use File::Copy;
16 use File::Compare qw/compare_text/;
17 use File::Basename;
18 use OpenSSL::Test qw/:DEFAULT srctop_file bldtop_dir/;
19
20 setup("test_evp_more");
21
22 my $testsrc = srctop_file("test", "recipes", basename($0));
23
24 my $cipherlist = undef;
25 my $plaintext = catfile(".", "testdatafile");
26 my $fail = "";
27 my $cmd = "openssl";
28 my $provpath = bldtop_dir("providers");
29 my @prov = ("-provider_path", $provpath, "-provider", "default", "-provider", "legacy");
30
31 my $ciphersstatus = undef;
32 my @ciphers =
33     grep(! /wrap|^$|^[^-]/,
34          (map { split /\s+/ }
35           run(app([$cmd, "enc", "-list"]),
36               capture => 1, statusvar => \$ciphersstatus)));
37
38 plan tests => 2 + scalar @ciphers;
39
40 SKIP: {
41     skip "Problems getting ciphers...", 1 + scalar(@ciphers)
42         unless ok($ciphersstatus, "Running 'openssl enc -list'");
43     unless (ok(copy($testsrc, $plaintext), "Copying $testsrc to $plaintext")) {
44         diag($!);
45         skip "Not initialized, skipping...", scalar(@ciphers);
46     }
47
48     foreach my $cipher (@ciphers) {
49         my $ciphername = substr $cipher, 1;
50         my $cipherfile = "$plaintext.$ciphername.cipher";
51         my $clearfile = "$plaintext.$ciphername.clear";
52         my @common = ( $cmd, "enc", "$cipher", "-k", "test" );
53
54         ok(run(app([@common, @prov, "-e", "-in", $plaintext, "-out", $cipherfile]))
55            && compare_text($plaintext, $cipherfile) != 0
56            && run(app([@common, @prov, "-d", "-in", $cipherfile, "-out", $clearfile]))
57            && compare_text($plaintext, $clearfile) == 0
58            , $ciphername);
59     }
60 }