#!/usr/bin/python # Initialization code from plugin_skeleton.py import sys, imp, atexit, os sys.path.append("/home/courses/cs3214/software/pexpect-dpty/"); import pexpect, shellio, signal, time, os, re, proc_check # Determine the path this file is in thisdir = os.path.dirname(os.path.realpath(__file__)) #Ensure the shell process is terminated def force_shell_termination(shell_process): c.close(force=True) # pulling in the regular expression and other definitions # this should be the eshoutput.py file of the hosting shell, see usage above definitions_scriptname = sys.argv[1] def_module = imp.load_source('', definitions_scriptname) # you can define logfile=open("log.txt", "w") in your eshoutput.py if you want logging! logfile = None if hasattr(def_module, 'logfile'): logfile = def_module.logfile #spawn an instance of the shell, note the -p flags c = pexpect.spawn(def_module.shell, drainpty=True, logfile=logfile, args=['-p', thisdir]) atexit.register(force_shell_termination, shell_process=c) # set timeout for all following 'expect*' calls to 2 seconds c.timeout = 2 # check a sample of different sums c.sendline("sum 1 2 3 4") assert c.expect_exact("10") == 0, "Did not match the first sum\n" c.sendline("sum 10 20 30") assert c.expect_exact("60") == 0, "Did not match the second sum\n" c.sendline("sum 3000 200 10 4") assert c.expect_exact("3214") == 0, "Did not match the third sum\n" c.sendline("sum NaN") assert c.expect_exact("0") == 0, "Tried to sum a non-number\n" shellio.success()