Overhaul data reloading
[mudpy.git] / mudpy / tests / selftest.py
index e120e70..f262063 100644 (file)
@@ -101,6 +101,11 @@ test_wrapping = (
     (1, r'says,\r\n"O[o]+\."', ""),
 )
 
+test_forbid_ansi_input = (
+    (0, '> ', "say \x1b[35mfoo\x1b[0m"),
+    (1, r'says, "\[35mfoo\[0m\."', ""),
+)
+
 test_movement = (
     (0, "> ", "move north"),
     (0, r"You exit to the north\.", ""),
@@ -178,7 +183,10 @@ test_admin_help = (
 test_reload = (
     (2, "> ", "reload"),
     (2, r"Reloading all code modules, configs and data\."
-        r".* User admin reloaded the world\.", ""),
+        r".* User admin reloaded the world\.",
+     "show element account.admin"),
+    (2, 'These are the properties of the "account.admin" element.*'
+        "  \x1b\[32mpasshash:\r\n\x1b\[31m\$.*> ", ""),
 )
 
 test_set_facet = (
@@ -263,6 +271,7 @@ dialogue = (
     (test_sentence_capitalization, "sentence capitalization"),
     (test_chat_mode, "chat mode"),
     (test_wrapping, "wrapping"),
+    (test_forbid_ansi_input, "raw escape input is filtered"),
     (test_movement, "movement"),
     (test_actor_disappears, "actor spontaneous disappearance"),
     (test_account1_teardown, "second account teardown"),