Example #1
0
def test_multiple_replace():
    s = 'Whose <strong class="vehicle">motorcycle</strong> is this?'
    replacements = (
        Replacement(re.compile(r'motorcycle'), 'motor-cycle'),
        Replacement(re.compile(r' '), '\u00a0'),
    )
    print(repr(replace(s, replacements)))
    assert (
        replace(s, replacements)
        ==
        ('Whose\u00a0<strong class="vehicle">motor-cycle'
         '</strong>\u00a0is\u00a0this?')
    )
Example #2
0
def test_skipped_elements():
    repls = [Replacement(re.compile(r'motorcycle'), 'chopper')]

    assert (
        replace('<code><b>motorcycle</b></code><b>motorcycle</b>', repls)
        == '<code><b>motorcycle</b></code><b>chopper</b>'
    )
    assert (
        replace('<kbd><b>motorcycle</b></kbd><b>motorcycle</b>', repls)
        == '<kbd><b>motorcycle</b></kbd><b>chopper</b>'
    )
    assert (
        replace('<pre><b>motorcycle</b></pre><b>motorcycle</b>', repls)
        == '<pre><b>motorcycle</b></pre><b>chopper</b>'
    )
    assert (
        replace('<samp><b>motorcycle</b></samp><b>motorcycle</b>', repls)
        == '<samp><b>motorcycle</b></samp><b>chopper</b>'
    )
    assert (
        replace('<script><b>motorcycle</b></script><b>motorcycle</b>', repls)
        == '<script><b>motorcycle</b></script><b>chopper</b>'
    )
    assert (
        replace('<style><b>motorcycle</b></style><b>motorcycle</b>', repls)
        == '<style><b>motorcycle</b></style><b>chopper</b>'
    )
    assert (
        replace('<tt><b>motorcycle</b></tt><b>motorcycle</b>', repls)
        == '<tt><b>motorcycle</b></tt><b>chopper</b>'
    )
Example #3
0
def test_multiple_replace():
    s = 'Whose <strong class="vehicle">motorcycle</strong> is this?'
    replacements = (
        Replacement(re.compile(r'motorcycle'), ur'motor-cycle'),
        Replacement(re.compile(r' '), ur'\u00a0'),
    )
    assert (replace(
        s, replacements) == (u'Whose\u00a0<strong class="vehicle">motor-cycle'
                             u'</strong>\u00a0is\u00a0this?'))
Example #4
0
def test_simple_replace():
    s = 'Whose <strong class="vehicle">motorcycle</strong> is this?'
    replacements = (
        Replacement(re.compile(r'(motorcycle) (is)'), '\\1\u00a0\\2'),
    )
    assert (
        replace(s, replacements)
        ==
        'Whose <strong class="vehicle">motorcycle</strong>\u00a0is this?'
    )
Example #5
0
def test_replace_inside_given_tags_only():
    s = 'Whose <b>motorcycle</b> motorcycle is this?'
    replacements = (
        Replacement(re.compile(r'motorcycle'), ur'motor-cycle', ['b']),
    )
    assert (
        replace(s, replacements)
        ==
        ('Whose <b>motor-cycle</b> motorcycle is this?')
    )
Example #6
0
def test_replace_everywhere():
    s = 'Whose <strong>motorcycle</strong> motorcycle is this?'
    replacements = (
        Replacement(re.compile(r'motorcycle'), ur'motor-cycle'),
    )
    assert (
        replace(s, replacements)
        ==
        ('Whose <strong>motor-cycle</strong> motor-cycle is this?')
    )
Example #7
0
def test_replace_outside_given_tags_only():
    s = (
        'Whose <i><b>motorcycle</b></i> '
        '<b>motorcycle</b> is this?'
    )
    replacements = (
        Replacement(re.compile(r'motorcycle'), ur'motor-cycle', ['-i']),
    )
    assert (
        replace(s, replacements)
        ==
        (
            'Whose <i><b>motorcycle</b></i> '
            '<b>motor-cycle</b> is this?'
        )
    )
Example #8
0
def test_default_filters():
    repls = [Replacement(re.compile(r'motorcycle'), ur'chopper')]

    assert (replace('<code><b>motorcycle</b></code><b>motorcycle</b>',
                    repls) == '<code><b>motorcycle</b></code><b>chopper</b>')
    assert (replace('<kbd><b>motorcycle</b></kbd><b>motorcycle</b>',
                    repls) == '<kbd><b>motorcycle</b></kbd><b>chopper</b>')
    assert (replace('<pre><b>motorcycle</b></pre><b>motorcycle</b>',
                    repls) == '<pre><b>motorcycle</b></pre><b>chopper</b>')
    assert (replace('<samp><b>motorcycle</b></samp><b>motorcycle</b>',
                    repls) == '<samp><b>motorcycle</b></samp><b>chopper</b>')
    assert (replace(
        '<script><b>motorcycle</b></script><b>motorcycle</b>',
        repls) == '<script><b>motorcycle</b></script><b>chopper</b>')
    assert (replace('<style><b>motorcycle</b></style><b>motorcycle</b>',
                    repls) == '<style><b>motorcycle</b></style><b>chopper</b>')
    assert (replace('<tt><b>motorcycle</b></tt><b>motorcycle</b>',
                    repls) == '<tt><b>motorcycle</b></tt><b>chopper</b>')
Example #9
0
def test_textflow_elements():
    s = (
        '<h1>Pulp Fiction</h1>'
        '<h2>Whose motor</h2>'
        '<p>cycle is this?</p>'
        '<h2>Whose motor</h2>'
        '<p><b>cycle</b> is this?</p>'
        '<h2>Whose motor</h2>'
        'cycle is this?'
        '<h2>Whose motor</h2>'
        '<b>cycle</b> is this?'
        '<h2>Whose</h2>'
        'motor<img>cycle is this?'
        '<h2>Whose</h2>'
        'motor<p></p>cycle is this?'
    )
    replacements = (
        Replacement(re.compile(r'motorcycle'), 'motor-cycle'),
    )
    assert replace(s, replacements) == s
Example #10
0
def tipi(html, lang='en'):
    """Performs language-sensitive typographic replacements on given HTML
    string. No replacements take place in case of unknown language.
    """
    return replace(html, replacements=langs[lang])
Example #11
0
def test_simple_replace():
    s = 'Whose <strong class="vehicle">motorcycle</strong> is this?'
    replacements = (Replacement(re.compile(r'(motorcycle) (is)'),
                                ur'\1\u00a0\2'), )
    assert (replace(s, replacements) ==
            u'Whose <strong class="vehicle">motorcycle</strong>\u00a0is this?')
Example #12
0
def test_replace_outside_given_tags_only():
    s = ('Whose <i><b>motorcycle</b></i> ' '<b>motorcycle</b> is this?')
    replacements = (Replacement(re.compile(r'motorcycle'), ur'motor-cycle',
                                ['-i']), )
    assert (replace(s, replacements) == ('Whose <i><b>motorcycle</b></i> '
                                         '<b>motor-cycle</b> is this?'))
Example #13
0
def test_replace_inside_given_tags_only():
    s = 'Whose <b>motorcycle</b> motorcycle is this?'
    replacements = (Replacement(re.compile(r'motorcycle'), ur'motor-cycle',
                                ['b']), )
    assert (replace(
        s, replacements) == ('Whose <b>motor-cycle</b> motorcycle is this?'))
Example #14
0
def test_replace_everywhere():
    s = 'Whose <strong>motorcycle</strong> motorcycle is this?'
    replacements = (Replacement(re.compile(r'motorcycle'), ur'motor-cycle'), )
    assert (replace(s, replacements) == (
        'Whose <strong>motor-cycle</strong> motor-cycle is this?'))
Example #15
0
def tipi(html, lang='en'):
    """Performs language-sensitive typographic replacements on given HTML
    string. No replacements take place in case of unknown language.
    """
    return replace(html, replacements=langs[lang])