openssl/test
Matt Caswell 83bd31da23 Fix no-scrypt
Fix the evp tests when no-scrypt is used.

Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-03-21 14:36:22 +00:00
..
certs CT policy validation 2016-03-01 20:03:25 +00:00
ct Verify SCT signatures 2016-03-01 11:59:28 -05:00
ocsp-tests
recipes Skip the CMS tests if CMS is disabled 2016-03-21 14:33:40 +00:00
smime-certs
testlib/OpenSSL Make OpenSSL::Test::run() sensitive to signals 2016-03-18 15:25:23 +01:00
aborttest.c Add a test to see that signals are caught as failures 2016-03-18 15:25:23 +01:00
afalgtest.c Disable afalg when engine is disabled. 2016-03-14 17:03:53 +01:00
asynctest.c Some platforms provide getcontext() but it does not work 2016-03-16 18:12:56 +01:00
bftest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
bntest.c Fix build break; add function declaration 2016-03-11 20:36:33 -05:00
build.info Add a test to see that signals are caught as failures 2016-03-18 15:25:23 +01:00
CAss.cnf
CAssdh.cnf
CAssdsa.cnf
CAssrsa.cnf
casttest.c
CAtsa.cnf
clienthellotest.c Use version flexible method instead of fixed version 2016-03-09 19:39:54 +01:00
cms-examples.pl
constant_time_test.c
ct_test.c check reviewer --reviewer=emilia 2016-03-10 14:53:04 -05:00
danetest.c
danetest.in
danetest.pem
destest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
dhtest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
dsatest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
dtlsv1listentest.c fix "no-engine" build of test fixture 2016-02-25 15:23:40 -05:00
dummytest.c
ecdhtest_cavs.h documentation and duplicate goto statements 2016-03-07 12:20:42 -05:00
ecdhtest.c documentation and duplicate goto statements 2016-03-07 12:20:42 -05:00
ecdsatest.c skip inappropriate X25519 tests 2016-02-28 22:54:54 +00:00
ectest.c skip inappropriate X25519 tests 2016-02-28 22:54:54 +00:00
enginetest.c
evp_extra_test.c
evp_test.c Fix no-scrypt 2016-03-21 14:36:22 +00:00
evptests.txt Review comments 2016-03-11 10:39:10 -05:00
exdatatest.c
exptest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
gmdifftest.c
heartbeat_test.c Use version flexible method instead of fixed version 2016-03-09 19:39:54 +01:00
hmactest.c
ideatest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
igetest.c
Makefile.in Remove the remainder of util/mk1mf.pl and companion scripts 2016-03-21 11:02:00 +01:00
md2test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
md4test.c
md5test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
mdc2test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
memleaktest.c
methtest.c
nptest.c
p5_crpt2_test.c
P1ss.cnf
P2ss.cnf
packettest.c Refactor ClientHello extension parsing 2016-03-03 13:53:26 +01:00
pbelutest.c
pkcs7-1.pem
pkcs7.pem
pkits-test.pl
r160test.c
randtest.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
rc2test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
rc4test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
rc5test.c
README
rmdtest.c
rsa_test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
run_tests.pl
secmemtest.c Fixup secmemtest for the change of CRYPTO_free() and friends 2016-02-17 12:27:53 +01:00
serverinfo.pem
sha1test.c Remove Netware and OS/2 2016-03-17 17:06:57 -04:00
sha256t.c
sha512t.c
smcont.txt
srptest.c
ssltest.c Sort cipher-list at runtime. 2016-03-16 22:21:25 -04:00
Sssdsa.cnf
Sssrsa.cnf
test_aesni
test_padlock
test_t4
test.cnf
testcrl.pem
testdsa.pem
testdsapub.pem
testec-p256.pem
testecpub-p256.pem
testp7.pem
testreq2.pem
testrsa.pem
testrsapub.pem
testsid.pem
testutil.c
testutil.h
testx509.pem
threadstest.c Implement new multi-threading API 2016-02-26 10:00:36 +00:00
times
Uss.cnf
v3-cert1.pem
v3-cert2.pem
v3nametest.c
verify_extra_test.c
wp_test.c

How to add recipes
==================

For any test that you want to perform, you write a script located in
test/recipes/, named {nn}-test_{name}.t, where {nn} is a two digit number and
{name} is a unique name of your choice.

Please note that if a test involves a new testing executable, you will need to
do some additions in test/Makefile.  More on this later.


Naming convetions
=================

A test executable is named test/{name}test.c

A test recipe is named test/recipes/{nn}-test_{name}.t, where {nn} is a two
digit number and {name} is a unique name of your choice.

The number {nn} is (somewhat loosely) grouped as follows:

05  individual symmetric cipher algorithms
10  math (bignum)
15  individual asymmetric cipher algorithms
20  openssl enc
25  certificate forms, generation and verification
30  engine and evp
70  PACKET layer
80  "larger" protocols (CA, CMS, OCSP, SSL, TSA)
90  misc


A recipe that just runs a test executable
=========================================

A script that just runs a program looks like this:

    #! /usr/bin/perl
    
    use OpenSSL::Test::Simple;
    
    simple_test("test_{name}", "{name}test", "{name}");

{name} is the unique name you have chosen for your test.

The second argument to `simple_test' is the test executable, and `simple_test'
expects it to be located in test/

For documentation on OpenSSL::Test::Simple, do
`perldoc test/testlib/OpenSSL/Test/Simple.pm'.


A recipe that runs a more complex test
======================================

For more complex tests, you will need to read up on Test::More and
OpenSSL::Test.  Test::More is normally preinstalled, do `man Test::More' for
documentation.  For OpenSSL::Test, do `perldoc test/testlib/OpenSSL/Test.pm'.

A script to start from could be this:

    #! /usr/bin/perl
    
    use strict;
    use warnings;
    use OpenSSL::Test;
    
    setup("test_{name}");
    
    plan tests => 2;                # The number of tests being performed
    
    ok(test1, "test1");
    ok(test2, "test1");
    
    sub test1
    {
        # test feature 1
    }
    
    sub test2
    {
        # test feature 2
    }
    

Changes to test/Makefile
========================

Whenever a new test involves a new test executable you need to do the
following (at all times, replace {NAME} and {name} with the name of your
test):

* among the variables for test executables at the beginning, add a line like
  this:

    {NAME}TEST= {name}test

* add `$({NAME}TEST)$(EXE_EXT)' to the assignment of EXE:

* add `$({NAME}TEST).o' to the assignment of OBJ:

* add `$({NAME}TEST).c' to the assignment of SRC:

* add the following lines for building the executable:

    $({NAME}TEST)$(EXE_EXT): $({NAME}TEST).o $(DLIBCRYPTO)
           @target=$({NAME}TEST); $(BUILD_CMD)