12 lines
418 B
Python
12 lines
418 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
from openslides.utils.validate import validate_html
|
||
|
|
||
|
|
||
|
class ValidatorTest(TestCase):
|
||
|
def test_XSS_protection(self):
|
||
|
data = 'tuveegi2Ho<a><p>tuveegi2Ho<script>kekj9(djwk</script></p>Boovai7esu</a>ee4Yaiw0ei'
|
||
|
self.assertEqual(
|
||
|
validate_html(data),
|
||
|
'tuveegi2Ho<a><p>tuveegi2Ho<script>kekj9(djwk</script></p>Boovai7esu</a>ee4Yaiw0ei')
|