An open API service indexing awesome lists of open source software.

https://github.com/ptomulik/scons-tool-cxxtestgen

SCons tool for cxxtestgen command
https://github.com/ptomulik/scons-tool-cxxtestgen

cxxtest python scons scons-library tool

Last synced: 2 months ago
JSON representation

SCons tool for cxxtestgen command

Awesome Lists containing this project

README

        

scons-tool-cxxtestgen
=====================

.. image:: https://badge.fury.io/py/scons-tool-cxxtestgen.svg
:target: https://badge.fury.io/py/scons-tool-cxxtestgen
:alt: PyPi package version

.. image:: https://travis-ci.org/ptomulik/scons-tool-cxxtestgen.svg?branch=master
:target: https://travis-ci.org/ptomulik/scons-tool-cxxtestgen
:alt: Travis CI build status

.. image:: https://ci.appveyor.com/api/projects/status/github/ptomulik/scons-tool-cxxtestgen?svg=true
:target: https://ci.appveyor.com/project/ptomulik/scons-tool-cxxtestgen

SCons_ tool for cxxtestgen_ command.

Installation
------------

There are few ways to install this tool for your project.

From pypi_
^^^^^^^^^^

This method may be preferable if you build your project under a virtualenv. To
add cxxtestgen tool from pypi_, type (within your wirtualenv):

.. code-block:: shell

pip install scons-tool-loader scons-tool-cxxtestgen

or, if your project uses pipenv_:

.. code-block:: shell

pipenv install --dev scons-tool-loader scons-tool-cxxtestgen

Alternatively, you may add this to your ``Pipfile``

.. code-block::

[dev-packages]
scons-tool-loader = "*"
scons-tool-cxxtestgen = "*"

The tool will be installed as a namespaced package ``sconstool.cxxtestgen``
in project's virtual environment. You may further use scons-tool-loader_
to load the tool.

As a git submodule
^^^^^^^^^^^^^^^^^^

#. Create new git repository:

.. code-block:: shell

mkdir /tmp/prj && cd /tmp/prj
touch README.rst
git init

#. Add the `scons-tool-cxxtestgen`_ as a submodule:

.. code-block:: shell

git submodule add git://github.com/ptomulik/scons-tool-cxxtestgen.git site_scons/site_tools/cxxtestgen

#. For python 2.x, create ``__init__.py`` in ``site_tools`` directory:

.. code-block:: shell

touch site_scons/site_tools/__init__.py

this will allow to directly import ``site_tools.cxxtestgen`` (this may be
required by other tools).

Usage example
-------------

#. Create simple test file

.. code-block:: cpp

// MyTestSuite1.t.h
#include
class MyTestSuite1 : public CxxTest::TestSuite
{
public:
void testAddition(void)
{
TS_ASSERT(1 + 1 > 1);
TS_ASSERT_EQUALS(1 + 1, 2);
}
};

#. Create simple SConstruct file

.. code-block:: python

# SConstruct
# TODO: uncomment following lines if the tool is installed via pip/pipenv
# import sconstool.loader
# sconstool.loader.extend_toolpath(transparent=True)
env = Environment(tools = ['cxxtestgen'])
env.CxxTestGen('MyTestSuite')

#. Try it out:

.. code-block:: shell

scons

Builders
--------

- ``CxxTestGen([target], sources, **kw)`` - invokes ``cxxtestgetn ...``.
- ``CxxTestGenPart([target], sources, **kw)`` - invokes ``cxxtestgen --part ...``,
this is used to generate ``*.t.cpp`` files which define tests but have no
``main()``.
- ``CxxTestGenRoot(target, **kw)`` - invokes ``cxxtestgen --root ...``, this
pseudo-builder generates the root ``*.t.cpp`` file that provides the
``main()`` function, should be used in pair with ``CxxTestGenPart``.

Construction variables used
---------------------------

The following SCons construction variables might be used to customize the
**cxxtestgen** tool.

+------------------------+---------------------------------------------------+
| Name | Description |
+========================+===================================================+
| CXXTESTBINPATH | search path for cxxtest executables/scripts; by |
| | default it includes the following locations: |
| | |
| | - ``$CXXTESTINSTALLDIR/bin``, |
| | - ``$CXXTESTINSTALLDIR/python/python3/scripts``, |
| | - ``$CXXTESTINSTALLDIR/python/scripts``, |
| | |
| | in that order. |
+------------------------+---------------------------------------------------+
| CXXTESTGEN | path to cxxtestgen python script; by default it |
| | will contain a result of search, first in |
| | ``$CXXTESTBINPATH``, then in SCons ``PATH``. |
+------------------------+---------------------------------------------------+
| CXXTESTGENFLAGS | additional flags to be passed to cxxtestgen. |
+------------------------+---------------------------------------------------+
| CXXTESTGENPYTHON | python interpreter to be used to run cxxtestgen; |
| | by default it is being chosen automatically; |
| | python3 is preferred, but if the cxxtestgen seems |
| | to not support it, python2 is picked up; if |
| | neither python3 nor python2 are available in |
| | standard SCons search PATH, ``sys.executable`` |
| | (the interpreter running SCons script) is used. |
+------------------------+---------------------------------------------------+
| CXXTESTGENRUNNER | name of the listener class for cxxtestgen (used |
| | as ``--runner=$CXXTESTGENRUNNER``); defaults to |
| | ``ErrorPrinter``. |
+------------------------+---------------------------------------------------+
| CXXTESTGENSUFFIX | suffix for files produced by cxxtestgen (.t.cpp). |
+------------------------+---------------------------------------------------+
| CXXTESTGENSRCSUFFIX | suffix of cxxtestgen's input files (.t.h). |
+------------------------+---------------------------------------------------+
| CXXTESTINSTALLDIR | root directory of custom cxxtest installation; |
| | defaults to ``#/cxxtest``, where ``#`` is the |
| | project's top-level directory. |
+------------------------+---------------------------------------------------+

LICENSE
-------

Copyright (c) 2018-2020 by Paweł Tomulik

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE

.. _scons-tool-cxxtestgen: https://github.com/ptomulik/scons-tool-cxxtestgen
.. _scons-tool-loader: https://github.com/ptomulik/scons-tool-loader
.. _SCons: http://scons.org
.. _pipenv: https://pipenv.readthedocs.io/
.. _pypi: https://pypi.org/
.. _cxxtestgen: http://cxxtest.com/guide.html#cxxtestgen

..