forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add external testing with oqsprovider
Including running the oqsprovider external test in the CI external test build. Reviewed-by: Richard Levitte <[email protected]> Reviewed-by: Matt Caswell <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from openssl#17832)
- Loading branch information
Showing
6 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule oqs-provider
added at
e42288
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#! /usr/bin/env perl | ||
# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License 2.0 (the "License"). You may not use | ||
# this file except in compliance with the License. You can obtain a copy | ||
# in the file LICENSE in the source distribution or at | ||
# https://www.openssl.org/source/license.html | ||
|
||
|
||
use OpenSSL::Test; | ||
use OpenSSL::Test::Utils; | ||
use OpenSSL::Test qw/:DEFAULT data_file bldtop_dir srctop_dir cmdstr/; | ||
|
||
setup("test_external_oqsprovider"); | ||
|
||
plan skip_all => "No external tests in this configuration" | ||
if disabled("external-tests"); | ||
plan skip_all => "oqsprovider tests not available on Windows or VMS" | ||
if $^O =~ /^(VMS|MSWin32)$/; | ||
plan skip_all => "oqsprovider tests only available in a shared build" | ||
if disabled("shared"); | ||
plan skip_all => "oqsprovider tests not supported in out of tree builds" | ||
if bldtop_dir() ne srctop_dir(); | ||
|
||
plan tests => 1; | ||
|
||
ok(run(cmd(["sh", data_file("oqsprovider.sh")])), | ||
"running oqsprovider tests"); |
77 changes: 77 additions & 0 deletions
77
test/recipes/95-test_external_oqsprovider_data/oqsprovider.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License 2.0 (the "License"). You may not use | ||
# this file except in compliance with the License. You can obtain a copy | ||
# in the file LICENSE in the source distribution or at | ||
# https://www.openssl.org/source/license.html | ||
|
||
# | ||
# OpenSSL external testing using the OQS provider | ||
# | ||
set -e | ||
|
||
PWD="$(pwd)" | ||
|
||
SRCTOP="$(cd $SRCTOP; pwd)" | ||
BLDTOP="$(cd $BLDTOP; pwd)" | ||
|
||
if [ "$SRCTOP" != "$BLDTOP" ] ; then | ||
echo "Out of tree builds not supported with oqsprovider test!" | ||
exit 1 | ||
fi | ||
|
||
O_EXE="$BLDTOP/apps" | ||
O_BINC="$BLDTOP/include" | ||
O_SINC="$SRCTOP/include" | ||
O_LIB="$BLDTOP" | ||
|
||
unset OPENSSL_CONF | ||
|
||
export PATH="$O_EXE:$PATH" | ||
export LD_LIBRARY_PATH="$O_LIB:$LD_LIBRARY_PATH" | ||
export OPENSSL_ROOT_DIR="$O_LIB" | ||
|
||
# Check/Set openssl version | ||
OPENSSL_VERSION=`openssl version | cut -f 2 -d ' '` | ||
|
||
echo "------------------------------------------------------------------" | ||
echo "Testing OpenSSL using oqsprovider:" | ||
echo " CWD: $PWD" | ||
echo " SRCTOP: $SRCTOP" | ||
echo " BLDTOP: $BLDTOP" | ||
echo " OPENSSL_ROOT_DIR: $OPENSSL_ROOT_DIR" | ||
echo " OpenSSL version: $OPENSSL_VERSION" | ||
echo "------------------------------------------------------------------" | ||
|
||
if [ ! -d $SRCTOP/oqs-provider/oqs ]; then | ||
# disable rainbow family by default; all further config options listed at | ||
# https://github.com/open-quantum-safe/liboqs/wiki/Customizing-liboqs | ||
( | ||
cd $SRCTOP/oqs-provider \ | ||
&& git clone --depth 1 --branch main https://github.com/open-quantum-safe/liboqs.git \ | ||
&& cd liboqs \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake -DOQS_ENABLE_SIG_RAINBOW=OFF -DCMAKE_INSTALL_PREFIX=$SRCTOP/oqs-provider/oqs .. \ | ||
&& make \ | ||
&& make install | ||
) | ||
fi | ||
|
||
if [ ! -f $SRCTOP/oqs-provider/test/ssltestlib.c ]; then | ||
( cd $SRCTOP/oqs-provider && OPENSSL_BLDTOP=$BLDTOP ./scripts/preptests.sh ) | ||
fi | ||
|
||
echo " CWD: $PWD" | ||
cmake $SRCTOP/oqs-provider -DCMAKE_INCLUDE_PATH=$SRCTOP/oqs-provider/oqs -DCMAKE_PREFIX_PATH=$SRCTOP/oqs-provider/oqs -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -DOPENSSL_BLDTOP=$BLDTOP -B _build && cmake --build _build | ||
export CTEST_OUTPUT_ON_FAILURE=1 | ||
export HARNESS_OSSL_PREFIX='' | ||
export OPENSSL_APP="$O_EXE/openssl" | ||
if [ -z "$OQS_SKIP_TESTS" ]; then | ||
export OQS_SKIP_TESTS="rainbow,111" | ||
fi | ||
export OPENSSL_MODULES=$PWD/_build/oqsprov | ||
export OQS_PROVIDER_TESTSCRIPTS=$SRCTOP/oqs-provider | ||
$SRCTOP/oqs-provider/scripts/runtests.sh |