diff sat/test/test_plugin_misc_text_syntaxes.py @ 3028:ab2696e34d29

Python 3 port: /!\ this is a huge commit /!\ starting from this commit, SàT is needs Python 3.6+ /!\ SàT maybe be instable or some feature may not work anymore, this will improve with time This patch port backend, bridge and frontends to Python 3. Roughly this has been done this way: - 2to3 tools has been applied (with python 3.7) - all references to python2 have been replaced with python3 (notably shebangs) - fixed files not handled by 2to3 (notably the shell script) - several manual fixes - fixed issues reported by Python 3 that where not handled in Python 2 - replaced "async" with "async_" when needed (it's a reserved word from Python 3.7) - replaced zope's "implements" with @implementer decorator - temporary hack to handle data pickled in database, as str or bytes may be returned, to be checked later - fixed hash comparison for password - removed some code which is not needed anymore with Python 3 - deactivated some code which needs to be checked (notably certificate validation) - tested with jp, fixed reported issues until some basic commands worked - ported Primitivus (after porting dependencies like urwid satext) - more manual fixes
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 19:08:41 +0200
parents 003b8b4b56a7
children 9d0df638c8b4
line wrap: on
line diff
--- a/sat/test/test_plugin_misc_text_syntaxes.py	Wed Jul 31 11:31:22 2019 +0200
+++ b/sat/test/test_plugin_misc_text_syntaxes.py	Tue Aug 13 19:08:41 2019 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 # SAT: a jabber client
@@ -23,6 +23,7 @@
 from sat.plugins import plugin_misc_text_syntaxes
 from twisted.trial.unittest import SkipTest
 import re
+import importlib
 
 
 class SanitisationTest(helpers.SatTestCase):
@@ -58,11 +59,11 @@
 
     def setUp(self):
         self.host = helpers.FakeSAT()
-        reload(plugin_misc_text_syntaxes)  # reload the plugin to avoid conflict error
+        importlib.reload(plugin_misc_text_syntaxes)  # reload the plugin to avoid conflict error
         self.text_syntaxes = plugin_misc_text_syntaxes.TextSyntaxes(self.host)
 
     def test_xhtml_sanitise(self):
-        expected = u"""<div>
+        expected = """<div>
       <style>/* deleted */</style>
     <body>
       <a href="">a link</a>
@@ -82,7 +83,7 @@
         return d
 
     def test_styles_sanitise(self):
-        expected = u"""<p style="color: blue">test <strong>retest</strong><br/><span style="color: #cf2828; font-size: 3px; color: red; color: red !important; font-size: 100px       !important; font-size: 100%; font-size: 100px; font-size: 100; font-size: 100 %; color: rgba(0, 0, 0, 0.1); color: rgb(35,79,255); background-color: no-repeat"> toto </span></p>"""
+        expected = """<p style="color: blue">test <strong>retest</strong><br/><span style="color: #cf2828; font-size: 3px; color: red; color: red !important; font-size: 100px       !important; font-size: 100%; font-size: 100px; font-size: 100; font-size: 100 %; color: rgba(0, 0, 0, 0.1); color: rgb(35,79,255); background-color: no-repeat"> toto </span></p>"""
 
         d = self.text_syntaxes.cleanXHTML(self.EVIL_HTML2)
         d.addCallback(self.assertEqualXML, expected)
@@ -105,10 +106,10 @@
         return d
 
     def test_removeXHTMLMarkups(self):
-        expected = u""" a link another link a paragraph secret EVIL! of EVIL! Password: annoying EVIL! spam spam SPAM! """
+        expected = """ a link another link a paragraph secret EVIL! of EVIL! Password: annoying EVIL! spam spam SPAM! """
         result = self.text_syntaxes._removeMarkups(self.EVIL_HTML1)
         self.assertEqual(re.sub(r"\s+", " ", result).rstrip(), expected.rstrip())
 
-        expected = u"""test retest toto"""
+        expected = """test retest toto"""
         result = self.text_syntaxes._removeMarkups(self.EVIL_HTML2)
         self.assertEqual(re.sub(r"\s+", " ", result).rstrip(), expected.rstrip())