47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
|
|
from chunks.parser import parse
|
||
|
|
|
||
|
|
|
||
|
|
def test_parse_returns_tokens_and_lines():
|
||
|
|
md = "# Titolo\n\nParagrafo.\n"
|
||
|
|
tokens, lines = parse(md)
|
||
|
|
assert len(tokens) > 0
|
||
|
|
assert lines[0] == "# Titolo"
|
||
|
|
assert lines[2] == "Paragrafo."
|
||
|
|
|
||
|
|
|
||
|
|
def test_tokens_have_source_map():
|
||
|
|
md = "# Titolo\n\nParagrafo.\n"
|
||
|
|
tokens, lines = parse(md)
|
||
|
|
heading = next(t for t in tokens if t.type == "heading_open")
|
||
|
|
assert heading.map is not None
|
||
|
|
assert heading.map[0] == 0
|
||
|
|
|
||
|
|
|
||
|
|
def test_parse_code_fence():
|
||
|
|
md = "# T\n\n```python\ncodice\n```\n"
|
||
|
|
tokens, lines = parse(md)
|
||
|
|
fence = next((t for t in tokens if t.type == "fence"), None)
|
||
|
|
assert fence is not None
|
||
|
|
assert "codice" in fence.content
|
||
|
|
|
||
|
|
|
||
|
|
def test_parse_table():
|
||
|
|
md = "| A | B |\n|---|---|\n| 1 | 2 |\n"
|
||
|
|
tokens, lines = parse(md)
|
||
|
|
types = [t.type for t in tokens]
|
||
|
|
assert "table_open" in types
|
||
|
|
|
||
|
|
|
||
|
|
def test_parse_list():
|
||
|
|
md = "- item 1\n- item 2\n"
|
||
|
|
tokens, lines = parse(md)
|
||
|
|
types = [t.type for t in tokens]
|
||
|
|
assert "bullet_list_open" in types
|
||
|
|
|
||
|
|
|
||
|
|
def test_lines_preserves_source():
|
||
|
|
md = "Riga 1\nRiga 2\nRiga 3\n"
|
||
|
|
_, lines = parse(md)
|
||
|
|
assert lines[0] == "Riga 1"
|
||
|
|
assert lines[1] == "Riga 2"
|