Esempio n. 1
0
def test_cfussy_filter():
    assert_output('cfussy', C_FUSSY_HELLO_WORLD, "HELLO, world\n", ext=".c")
    with wrap() as wrapper:
        wrapper.debug = False
        doc = Doc("hello.c|cfussy", contents=C_HELLO_WORLD, wrapper=wrapper)
        wrapper.run_docs(doc)
        assert wrapper.state == 'error'
Esempio n. 2
0
def test_bleach_filter():
    assert_output("bleach", "an <script>evil()</script> example",
                  'an &lt;script&gt;evil()&lt;/script&gt; example')
    assert_output("bleach",
                  "an <script>evil()</script> example",
                  'an &lt;script&gt;evil()&lt;/script&gt; example',
                  ext=".html")
Esempio n. 3
0
def test_cfussy_filter():
    assert_output('cfussy', C_FUSSY_HELLO_WORLD, "HELLO, world\n", ext=".c")
    with wrap() as wrapper:
        wrapper.debug = False
        doc = Doc("hello.c|cfussy",
                contents=C_HELLO_WORLD,
                wrapper=wrapper)
        wrapper.run_docs(doc)
        assert wrapper.state == 'error'
def test_rest_to_html():
    expected = """\
<ul class="simple">
<li>a bullet point using &quot;*&quot;<ul>
<li>a sub-list using &quot;-&quot;<ul>
<li>yet another sub-list</li>
</ul>
</li>
<li>another item</li>
</ul>
</li>
</ul>
"""

    assert_output('rstbody', RST, expected)
Esempio n. 5
0
def test_rest_to_html():
    expected = """\
<ul class="simple">
<li>a bullet point using &quot;*&quot;<ul>
<li>a sub-list using &quot;-&quot;<ul>
<li>yet another sub-list</li>
</ul>
</li>
<li>another item</li>
</ul>
</li>
</ul>
"""

    assert_output('rstbody', RST, expected)
Esempio n. 6
0
def test_process_method_with_dict():
    assert_output("processwithdict", "hello", {'1' : "Dexy processed the text 'hello'"})
Esempio n. 7
0
def test_process_method_with_dict():
    assert_output("processwithdict", "hello", {'1' : "Dexy processed the text 'hello'"})
Esempio n. 8
0
def test_rhino():
    assert_output('rhino', "print(6*7)", "42\n")
Esempio n. 9
0
def test_php():
    php = inspect.cleandoc("""<?php
    echo(1+1);
    ?>""")
    assert_output('php', php, "2")
Esempio n. 10
0
def test_pyg4rst():
    o = {}
    o['1'] = ".. code:: python\n\n  print 'hello'"
    assert_output("pyg4rst", "print 'hello'", o, ext=".py")
Esempio n. 11
0
def test_fortran_filter():
    assert_output('fortran', FORTRAN_HELLO_WORLD, "Hello, world!", ext=".f")
Esempio n. 12
0
def test_head_filter():
    assert_output("head", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n",
                  "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n")
Esempio n. 13
0
def test_node():
    assert_output("nodejs", "console.log('hello');", "hello\n")
Esempio n. 14
0
def test_python():
    assert_output('py', 'print(1+1)', "2" + os.linesep)
Esempio n. 15
0
def test_php():
    php = inspect.cleandoc("""<?php
    echo(1+1);
    ?>""")
    assert_output('php', php, "2")
Esempio n. 16
0
def test_lyx():
    assert_output("lyxjinja",
            "dexy:foo.py|idio:multiply",
            "<< d['foo.py|idio']['multiply'] >>",
            ".tex")
Esempio n. 17
0
def test_process_method():
    assert_output("process", "hello", "Dexy processed the text 'hello'")
Esempio n. 18
0
def test_process_text_filter():
    assert_output("processtext", "hello", "Dexy processed the text 'hello'")
Esempio n. 19
0
def test_process_method():
    assert_output("process", "hello", "Dexy processed the text 'hello'")
Esempio n. 20
0
def test_jython_filter():
    assert_output('jython', "print 1+1", "2\n")
Esempio n. 21
0
def test_bash():
    assert_output('bash', 'echo "hello"', "hello\n")
Esempio n. 22
0
def test_ppjson_filter():
    assert_output("ppjson", '{"foo" :123, "bar" :456}',
                  """{\n    "bar": 456, \n    "foo": 123\n}""")
Esempio n. 23
0
def test_rhino():
    assert_output('rhino', "print(6*7)", "42\n")
Esempio n. 24
0
def test_clang_filter():
    assert_output('clang', C_HELLO_WORLD, "HELLO, world\n", ext=".c")
Esempio n. 25
0
def test_ruby():
    assert_output('rb', 'puts "hello"', "hello\n")
Esempio n. 26
0
def test_redclothl():
    expected = "hello \\textbf{bold}" + os.linesep + os.linesep
    assert_output("redclothl", "hello *bold*", expected)
Esempio n. 27
0
def test_lua():
    assert_output('lua', 'print ("Hello")', "Hello\n")
Esempio n. 28
0
def test_node():
    assert_output("nodejs", "console.log('hello');", "hello\n")
Esempio n. 29
0
def test_r_batch():
    assert_output('rout', 'print(1+1)', "[1] 2\n")
Esempio n. 30
0
def test_lua():
    assert_output('lua', 'print ("Hello")', "Hello\n")
Esempio n. 31
0
def test_r_int_batch():
    assert_output('rintbatch', '1+1', "> 1+1\n[1] 2\n> \n")
Esempio n. 32
0
def test_process_method_manual_write():
    assert_output("processmanual", "hello", "Dexy processed the text 'hello'")
Esempio n. 33
0
def test_pandoc_filter():
    assert_output("pandoc", "hello", "<p>hello</p>\n", ext=".md")
Esempio n. 34
0
def test_process_text_filter():
    assert_output("processtext", "hello", "Dexy processed the text 'hello'")
Esempio n. 35
0
def test_scalac():
    assert_output('scala',
                  SCALA,
                  "Hello, world!\n",
                  ext=".scala",
                  basename="HelloWorld")
Esempio n. 36
0
def test_jruby_filter():
    assert_output('jruby', "puts 1+1", "2\n")
Esempio n. 37
0
def test_fortran_filter():
    assert_output('fortran', FORTRAN_HELLO_WORLD, "Hello, world!", ext=".f")
Esempio n. 38
0
def test_join_filter():
    contents = json.loads("""[{},
    {"name" : "1", "contents" : "section one" },
    {"name" : "2", "contents" : "section two" }
    ]""")
    assert_output("join", contents, "section one\nsection two")
Esempio n. 39
0
def test_cpp_filter():
    assert_output('cpp', CPP_HELLO_WORLD, "Hello, world!", ext=".cpp")
Esempio n. 40
0
def test_lines_filter():
    expected = {}
    expected['1'] = "line one"
    expected['2'] = "line two"
    assert_output("lines", "line one\nline two", expected)
Esempio n. 41
0
def test_clang_filter():
    assert_output('clang', C_HELLO_WORLD, "HELLO, world\n", ext=".c")
Esempio n. 42
0
def test_start_space_filter():
    o = {}
    o['1'] = " abc\n def"
    assert_output("startspace", "abc\ndef", o)
Esempio n. 43
0
def test_c_filter():
    assert_output('gcc', C_HELLO_WORLD, "HELLO, world\n", ext=".c")
    assert_output('gcc', C_FUSSY_HELLO_WORLD, "HELLO, world\n", ext=".c")
Esempio n. 44
0
def test_cpp_filter():
    assert_output('cpp', CPP_HELLO_WORLD, "Hello, world!", ext=".cpp")
Esempio n. 45
0
def test_bleach_filter():
    assert_output("bleach", "an <script>evil()</script> example", u'an &lt;script&gt;evil()&lt;/script&gt; example')
    assert_output("bleach", "an <script>evil()</script> example", u'an &lt;script&gt;evil()&lt;/script&gt; example', ext=".html")
Esempio n. 46
0
def test_c_filter():
    assert_output('gcc', C_HELLO_WORLD, "HELLO, world\n", ext=".c")
    assert_output('gcc', C_FUSSY_HELLO_WORLD, "HELLO, world\n", ext=".c")
Esempio n. 47
0
def test_join_filter():
    contents = json.loads("""[{},
    {"name" : "1", "contents" : "section one" },
    {"name" : "2", "contents" : "section two" }
    ]""")
    assert_output("join", contents, "section one\nsection two")
Esempio n. 48
0
def test_redcloth():
    expected = "<p>hello <strong>bold</strong></p>" + os.linesep
    assert_output("redcloth", "hello *bold*", expected)
Esempio n. 49
0
def test_head_filter():
    assert_output("head", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n")
Esempio n. 50
0
def test_strings():
    assert_output('strings', "hello\bmore", "hello\nmore\n")
Esempio n. 51
0
def test_lines_filter():
    expected = {}
    expected['1'] = "line one"
    expected['2'] = "line two"
    assert_output("lines", "line one\nline two", expected)
Esempio n. 52
0
def test_python():
    assert_output('py', 'print 1+1', "2" + os.linesep)
Esempio n. 53
0
def test_ppjson_filter():
    assert_output(
            "ppjson",
            '{"foo" :123, "bar" :456}',
            """{\n    "bar": 456, \n    "foo": 123\n}"""
            )
Esempio n. 54
0
def test_bash():
    assert_output('bash', 'echo "hello"', "hello\n")
Esempio n. 55
0
def test_pandoc_filter():
    assert_output("pandoc", "hello", "<p>hello</p>\n", ext=".md")
Esempio n. 56
0
def test_ruby():
    assert_output('rb', 'puts "hello"', "hello\n")
Esempio n. 57
0
def test_scalac():
    assert_output('scala', SCALA, "Hello, world!\n", ext=".scala", basename="HelloWorld")
Esempio n. 58
0
def test_start_space_filter():
    o = {}
    o['1'] = " abc\n def"
    assert_output("startspace", "abc\ndef", o)
Esempio n. 59
0
def test_process_method_manual_write():
    assert_output("processmanual", "hello", "Dexy processed the text 'hello'")