1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #!/usr/bin/env python3
- """
- This test script verifies that the random ordering of tests inside
- Catch2 is invariant in regards to subsetting. This is done by running
- the binary 3 times, once with all tests selected, and twice with smaller
- subsets of tests selected, and verifying that the selected tests are in
- the same relative order.
- """
- import subprocess
- import sys
- import random
- def list_tests(self_test_exe, tags, rng_seed):
- cmd = [self_test_exe, '--list-test-names-only', '--order', 'rand',
- '--rng-seed', str(rng_seed)]
- tags_arg = ','.join('[{}]~[.]'.format(t) for t in tags)
- if tags_arg:
- cmd.append(tags_arg)
- process = subprocess.Popen(
- cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- stdout, stderr = process.communicate()
- if stderr:
- raise RuntimeError("Unexpected error output:\n" + process.stderr)
- result = stdout.split(b'\n')
- result = [s for s in result if s]
- if len(result) < 2:
- raise RuntimeError("Unexpectedly few tests listed (got {})".format(
- len(result)))
- return result
- def check_is_sublist_of(shorter, longer):
- assert len(shorter) < len(longer)
- assert len(set(longer)) == len(longer)
- indexes_in_longer = {s: i for i, s in enumerate(longer)}
- for s1, s2 in zip(shorter, shorter[1:]):
- assert indexes_in_longer[s1] < indexes_in_longer[s2], (
- '{} comes before {} in longer list.\n'
- 'Longer: {}\nShorter: {}'.format(s2, s1, longer, shorter))
- def main():
- self_test_exe, = sys.argv[1:]
- # We want a random seed for the test, but want to avoid 0,
- # because it has special meaning
- seed = random.randint(1, 2 ** 32 - 1)
- list_one_tag = list_tests(self_test_exe, ['generators'], seed)
- list_two_tags = list_tests(self_test_exe, ['generators', 'matchers'], seed)
- list_all = list_tests(self_test_exe, [], seed)
- # First, verify that restricting to a subset yields the same order
- check_is_sublist_of(list_two_tags, list_all)
- check_is_sublist_of(list_one_tag, list_two_tags)
- if __name__ == '__main__':
- sys.exit(main())
|