Add EVP_KDF-X942 to the fips module
[openssl.git] / test / recipes / 90-test_gost.t
1 #! /usr/bin/env perl
2 # Copyright 2018-2020 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
9 use OpenSSL::Test::Utils;
10 use OpenSSL::Test qw/:DEFAULT srctop_file/;
11
12 setup("test_gost");
13
14 # The GOST ciphers are dynamically loaded via the GOST engine, so we must be
15 # able to support that. The engine also uses DSA, CMS and CMAC symbols, so we
16 # skip this test on no-dsa, no-cms or no-cmac.
17 plan skip_all => "GOST support is disabled in this OpenSSL build"
18     if disabled("gost") || disabled("engine") || disabled("dynamic-engine")
19        || disabled("dsa") || disabled("cms") || disabled("cmac");
20
21 plan skip_all => "TLSv1.3 or TLSv1.2 are disabled in this OpenSSL build"
22     if disabled("tls1_3") || disabled("tls1_2");
23
24 plan skip_all => "EC is disabled in this OpenSSL build"
25     if disabled("ec");
26
27 #Gost engine uses some deprecated functions
28 plan skip_all => "Deprecated functions are disabled in this OpenSSL build"
29     if disabled("deprecated");
30
31 plan skip_all => "No test GOST engine found"
32     if !$ENV{OPENSSL_GOST_ENGINE_SO};
33
34 plan tests => 1;
35
36 $ENV{OPENSSL_CONF} = srctop_file("test", "recipes", "90-test_gost_data",
37                                  "gost.cnf");
38
39 ok(run(test(["gosttest",
40              srctop_file("test", "recipes", "90-test_gost_data",
41                          "server-cert2001.pem"),
42              srctop_file("test", "recipes", "90-test_gost_data",
43                          "server-key2001.pem"),
44              srctop_file("test", "recipes", "90-test_gost_data",
45                          "server-cert2012.pem"),
46              srctop_file("test", "recipes", "90-test_gost_data",
47                          "server-key2012.pem")])),
48              "running gosttest");