2017-01-20 11:34:05 +01:00
|
|
|
from unittest import TestCase
|
|
|
|
|
|
|
|
from openslides.utils.validate import validate_html
|
|
|
|
|
|
|
|
|
|
|
|
class ValidatorTest(TestCase):
|
|
|
|
def test_XSS_protection(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
data = "tuveegi2Ho<a><p>tuveegi2Ho<script>kekj9(djwk</script></p>Boovai7esu</a>ee4Yaiw0ei"
|
2017-01-20 11:34:05 +01:00
|
|
|
self.assertEqual(
|
|
|
|
validate_html(data),
|
2019-01-06 16:22:33 +01:00
|
|
|
"tuveegi2Ho<a><p>tuveegi2Ho<script>kekj9(djwk</script></p>Boovai7esu</a>ee4Yaiw0ei",
|
|
|
|
)
|