Files
openssl/test
Viktor Dukhovni fbb82a60dc Move peer chain security checks into x509_vfy.c
A new X509_VERIFY_PARAM_set_auth_level() function sets the
authentication security level.  For verification of SSL peers, this
is automatically set from the SSL security level.  Otherwise, for
now, the authentication security level remains at (effectively) 0
by default.

The new "-auth_level" verify(1) option is available in all the
command-line tools that support the standard verify(1) options.

New verify(1) tests added to check enforcement of chain signature
and public key security levels.  Also added new tests of enforcement
of the verify_depth limit.

Updated documentation.

Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2016-04-03 11:35:35 -04:00
..
2016-03-01 11:59:28 -05:00
2012-12-07 18:47:47 +00:00
2016-03-17 17:06:57 -04:00
2016-01-26 16:40:43 -05:00
2015-11-20 13:40:53 +00:00
2016-03-10 14:53:04 -05:00
2016-03-17 17:06:57 -04:00
2016-03-17 17:06:57 -04:00
2016-04-03 00:23:56 +01:00
2016-03-21 16:33:59 +00:00
2015-12-16 16:14:49 -05:00
2016-02-28 22:54:54 +00:00
2016-02-28 22:54:54 +00:00
2016-03-21 14:36:22 +00:00
2016-03-17 17:06:57 -04:00
2015-09-02 23:03:43 -04:00
2016-03-17 17:06:57 -04:00
2016-01-26 16:40:43 -05:00
2016-03-17 17:06:57 -04:00
2016-01-26 16:40:43 -05:00
2016-03-17 17:06:57 -04:00
2016-03-17 17:06:57 -04:00
2015-09-04 14:30:38 -04:00
2015-04-20 07:23:04 -04:00
2015-04-20 07:23:04 -04:00
2015-09-03 18:37:27 +01:00
2011-12-11 16:39:25 +00:00
2016-01-26 16:40:43 -05:00
2016-03-17 17:06:57 -04:00
2016-03-17 17:06:57 -04:00
2016-03-17 17:06:57 -04:00
2016-01-26 16:40:43 -05:00
2016-01-26 16:40:43 -05:00
2016-03-17 17:06:57 -04:00
2016-03-17 17:06:57 -04:00
2016-01-26 16:40:43 -05:00
2016-01-26 16:40:43 -05:00
2016-03-27 23:59:04 +02:00
2009-04-27 19:04:23 +00:00
2013-03-31 14:32:05 +02:00
2015-04-20 07:23:04 -04:00
2014-12-04 11:55:03 +01:00
2016-01-26 16:40:43 -05:00
2016-01-26 16:40:43 -05:00
2009-04-20 11:33:12 +00:00
2015-09-02 21:22:44 +01:00

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)