2017-01-20 11:34:05 +01:00
|
|
|
from unittest import TestCase
|
|
|
|
|
2020-04-15 11:59:16 +02:00
|
|
|
from openslides.utils.validate import validate_html_strict
|
2017-01-20 11:34:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
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(
|
2020-04-15 11:59:16 +02:00
|
|
|
validate_html_strict(data),
|
2019-01-06 16:22:33 +01:00
|
|
|
"tuveegi2Ho<a><p>tuveegi2Ho<script>kekj9(djwk</script></p>Boovai7esu</a>ee4Yaiw0ei",
|
|
|
|
)
|