xref: /freebsd/crypto/openssl/test/recipes/65-test_cmp_client.t (revision e0c4386e7e71d93b0edc0c8fa156263fc4a8b0b6)
1*e0c4386eSCy Schubert#! /usr/bin/env perl
2*e0c4386eSCy Schubert# Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert# Copyright Nokia 2007-2019
4*e0c4386eSCy Schubert# Copyright Siemens AG 2015-2019
5*e0c4386eSCy Schubert#
6*e0c4386eSCy Schubert# Licensed under the Apache License 2.0 (the "License").  You may not use
7*e0c4386eSCy Schubert# this file except in compliance with the License.  You can obtain a copy
8*e0c4386eSCy Schubert# in the file LICENSE in the source distribution or at
9*e0c4386eSCy Schubert# https://www.openssl.org/source/license.html
10*e0c4386eSCy Schubert
11*e0c4386eSCy Schubertuse strict;
12*e0c4386eSCy Schubertuse OpenSSL::Test qw/:DEFAULT data_file srctop_file srctop_dir bldtop_file bldtop_dir/;
13*e0c4386eSCy Schubertuse OpenSSL::Test::Utils;
14*e0c4386eSCy Schubert
15*e0c4386eSCy SchubertBEGIN {
16*e0c4386eSCy Schubert    setup("test_cmp_client");
17*e0c4386eSCy Schubert}
18*e0c4386eSCy Schubert
19*e0c4386eSCy Schubertuse lib srctop_dir('Configurations');
20*e0c4386eSCy Schubertuse lib bldtop_dir('.');
21*e0c4386eSCy Schubert
22*e0c4386eSCy Schubertmy $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
23*e0c4386eSCy Schubert
24*e0c4386eSCy Schubertplan skip_all => "This test is not supported in a no-cmp or no-ec build"
25*e0c4386eSCy Schubert    if disabled("cmp") || disabled("ec");
26*e0c4386eSCy Schubert
27*e0c4386eSCy Schubertplan tests => 2 + ($no_fips ? 0 : 1); # fips test
28*e0c4386eSCy Schubert
29*e0c4386eSCy Schubertmy @basic_cmd = ("cmp_client_test",
30*e0c4386eSCy Schubert                 data_file("server.key"),
31*e0c4386eSCy Schubert                 data_file("server.crt"),
32*e0c4386eSCy Schubert                 data_file("client.key"),
33*e0c4386eSCy Schubert                 data_file("client.crt"),
34*e0c4386eSCy Schubert                 data_file("client.csr"));
35*e0c4386eSCy Schubert
36*e0c4386eSCy Schubertok(run(test([@basic_cmd, "none"])));
37*e0c4386eSCy Schubert
38*e0c4386eSCy Schubertok(run(test([@basic_cmd, "default", srctop_file("test", "default.cnf")])));
39*e0c4386eSCy Schubert
40*e0c4386eSCy Schubertunless ($no_fips) {
41*e0c4386eSCy Schubert    ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips-and-base.cnf")])));
42*e0c4386eSCy Schubert}
43