2022-01-16 08:24:05 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
from pre_commit_hooks.tests_should_end_in_test import main
|
2014-03-19 12:25:36 +08:00
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_all_pass():
|
|
|
|
ret = main(['foo_test.py', 'bar_test.py'])
|
2014-03-19 12:25:36 +08:00
|
|
|
assert ret == 0
|
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_one_fails():
|
|
|
|
ret = main(['not_test_ending.py', 'foo_test.py'])
|
2014-03-19 12:25:36 +08:00
|
|
|
assert ret == 1
|
2015-03-12 08:44:59 +08:00
|
|
|
|
|
|
|
|
2019-12-05 07:06:32 +08:00
|
|
|
def test_regex():
|
|
|
|
assert main(('foo_test_py',)) == 1
|
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_django_all_pass():
|
2019-02-12 11:56:15 +08:00
|
|
|
ret = main((
|
|
|
|
'--django', 'tests.py', 'test_foo.py', 'test_bar.py',
|
|
|
|
'tests/test_baz.py',
|
|
|
|
))
|
2015-03-12 08:44:59 +08:00
|
|
|
assert ret == 0
|
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_django_one_fails():
|
|
|
|
ret = main(['--django', 'not_test_ending.py', 'test_foo.py'])
|
2015-03-12 08:44:59 +08:00
|
|
|
assert ret == 1
|
|
|
|
|
|
|
|
|
2015-11-19 16:18:38 +08:00
|
|
|
def test_validate_nested_files_django_one_fails():
|
2019-02-01 11:19:10 +08:00
|
|
|
ret = main(['--django', 'tests/not_test_ending.py', 'test_foo.py'])
|
2015-11-19 16:18:38 +08:00
|
|
|
assert ret == 1
|
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_not_django_fails():
|
|
|
|
ret = main(['foo_test.py', 'bar_test.py', 'test_baz.py'])
|
2015-03-12 08:44:59 +08:00
|
|
|
assert ret == 1
|
|
|
|
|
|
|
|
|
2019-02-01 11:19:10 +08:00
|
|
|
def test_main_django_fails():
|
|
|
|
ret = main(['--django', 'foo_test.py', 'test_bar.py', 'test_baz.py'])
|
2015-03-12 08:44:59 +08:00
|
|
|
assert ret == 1
|
2022-06-08 00:10:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_main_pytest_test_first():
|
|
|
|
assert main(['--pytest-test-first', 'test_foo.py']) == 0
|
|
|
|
assert main(['--pytest-test-first', 'foo_test.py']) == 1
|