mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-14 00:34:03 +00:00
3eb93acc18
This commit re-organizes all the source distribution contents to present users with the simple script, while moving the rest in extras. Also autoconf/automake scripts were removed, back to minimalism. The rationale of this change is that Tomb really only consists of a script and users with no extra needs should just be presented with it with no need for anything else. Any other thing on top of the Tomb script is an extra and can be even distributed separately or integrated in distributions.
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
from tomblib.parser import *
|
|
|
|
class TestWrong:
|
|
def test_short(self):
|
|
'''short format is not supported anymore'''
|
|
assert parse_line('[!] foo') is None
|
|
def test_colors(self):
|
|
'''parsing while using colors should fail'''
|
|
parse = parse_line('\033[32mundertaker [W] url protocol not recognized: nonscheme')
|
|
assert parse is None
|
|
def test_no_spaces_in_programname(self):
|
|
parse = parse_line('tomb open [W] url protocol not recognized: nonscheme')
|
|
assert parse is None
|
|
|
|
class TestFound:
|
|
def test_simple(self):
|
|
parse = parse_line('[m][found] scheme:///and/path')
|
|
assert parse is not None
|
|
assert parse['type'] == 'found'
|
|
assert parse['content'] == 'scheme:///and/path'
|
|
assert 'scheme' in parse
|
|
assert parse['scheme'] == 'scheme'
|
|
assert 'path' in parse
|
|
assert parse['path'] == '/and/path'
|
|
|
|
class TestGeneric:
|
|
def test_simple(self):
|
|
parse = parse_line('undertaker [W] url protocol not recognized: nonscheme')
|
|
assert parse is not None
|
|
assert parse['type'] == 'warning'
|
|
assert parse['content'] == 'url protocol not recognized: nonscheme'
|
|
|
|
def test_debug(self):
|
|
parse = parse_line('undertaker [D] url protocol not recognized: nonscheme')
|
|
assert parse is not None
|
|
assert parse['type'] == 'debug'
|
|
assert parse['content'] == 'url protocol not recognized: nonscheme'
|
|
|
|
def test_success(self):
|
|
parse = parse_line('undertaker (*) url protocol not recognized: nonscheme')
|
|
assert parse is not None
|
|
assert parse['type'] == 'success'
|
|
assert parse['content'] == 'url protocol not recognized: nonscheme'
|
|
|
|
def test_dash(self):
|
|
parse = parse_line('tomb-open [W] url protocol not recognized: nonscheme')
|
|
assert parse is not None
|
|
assert parse['type'] == 'warning'
|
|
assert parse['content'] == 'url protocol not recognized: nonscheme'
|
|
|
|
|
|
|