Skip to content
Snippets Groups Projects
Forked from cnafsd / ngx_http_voms_module
258 commits behind the upstream repository.

ngx_http_voms_module Testing

Description

Setup and files to test the ngx_http_voms_module are contained in the t folder. The Openresty data-driven testsuite has been adopted for testing.

Test fixture setup

Proxy certificates are in the certs folder (see README.md for further details), while trust-anchors (e.g. igi-test-ca.pem) are contained in trust-anchors.

Nginx server certificate and key are nginx_voms_example.cert.pem and nginx_voms_example_key.pem, respectively, and they are contained in certs.

To perform correctly the VOMS AC validation, a *.lsc or *.pem file is needed, see VOMS client 3.3.0 User Guide for further details. The voms.example.lsc can be found in vomsdir/test.vo.

Running Tests

To run the tests made available in t just type

prove -v 

from t' s parent directory.

Using the docker image provided to exploit Openresty in the Storm2 project (see README.md for further details):

cp -r t /tmp
cd /tmp
prove -v

A copy of the t folder is needed since the prove command creates a directory servroot in t.

Test coverage

To enable test coverage pass the --coverage option to both the compiler and the linker. For example, if the build happens inside the storm2/nginx-voms-build image:

    % ./configure ${RESTY_CONFIG_OPTIONS} --add-module=../ngx_http_voms_module --with-debug --with-cc-opt="-g -O0 --coverage" --with-ld-opt="--coverage"
    % make && make install

Building in debug mode, with no optimizations, helps to better associate coverage information to source code.

The above command generates data files aside the source files for all Nginx. To enable coverage only for ngx_http_voms_module the --coverage option should be passed only when compiling ngx_http_voms_module.cpp (to be done).

Then run the tests, e.g. with prove. This will create other data files with coverage information. To view that information, run gcov <source of object file>, e.g. gcov /home/build/openresty-1.13.6.1/build/nginx-1.13.6/objs/addon/src/ngx_http_voms_module.o. This will produce files with the .gcov extension in the current directory.

Check result on storm2 ngx_http_voms_module pages