mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-23 20:33:08 +00:00
25 lines
892 B
Python
25 lines
892 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
# To run use python3 -m pytest --capture=sys
|
||
|
|
||
|
from adapter import available_terminals
|
||
|
import os
|
||
|
|
||
|
|
||
|
def test_available_terminals():
|
||
|
assert available_terminals, 'No available_terminals found.'
|
||
|
terminal_names = [terminal.__name__ for terminal in available_terminals]
|
||
|
non_terminals = ['NullAdapter', '__init__']
|
||
|
assert all(terminal not in terminal_names for terminal in non_terminals)
|
||
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||
|
terminals_dir = os.path.join(script_dir, 'adapter', 'implementations')
|
||
|
assert os.path.isdir(terminals_dir), 'Not found: ' + terminals_dir
|
||
|
for filename in os.listdir(terminals_dir):
|
||
|
terminal, ext = os.path.splitext(filename)
|
||
|
if ext.lower() == '.py':
|
||
|
assert terminal in (terminal_names + non_terminals), terminal
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
test_available_terminals()
|