Skip to main content

App for unit testing with GDB

Project description

GUnit

App for executing C/C++ unit tests using GDB.

Documentation: https://github.com/estcube/GUnit/wiki

Installation

The easiest way to install Gunit is through pip: https://pypi.org/project/gunit/

pip install gunit

Example

For example if OpenOCD is used as GDB server and we are testing on an ARM chip. Please note that you need to have the openOCD server running in the background.

Secondly, all the outputs will be put into gunit directory. To specify where the directory will be generated, define build_dir argument for the constructor. By default, it will be your current working directory.

from gunit import GUnit

# Create a GUnit object for OpenOCD
gunit = GUnit.openOCD("localhost:9000", executable='arm-none-eabi-gdb')

# Execute the tests in the compiled file
gunit.test("test.elf")

# Construct a JUnit test report
gunit.junit()

Here you can see a simple example of the .cpp file that could be used with the python example above.

#include "GUnit.hpp"

gunit::test t1(
  "test1",                  // Name of the test case
  [](){                     // Lambda expression
    gunit::affirm(20) > 10; // The test case to check
  }
);

gunit::test t2("test2", [](){
  gunit::affirm(10) > 20;
  gunit::affirm(11) > 20;
});

gunit::test t3("test3", [](){
  std::list l1 = std::list<int>();
  l1.push_back(10);
  l1.push_back(12);
  l1.push_back(14);

  std::list l2 = std::list<int>();
  l2.push_back(10);
  l2.push_back(12);
  l2.push_back(14);

  gunit::affirm(l1) == l2;
});

gunit::test t4("test4", [](){
  std::list l1 = std::list<int>();
  l1.push_back(10);
  l1.push_back(12);
  l1.push_back(14);

  std::list l2 = std::list<int>();
  l2.push_back(10);
  l2.push_back(22);
  l2.push_back(34);

  gunit::affirm(l1) == l2;
});

gunit::test t5("test5", [](){
  struct a {
    int b;
    char c;
    char d;
    char e;
    char f;
  };

  struct a one(10, 'a', 'e', 'i', 'o');
  struct a two(10, 'a', 'e', 'i', 'o');

  gunit::affirm(one) == two;
});

gunit::test t6("test6", [](){
  struct a {
    int b;
    char c;
    char d;
    char e;
    char f;
  };

  struct a one(10, 'a', 'e', 'i', 'o');
  struct a two(22, 'x', 'e', 'o', 'm');

  gunit::affirm(one) == two;
});

gunit::test t7("test7", [](){
  gunit::affirm(10) > 5;
  gunit::affirm(10) >= 10;
  gunit::affirm(10) <= 10;
  gunit::affirm(10) <= 15;
  gunit::affirm(1.0) == 1.0;
  gunit::affirm(2.0) != 1.0;
});

int main() {
  gunit::suite::run(); // The test are added into the global test list on creation of the test struct
  gunit::end();        // Signal the end of the unit test
  while(1);
}

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

gunit-0.1.59.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

gunit-0.1.59-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file gunit-0.1.59.tar.gz.

File metadata

  • Download URL: gunit-0.1.59.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.10

File hashes

Hashes for gunit-0.1.59.tar.gz
Algorithm Hash digest
SHA256 d2df0da44eaffe63ac5b3dde5ae752f1b432eb12285b59f4d3ca48d96cd1ddb7
MD5 7541b51f8be0e35a5b4efa86230c2233
BLAKE2b-256 3e6051ca21714a1455020d0b97c59328cee327c7e57e78debeffc726c9f6fb7b

See more details on using hashes here.

File details

Details for the file gunit-0.1.59-py3-none-any.whl.

File metadata

  • Download URL: gunit-0.1.59-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.10

File hashes

Hashes for gunit-0.1.59-py3-none-any.whl
Algorithm Hash digest
SHA256 b03704fe0b206b740086d52f4ad8f3062f90044a5bfe11ac3fc0d21ab5973ba2
MD5 3f914ae505cb4e09abe2542547f710c3
BLAKE2b-256 b2496b5c7868ffdf96ff7196592ca3bbf598624b14dfa159852ce7e40a994d0f

See more details on using hashes here.

Supported by

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