Skip to main content

SCons tool for cxxtestgen command

Project description

PyPi package version Travis CI build status https://ci.appveyor.com/api/projects/status/github/ptomulik/scons-tool-cxxtestgen?svg=true

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):

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

or, if your project uses pipenv:

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

Alternatively, you may add this to your Pipfile

[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

  1. Create new git repository:

    mkdir /tmp/prj && cd /tmp/prj
    touch README.rst
    git init
  2. Add the scons-tool-cxxtestgen as a submodule:

    git submodule add git://github.com/ptomulik/scons-tool-cxxtestgen.git site_scons/site_tools/cxxtestgen
  3. For python 2.x, create __init__.py in site_tools directory:

    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

  1. Create simple test file

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

    # 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')
  3. Try it out:

    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 by Pawel Tomulik <ptomulik@meil.pw.edu.pl>

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scons-tool-cxxtestgen-0.1.5.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

scons_tool_cxxtestgen-0.1.5-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

Details for the file scons-tool-cxxtestgen-0.1.5.tar.gz.

File metadata

  • Download URL: scons-tool-cxxtestgen-0.1.5.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for scons-tool-cxxtestgen-0.1.5.tar.gz
Algorithm Hash digest
SHA256 99fe82033f23da441fa553e0a4be6cb27d9455d18a2ecaadc0968b4013fdc03a
MD5 e367c4e46ebb30decacee79dd50bee30
BLAKE2b-256 de070a3e2fd6fd0c128953428c16d3138e1c4322c86ca54ff92334b8a1410f4b

See more details on using hashes here.

File details

Details for the file scons_tool_cxxtestgen-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: scons_tool_cxxtestgen-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for scons_tool_cxxtestgen-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a93884ddd4b3ec129a0f2d4204c5aef066bcbfb69ecaa3054ebcf19aeeed571f
MD5 dc763f8e3bafa5f2a52b095b2f9917e0
BLAKE2b-256 a014e7096f17371d74ec8aec013d22dfe6db0a50ce2765b924dea93f0cbd6190

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page