1 # Copyright (c) 2004-2021 mudpy authors. Permission to use, copy,
2 # modify, and distribute this software is granted under terms
3 # provided in the LICENSE file distributed with this software.
16 pidfile = "var/mudpy.pid"
18 test_account0_setup = (
19 (0, "Identify yourself:", "luser0"),
20 (0, "Enter your choice:", "n"),
21 (0, 'Enter a new password for "luser0":', "Test123"),
22 (0, "Enter the same new password again:", "Test123"),
23 (0, r"What would you like to do\?", "c"),
24 (0, "Pick a birth gender for your new avatar:", "f"),
25 (0, "Choose a name for her:", "1"),
26 (0, r"What would you like to do\?", "a"),
27 (0, r"Whom would you like to awaken\?", ""),
30 test_account1_setup = (
31 (1, "Identify yourself:", "luser1"),
32 (1, "Enter your choice:", "n"),
33 (1, 'Enter a new password for "luser1":', "Test456"),
34 (1, "Enter the same new password again:", "Test456"),
35 (1, r"What would you like to do\?", "c"),
36 (1, "Pick a birth gender for your new avatar:", "m"),
37 (1, "Choose a name for him:", "1"),
38 (1, r"What would you like to do\?", "a"),
39 (1, r"Whom would you like to awaken\?", ""),
42 test_actor_appears = (
43 (0, r"You suddenly realize that .* is here\.", ""),
46 test_explicit_punctuation = (
47 (0, "> ", "say Hello there!"),
48 (0, r'You exclaim, "Hello there\!"', ""),
49 (1, r'exclaims, "Hello there\!"', "say And you are?"),
50 (1, r'You ask, "And you are\?"', ""),
51 (0, r'asks, "And you are\?"', "say I'm me, of course."),
52 (0, r'''You say, "I'm me, of course\."''', ""),
53 (1, r'''says, "I'm me, of course\."''', "say I wouldn't be so sure..."),
54 (1, r'''You muse, "I wouldn't be so sure\.\.\."''', ""),
55 (0, r'''muses, "I wouldn't be so sure\.\.\."''', "say You mean,"),
56 (0, 'You begin, "You mean,"', ""),
57 (1, 'begins, "You mean,"', "say I know-"),
58 (1, 'You begin, "I know-"', ""),
59 (0, 'begins, "I know-"', "say Don't interrupt:"),
60 (0, r'''You begin, "Don't interrupt:"''', ""),
61 (1, r'''begins, "Don't interrupt:"''', "say I wasn't interrupting;"),
62 (1, r'''You begin, "I wasn't interrupting;"''', ""),
63 (0, r'''begins, "I wasn't interrupting;"''', ""),
66 test_implicit_punctuation = (
67 (0, '> ', "say Whatever"),
68 (0, r'You say, "Whatever\."', ""),
69 (1, r'says, "Whatever\."', ""),
72 test_typo_replacement = (
73 (1, '> ', "say That's what i think."),
74 (1, r'''You say, "That's what I think\."''', ""),
75 (0, r'''says, "That's what I think\."''', "say You know what i'd like."),
76 (0, r'''You say, "You know what I'd like\."''', ""),
77 (1, r'''says, "You know what I'd like\."''', "say Then i'll tell you."),
78 (1, r'''You say, "Then I'll tell you\."''', ""),
79 (0, r'''says, "Then I'll tell you\."''', "say Now i'm ready."),
80 (0, r'''You say, "Now I'm ready\."''', ""),
81 (1, r'''says, "Now I'm ready\."''', "say That's teh idea."),
82 (1, r'''You say, "That's the idea\."''', ""),
83 (0, r'''says, "That's the idea\."''', "say It's what theyre saying."),
84 (0, r'''You say, "It's what they're saying\."''', ""),
85 (1, r'''says, "It's what they're saying\."''', "say Well, youre right."),
86 (1, r'''You say, "Well, you're right\."''', ""),
87 (0, r'''says, "Well, you're right\."''', ""),
90 test_sentence_capitalization = (
91 (0, "> ", "say this sentence should start with a capital T."),
92 (0, 'You say, "This sentence', ""),
93 (1, 'says, "This sentence', ""),
98 (1, r'(?s)Entering chat mode .*> \(chat\) ', "Feeling chatty."),
99 (1, r'You say, "Feeling chatty\."', "!chat"),
100 (0, r'says, "Feeling chatty\."', ""),
101 (1, '> ', "say Now less chatty."),
102 (1, r'You say, "Now less chatty\."', ""),
103 (0, r'says, "Now less chatty\."', ""),
107 (0, '> ', "say " + 100 * "o"),
108 (1, r'says,\r\n"O[o]+\."', ""),
111 test_forbid_ansi_input = (
112 (0, '> ', "say \x1b[35mfoo\x1b[0m"),
113 (1, r'says, "\[35mfoo\[0m\."', ""),
116 test_escape_macros = (
117 (0, '> ', "say $(red)bar$(nrm)"),
118 (1, r'says, "\$\(red\)bar\$\(nrm\)\."', ""),
122 (0, "> ", "move north"),
123 (0, r"You exit to the north\.", ""),
124 (1, r"exits to the north\.", "move north"),
125 (0, r"arrives from the south\.", "move south"),
126 (0, r"You exit to the south\.", ""),
127 (1, r"exits to the south\.", "move south"),
128 (0, r"arrives from the north\.", "move east"),
129 (0, r"You exit to the east\.", ""),
130 (1, r"exits to the east\.", "move east"),
131 (0, r"arrives from the west\.", "move west"),
132 (0, r"You exit to the west\.", ""),
133 (1, r"exits to the west\.", "move west"),
134 (0, r"arrives from the east\.", "move up"),
135 (0, r"You exit upward\.", ""),
136 (1, r"exits upward\.", "move up"),
137 (0, r"arrives from below\.", "move down"),
138 (0, r"You exit downward\.", ""),
139 (1, r"exits downward\.", "move down"),
140 (0, r"arrives from above\.", ""),
143 test_actor_disappears = (
145 (0, r"You suddenly wonder where .* went\.", ""),
148 test_abort_avatar_deletion = (
149 (1, r"What would you like to do\?", "d"),
150 (1, r"Whom would you like to delete\?", ""),
151 (1, r"delete an unwanted avatar.*What would you like to do\?", ""),
154 test_avatar_creation_limit = (
155 (1, r"What would you like to do\?", "c"),
156 (1, "Pick a birth gender for your new avatar:", "m"),
157 (1, "Choose a name for him:", "3"),
158 (1, r"What would you like to do\?", "c"),
159 (1, "Pick a birth gender for your new avatar:", "m"),
160 (1, "Choose a name for him:", "4"),
161 (1, r"What would you like to do\?", "c"),
162 (1, "Pick a birth gender for your new avatar:", "m"),
163 (1, "Choose a name for him:", "7"),
164 (1, r"What would you like to do\?", "c"),
165 (1, "Pick a birth gender for your new avatar:", "m"),
166 (1, "Choose a name for him:", "5"),
167 (1, r"What would you like to do\?", "c"),
168 (1, "Pick a birth gender for your new avatar:", "m"),
169 (1, "Choose a name for him:", "2"),
170 (1, r"What would you like to do\?", "c"),
171 (1, "Pick a birth gender for your new avatar:", "m"),
172 (1, "Choose a name for him:", "6"),
173 (1, r"What would you like to do\?", "c"),
174 (1, r"That is not a valid choice\.\.\.", ""),
177 test_avatar_deletion = (
178 (1, r"What would you like to do\?", "d"),
179 (1, r"Whom would you like to delete\?", "1"),
180 (1, r"create a new avatar.*What would you like to do\?", ""),
183 test_abort_account_deletion = (
184 (1, r"What would you like to do\?", "p"),
185 (1, r"permanently delete your account\?", ""),
186 (1, r"What would you like to do\?", ""),
189 test_account_deletion = (
190 (1, r"What would you like to do\?", "p"),
191 (1, r"permanently delete your account\?", "y"),
192 (1, r"Disconnecting\.\.\.", ""),
196 (2, "Identify yourself:", "admin"),
197 (2, "Enter your choice:", "n"),
198 (2, 'Enter a new password for "admin":', "Test789"),
199 (2, "Enter the same new password again:", "Test789"),
200 (2, r"What would you like to do\?", "c"),
201 (2, "Pick a birth gender for your new avatar:", "m"),
202 (2, "Choose a name for him:", "1"),
203 (2, r"What would you like to do\?", "a"),
204 (2, r"Whom would you like to awaken\?", ""),
208 (0, "> ", "preferences"),
209 (0, r"\[32mprompt\x1b\[0m - <not set>.*> ", "preferences prompt $(foo)"),
210 (0, r"\$\(foo\) ", "preferences prompt"),
211 (0, r"\$\(foo\).*\$\(foo\) ", "preferences prompt $(time)>"),
212 (0, "[0-9]> ", "preferences loglevel 0"),
213 (0, "does not exist.*> ", "preferences prompt >"),
214 (2, "> ", "preferences loglevel 0"),
215 (2, "> ", "preferences"),
216 (2, r"\[31mloglevel\x1b\[0m - 0.*> ", "preferences loglevel zero"),
217 (2, r'''cannot be set to type "<class 'str'>"\..*> ''', ""),
221 # Send a CR+LF at the end of the line instead of the default CR+NUL,
222 # to make sure they're treated the same
223 (2, "> ", b"say I use CR+LF as my EOL, not CR+NUL.\r\n"),
224 (2, r'You say, "I use CR\+LF as my EOL, not CR\+NUL\.".*> ', ""),
228 # Send a double (escaped) IAC byte within other text, which should get
229 # unescaped and deduplicated to a single \xff in the buffer and then
230 # the line of input discarded as a non-ASCII sequence
231 (2, "> ", b"say argle\xff\xffbargle\r\0"),
232 (2, r"Non-ASCII characters from admin: b'say.*argle\\xffbargle'.*> ", ""),
235 test_telnet_unknown_command = (
236 # Send an unsupported negotiation command #127 which should get filtered
237 # from the line of input
238 (2, "> ", b"say glop\xff\x7fglyf\r\0"),
239 (2, r'Ignored unknown command 127 from admin\..*"Glopglyf\.".*> ', ""),
242 test_telnet_unknown_option = (
243 # Send an unassigned negotiation option #127 which should get logged
244 (2, "> ", b"\xff\xfe\x7f\r\0"),
245 (2, r'''Received "don't 127" from admin\..*> ''', ""),
248 test_admin_restriction = (
249 (0, "> ", "help halt"),
250 (0, r"That is not an available command\.", "halt"),
251 (0, '(not sure what "halt" means|Arglebargle, glop-glyf)', ""),
256 (2, r"halt.*Shut down the world\.", "help halt"),
257 (2, "This will save all active accounts", ""),
261 (0, "> ", "help say"),
262 (0, r"See also: .*chat.*> ", ""),
267 (0, r"h\[elp\].*m\[ove\].*> ", "he mo"),
268 (0, r"Move in a specific direction\..*> ", "mov nor"),
269 (0, r"You exit to the north\..*> ", "m s"),
270 (0, r"You exit to the south\..*> ", ""),
275 (2, r"Reloading all code modules, configs and data\."
276 r".* User admin reloaded the world\.",
277 "show element account.admin"),
278 (2, r'These are the properties of the "account\.admin" element.*'
279 r' \x1b\[32mpasshash:\r\n\x1b\[31m\$.*> ', ""),
283 (2, "> ", "set actor.avatar_admin_0 gender female"),
284 (2, r'You have successfully \(re\)set the "gender" facet of element', ""),
288 (2, "> ", "set mudpy.limit password_tries 10"),
289 (2, r'The "mudpy\.limit" element is kept in read-only file', ""),
292 test_show_version = (
293 (2, "> ", "show version"),
294 (2, r"Running mudpy .* on .* Python 3.*with.*pyyaml.*> ", ""),
298 (2, "> ", "show time"),
299 (2, r"\r\n[0-9]+ increments elapsed.*> ", ""),
303 (2, "> ", "show files"),
304 (2, r'These are the current files containing the universe:.*'
305 r' \x1b\[31m\(rw\) \x1b\[32m/.*/account\.yaml\x1b\[0m'
306 r' \x1b\[33m\[private\]\x1b\[0m.*> ', ""),
310 (2, "> ", "show file %s" %
311 os.path.join(os.getcwd(), "data/internal.yaml")),
312 (2, r'These are the nodes in the.*file:.*internal\.counters.*> ', ""),
316 (2, "> ", "show groups"),
317 (2, r'These are the element groups:.*'
318 r' \x1b\[32maccount\x1b\[0m.*> ', ""),
322 (2, "> ", "show group account"),
323 (2, r'These are the elements in the "account" group:.*'
324 r' \x1b\[32maccount\.admin\x1b\[0m.*> ', ""),
327 test_show_element = (
328 (2, "> ", "show element mudpy.limit"),
329 (2, r'These are the properties of the "mudpy\.limit" element.*'
330 r' \x1b\[32mpassword_tries: \x1b\[31m3.*> ',
331 "show element actor.avatar_admin_0"),
332 (2, r'These are the properties of the "actor\.avatar_admin_0" element.*'
333 r' \x1b\[32mgender: \x1b\[31mfemale.*> ', ""),
337 (2, "> ", "evaluate 12345*67890"),
338 (2, r"\r\n838102050\r\n.*> ", "evaluate 1/0"),
339 (2, "Your expression raised an exception.*division by zero.*> ",
341 (2, "<module 'mudpy' from.*> ", "evaluate re"),
342 (2, "Your expression raised an exception.*name 're' is not defined.*> ",
343 "evaluate universe"),
344 (2, r"<mudpy\.misc\.Universe object at 0x.*> ", "evaluate actor"),
345 (2, "Your expression raised an exception.*name 'actor' is not defined.*> ",
346 "evaluate dir(mudpy)"),
347 (2, "__builtins__.*> ", "evaluate mudpy.__builtins__.open"),
348 (2, "not allowed.*> ", "evaluate (lambda x: x + 1)(2)"),
349 (2, "not allowed.*> ", ""),
352 test_debug_restricted = (
353 (0, "> ", "help evaluate"),
354 (0, r"That is not an available command\.", "evaluate"),
355 (0, '(not sure what "evaluate" means|Arglebargle, glop-glyf)', ""),
358 test_debug_disabled = (
359 (2, "> ", "help evaluate"),
360 (2, r"That is not an available command\.", "evaluate"),
361 (2, '(not sure what "evaluate" means|Arglebargle, glop-glyf)', ""),
365 (2, "> ", "show log"),
366 (2, r"There are [0-9]+ log lines in memory and [0-9]+ at or above level "
367 r"[0-9]+\. The matching.*from [0-9]+ to [0-9]+ are:", ""),
370 test_custom_loglevel = (
371 (2, "> ", "set account.admin loglevel 2"),
372 (2, "You have successfully .*> ", "show log"),
373 (2, r"There are [0-9]+ log lines in memory and [0-9]+ at or above level "
374 r"[0-9]+\. The matching.*from [0-9]+ to [0-9]+ are:", ""),
377 test_invalid_loglevel = (
378 (2, "> ", "set account.admin loglevel two"),
379 (2, r'''Value "two" of type "<class 'str'>" cannot be coerced .*> ''', ""),
382 test_log_no_errors = (
383 (2, "> ", "show log 7"),
384 (2, r"None of the [0-9]+ lines in memory matches your request\.", ""),
389 (0, r"What would you like to do\?", "p"),
390 (0, r"permanently delete your account\?", "y"),
391 (0, r"Disconnecting\.\.\.", ""),
393 (2, r"What would you like to do\?", "p"),
394 (2, r"permanently delete your account\?", "y"),
395 (2, r"Disconnecting\.\.\.", ""),
399 test_account0_setup: "first account setup",
400 test_account1_setup: "second account setup",
401 test_actor_appears: "actor spontaneous appearance",
402 test_explicit_punctuation: "explicit punctuation",
403 test_implicit_punctuation: "implicit punctuation",
404 test_typo_replacement: "typo replacement",
405 test_sentence_capitalization: "sentence capitalization",
406 test_chat_mode: "chat mode",
407 test_wrapping: "wrapping",
408 test_forbid_ansi_input: "raw escape input is filtered",
409 test_escape_macros: "replacement macros are escaped",
410 test_movement: "movement",
411 test_actor_disappears: "actor spontaneous disappearance",
412 test_abort_avatar_deletion: "abort avatar deletion",
413 test_avatar_creation_limit: "avatar creation limit",
414 test_avatar_deletion: "avatar deletion",
415 test_abort_account_deletion: "abort account deletion",
416 test_account_deletion: "account deletion",
417 test_admin_setup: "admin account setup",
418 test_preferences: "set and show preferences",
419 test_crlf_eol: "send crlf from the client as eol",
420 test_telnet_iac: "escape stray telnet iac bytes",
421 test_telnet_unknown_command: "strip unknown telnet command",
422 test_telnet_unknown_option: "log unknown telnet option",
423 test_admin_restriction: "restricted admin commands",
424 test_admin_help: "admin help",
425 test_help: "help command",
426 test_abbrev: "command abbreviation",
427 test_reload: "reload",
428 test_set_facet: "set facet",
429 test_set_refused: "refuse altering read-only element",
430 test_show_version: "show version and diagnostic info",
431 test_show_time: "show elapsed world clock increments",
432 test_show_files: "show a list of loaded files",
433 test_show_file: "show nodes from a specific file",
434 test_show_groups: "show groups",
435 test_show_group: "show group",
436 test_show_element: "show element",
437 test_evaluate: "show results of python expressions",
438 test_debug_restricted: "only admins can run debug commands",
439 test_debug_disabled: "debugging commands only in debug mode",
440 test_show_log: "show log",
441 test_custom_loglevel: "custom loglevel",
442 test_invalid_loglevel: "invalid loglevel",
443 test_log_no_errors: "no errors logged",
444 final_cleanup: "delete remaining accounts",
456 def start_service(config):
457 # Clean up any previously run daemon which didn't terminate
458 if os.path.exists(pidfile):
459 with open(pidfile) as pidfd:
460 pid = int(pidfd.read())
462 # Stop the running service
465 except ProcessLookupError:
466 # If there was no process, just remove the stale PID file
468 # If there's a preexisting hung service, we can't proceed
469 assert not os.path.exists(pidfile)
471 # Clean up any previous test output
472 for f in pathlib.Path(".").glob("capture_*.log"):
474 for d in ("data", "var"):
475 shutil.rmtree(d, ignore_errors=True)
477 # Start the service and wait for it to be ready for connections
478 service = subprocess.Popen(("mudpy", config),
479 stdout=subprocess.PIPE,
480 stderr=subprocess.PIPE)
485 def stop_service(service):
488 # The no-op case when no service was started
492 # This handles when the service is running as a direct child process
494 returncode = service.wait(10)
496 tlog("\nERROR: Service exited with code %s." % returncode)
499 # This cleans up a daemonized and disassociated service
500 if os.path.exists(pidfile):
501 with open(pidfile) as pidfd:
502 pid = int(pidfd.read())
504 # Stop the running service
507 except ProcessLookupError:
508 # If there was no process, just remove the stale PID file
510 # The PID file didn't disappear, so we have a hung service
511 if os.path.exists(pidfile):
512 tlog("\nERROR: Hung daemon with PID %s." % pid)
515 # Log the contents of stdout and stderr, if any
516 stdout, stderr = service.communicate()
517 tlog("\nRecording stdout as capture_stdout.log.")
518 with open("capture_stdout.log", "w") as serviceout:
519 serviceout.write(stdout.decode("utf-8"))
520 tlog("\nRecording stderr as capture_stderr.log.")
521 with open("capture_stderr.log", "w") as serviceerr:
522 serviceerr.write(stderr.decode("utf-8"))
527 def tlog(message, quiet=False):
528 logfile = "capture_tests.log"
529 with open(logfile, "a") as logfd:
530 logfd.write(message + "\n")
532 sys.stdout.write(message)
536 def option_callback(telnet_socket, command, option):
537 if option == b'\x7f':
538 # We use this unassigned option value as a canary, so short-circuit
539 # any response to avoid endlessly looping
541 elif command in (telnetlib.DO, telnetlib.DONT):
542 telnet_socket.send(telnetlib.IAC + telnetlib.WONT + option)
543 elif command in (telnetlib.WILL, telnetlib.WONT):
544 telnet_socket.send(telnetlib.IAC + telnetlib.DONT + option)
548 if len(sys.argv) > 1:
549 with open(sys.argv[1]) as config_fd:
550 config = yaml.safe_load(config_fd)
551 return config.get(".mudpy.limit.debug", False)
556 captures = ["", "", ""]
557 lusers = [telnetlib.Telnet(), telnetlib.Telnet(), telnetlib.Telnet()]
561 if len(sys.argv) > 1:
562 # Start the service if a config file was provided on the command line
563 service = start_service(sys.argv[1])
565 tlog("\nERROR: Service did not start.\n")
568 luser.open("::1", 4000)
569 luser.set_option_negotiation_callback(option_callback)
570 selected_dialogue = dict(dialogue)
572 for test in nondebug_tests:
573 del selected_dialogue[test]
575 for test in debug_tests:
576 del selected_dialogue[test]
577 for test, description in selected_dialogue.items():
578 tlog("\nTesting %s..." % description)
579 test_start = time.time()
580 for conversant, question, answer in test:
581 tlog("luser%s waiting for: %s" % (conversant, question),
584 index, match, received = lusers[conversant].expect(
585 [re.compile(question.encode("utf-8"), flags=re.DOTALL)], 5)
586 captures[conversant] += received.decode("utf-8")
587 except ConnectionResetError:
588 tlog("\nERROR: Unable to connect to server.")
592 tlog("\nERROR: luser%s premature disconnection expecting:\n\n"
594 "Check the end of capture_%s.log for received data."
595 % (conversant, question, conversant))
599 captures[conversant] += lusers[
600 conversant].read_very_eager().decode("utf-8")
604 tlog("\nERROR: luser%s did not receive expected string:\n\n"
606 "Check the end of capture_%s.log for received data."
607 % (conversant, question, conversant))
610 if type(answer) is str:
611 tlog("luser%s sending: %s" % (conversant, answer), quiet=True)
612 lusers[conversant].write(("%s\r\0" % answer).encode("utf-8"))
613 captures[conversant] += "%s\r\n" % answer
614 elif type(answer) is bytes:
615 tlog("luser%s sending raw bytes: %s" % (conversant, answer),
617 lusers[conversant].get_socket().send(answer)
618 captures[conversant] += "!!!RAW BYTES: %s" % answer
620 tlog("\nERROR: answer provided with unsupported type %s"
626 tlog("Completed in %.3f seconds." % (time.time() - test_start))
627 duration = time.time() - start
628 for conversant in range(len(captures)):
630 captures[conversant] += lusers[
631 conversant].read_very_eager().decode("utf-8")
634 lusers[conversant].close()
635 logfile = "capture_%s.log" % conversant
636 tlog("\nRecording session %s as %s." % (conversant, logfile))
637 log = open(logfile, "w")
638 log.write(captures[conversant])
640 if not stop_service(service):
642 tlog("\nRan %s tests in %.3f seconds." % (len(dialogue), duration))
650 if __name__ == '__main__':