summaryrefslogtreecommitdiff
path: root/tests/test_asciidoc.py
blob: 9eeca085461c2a5865e58403ec5df6bcbc1b1bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from asciidoc import asciidoc
import io
import pytest


@pytest.mark.parametrize(
    "input,expected",
    (
        (
            '{attach}file.txt',
            '<div class="paragraph"><p></p></div>\r\n'
        ),
        (
            '\\{attach}file.txt',
            '<div class="paragraph"><p>{attach}file.txt</p></div>\r\n'
        ),
        (
            'link:{attach}file.txt[file]',
            '<div class="paragraph"><p></p></div>\r\n'
        ),
        (
            'link:\\{attach}file.txt[file]',
            '<div class="paragraph"><p>' +
            '<a href="{attach}file.txt">file</a></p></div>\r\n'
        ),
        (
            'image:\\{attach}file.jpg[]',
            '<div class="paragraph"><p><span class="image">\r\n' +
            '<img src="{attach}file.jpg" alt="{attach}file.jpg" />\r\n' +
            '</span></p></div>\r\n'
        ),
        (
            'image:\\{attach}file.jpg[foo]',
            '<div class="paragraph"><p><span class="image">\r\n' +
            '<img src="{attach}file.jpg" alt="foo" />\r\n</span></p></div>\r\n'
        ),
    )
)
def test_ignore_attribute(input, expected):
    infile = io.StringIO(input)
    outfile = io.StringIO()
    options = [
        ('--out-file', outfile),
        ('--no-header-footer', '')
    ]
    asciidoc.execute('asciidoc', options, [infile])
    assert outfile.getvalue() == expected