Skip to main content

A pytest plugin for writing inline tests.

Project description

pytest-inline

pytest-inline is a plugin for pytest that writes inline tests.

Inline testing is a new granularity of testing that make it easier to check individual program statements. An inline test is a statement that allows to provide arbitrary inputs and test oracles for checking the immediately preceding statement that is not an inline test.

Table of contents

  1. Example
  2. Install
  3. Use
  4. API
  5. Citation

Example

The regular expression (Line 5) in this code snippet checks if variable name matches a regex for a pattern that ends in a colon and has at least one digit The inline test (Line 6) that we write for target statement (Line 5) consists of three parts:

  • Declaration with Here() constructor
  • Assigning inputs with given() function calls
  • Specifying test oracles with check_*() function calls
def get_assignment_map_from_checkpoint(tvars, init_c):
    ...
    for var in tvars:
        name = var.name
        m = re.match("^(.*):\\d+$", name)
        Here().given(name, "a:0").check_eq(m, "a")
        if m is not None:
            name = m.group(1)
    ...

Install

Use pip install pytest-inline to install this plugin.

Use

Use pytest . to run all inline tests in working directory .

Use pytest {filename} to run all inline tests in a Python file.

API

Declaration of an inline test

  • Here(test_name, parameterized, repeated, tag, disabled, timeout):
  1. test_name is a string that represents the name of the test. The default value is the file name + line number of the test statement.

  2. parameterized is a boolean value that indicates whether the test is parameterized. The default value is false.

  3. repeated is an integer that indicates how many times the test is repeated. The default value is 1.

  4. tag is a string that represents the tag of the test. The default value is an empty string.

  5. disabled is a boolean value that indicates whether the test is disabled. The default value is false.

  6. timeout is an float that represents the amount of time to run the test until it will timeout. The default value is -1.0. If a test times out, it will throw a timeout exception.

Provide any assumptions using an assume call

  • assume(condition): Checks if the condition holds, if the condition does not hold the test will not be run.

    If an assume check is added, it must occur before any given statements and only one can be added.

    Below is a toy example. It merely illustrates how a call would look with an assume statement. More complex logic can be used in the assume statment, such as checking a given system version and assuming that the test should only run if the assumed system version is true.

    def FileHeader(self):
            dt = self.date_time
            dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
            Here().assume(2 < 4).given(dt, (1980, 1, 25, 17, 13, 14)).check_eq(dosdate, 57)
    

Provide test inputs using given calls

  • given(variable, value): Assign the value to the variable.

    Note that any number of given statements can be added. Below is a small example of this functionality. Additionally, the first given call must proceed either a Here() declaration or a assume() call if it is added.

    def multiple_givens(a, c):
        b = a + c
        Here().given(a, 2).given(c, a + 1).check_true(b == 5)
    

Specify test oracles using check calls

  • check_eq(actual_value, expected_value): Checks if the actual value is equal to the expected value.

  • check_neq(actual_value, expected_value): Checks if the actual value is not equal to the expected value.

  • check_true(expr): Checks if the boolean expression is true.

  • check_false(expr): Checks if the boolean expression is false.

  • check_none(variable): Checks if the variable is none.

  • check_not_none(variable): Checks if the variable is not none.

  • check_same(actual_value, expected_value): Checks if the actual value and the expected value refer to the same object.

  • check_not_same(actual_value, expected_value): Checks if the actual value and the expected value refer to different objects.

Only one test oracle can be specified for a given inline test call.

Citation

Title: Inline Tests

Authors: Yu Liu, Pengyu Nie, Owolabi Legunsen, Milos Gligoric

If you have used I-Test in a research project, please cite the research paper in any related publication:

@inproceedings{LiuASE22InlineTests,
  title =        {Inline Tests},
  author =       {Yu Liu and Pengyu Nie and Owolabi Legunsen and Milos Gligoric},
  pages =        {to appear},
  booktitle =    {International Conference on Automated Software Engineering},
  year =         {2022},
}

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

pytest-inline-1.0.1.tar.gz (24.4 kB view hashes)

Uploaded Source

Built Distribution

pytest_inline-1.0.1-py3-none-any.whl (22.7 kB view hashes)

Uploaded Python 3

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