Skip to main content

dependent testing framework

Project description

# Deptest

Deptest is a testing framework to handle situation when your need to control
the execution order of the test units. Seriously, deptest does not follow
the rules of unit testing, in other words, using this tool means
you are thinking againest the philosophy of unit testing:
“to isolate each part of the program and show that the individual parts are correct”.

But so what? Programming needs diversity, so does testing methodology.
If the situation really exists, we should do something with it,
that's why deptest is created, it could be considered as a different
approach to organize your tests. Try it if you are stuck with unit testing,
maybe it'll be helpful :)

## Installation

pip install deptest

## Usage

The core part of using deptest is to use `depend_on` decorator on your test functions. `depend_on` describes that a test function should be run if and
only if its dependency function is `OK`. If dependency is `FAILED`, then the
test function will not be executed and the status will be set to `UNMET`.

1. Case 1, simple dependency

```python
from deptest import depend_on

@depend_on('test_b')
def test_a():
print 'a, depend on a'

def test_b():
print 'b'
```

This will ensure `test_a` run after `test_b` even though `test_a` is defined before `test_b`.

2. Case 2, passing return value

```python
from deptest import depend_on

@depend_on('test_b', with_return=True)
def test_a(name):
print 'a, depend on', name

def test_b():
print 'b'
return 'b'
```

With `with_return` argument set to `True`, the return value of `test_b`
will be passed into `test_a`. By default return values of dependencies
won't be passed.

2. Case 3, complicated dependencies

```python
from deptest import depend_on

@depend_on('test_c', with_return=True)
@depend_on('test_b', with_return=True)
def test_a(name1, name2):
print 'a, depend on', name1, name2
return 'a'

@depend_on('test_d')
def test_b():
print 'b'
return 'b'

@depend_on('test_d')
def test_c():
print 'c'
return 'c'

def test_d():
print 'd'
return 'd'
```

The dependent graph of the four functions will be:

```
d
| \
b c
| /
a
```

Thus the execute sequence will be `d, b, c, a` or `d, c, b, a`, the results are fairly the same.

```
$ deptest -s test/simple_test.py
d
→ simple_test.test_d... OK
b
→ simple_test.test_b... OK
c
→ simple_test.test_c... OK
a, depend on b c
→ simple_test.test_a... OK
______________________________________________________________________
Ran 4 tests, OK 4, FAILED 0, UNMET 0
```

You can see some practical examples in [`examples/`](examples) folder,
It's worth mentioning that [`http_api_test.py`](examples/http_api_test.py)
simulates an HTTP API testing case, which is mostly the reason why I develop this tool.

> Note: to run `http_api_test.py`, you need [HTTPretty](https://github.com/gabrielfalcao/HTTPretty) installed.

Deptest provides a cli command also called `deptest`, it supports some common
arguments of `nosetests`, like `-s` and `--nocapture`, see detail usage by `deptest -h`:

```
usage: deptest [-h] [-s] [--nologcapture] [--dry] [--debug] [PATH [PATH ...]]

positional arguments:
PATH files or dirs to scan

optional arguments:
-h, --help show this help message and exit
-s, --nocapture Don't capture stdout (any stdout output will be printed
immediately)
--nologcapture Don't capture logging
--dry Dry run, only show matched files
--debug Set logging level to debug for deptest logger
```

## Screenshots

See it in action, run `deptest examples`:

![Normal Mode](_images/normal.png)

With `--nologcapture` argument:

![With -s Stdout](_images/withstdout.png)

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

deptest-0.1.7.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

deptest-0.1.7-py2-none-any.whl (17.4 kB view details)

Uploaded Python 2

File details

Details for the file deptest-0.1.7.tar.gz.

File metadata

  • Download URL: deptest-0.1.7.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for deptest-0.1.7.tar.gz
Algorithm Hash digest
SHA256 b87b2addd070640883038ab9a68f9b6188f5224af90bb301cb9bdb44ea0c1a7a
MD5 aafa5e91d80906bcdc7228c335780fe9
BLAKE2b-256 40516afe8cf3d6d7abc480e8871cd0c6bbf175ec51509a22d2af46a450644059

See more details on using hashes here.

File details

Details for the file deptest-0.1.7-py2-none-any.whl.

File metadata

File hashes

Hashes for deptest-0.1.7-py2-none-any.whl
Algorithm Hash digest
SHA256 51106eada828830e7ee725cdfe82238e52b27b5edd479cd1d22258212b86ea26
MD5 0652cbf5df89b3e3191bb07ba357daab
BLAKE2b-256 7f33aaef7287eaeda2c5af1e78891380a778beec4df322cbfece4869fd43956b

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