#!/usr/bin/python # # tests the killbg plugin builtin command. import sys, imp, atexit sys.path.append("/home/courses/cs3214/software/pexpect-dpty/"); import pexpect, shellio, signal, time, os, re, proc_check #Ensure the shell process is terminated def force_shell_termination(shell_process): c.close(force=True) # pulling in the regular expression and other definitions definitions_scriptname = sys.argv[1] def_module = imp.load_source('', definitions_scriptname) plugin_dir = sys.argv[2] logfile = None if hasattr(def_module, 'logfile'): logfile = def_module.logfile # spawn an instance of the shell c = pexpect.spawn(def_module.shell + plugin_dir, drainpty=True, logfile=logfile) atexit.register(force_shell_termination, shell_process=c) c.logfile = sys.stdout # set timeout for all following 'expect*' calls to 2 seconds c.timeout = 2 # ensure that the shell prints the expected prompt assert c.expect(def_module.prompt) == 0, "Shell did not print expected prompt" # run a command c.sendline("sleep 30 &") # parse the jobid and pid output (jobid, pid) = shellio.parse_regular_expression(c, def_module.bgjob_regex) # ensure that the shell prints the expected prompt assert c.expect(def_module.prompt) == 0, "Shell did not print expected prompt" # run a command c.sendline("sleep 32 &") # parse the jobid and pid output (jobid2, pid2) = shellio.parse_regular_expression(c, def_module.bgjob_regex) # ensure that the shell prints the expected prompt assert c.expect(def_module.prompt) == 0, "Shell did not print expected prompt" # The job needs to be running when we call kill #proc_check.count_children_timeout(c, 1, 1) # Run the killbg command and kill the sleep processes in the background c.sendline("killbg") # ensure that the shell prints the expected prompt assert c.expect(def_module.prompt) == 0, "Shell did not print expected prompt" ##################################################################### # Check to make sure killbg killed the two background sleep processes # ensure there is enough time for the process to be killed time.sleep(.5) # check the proc file that the process has actually been stopped # the proc file should not exist assert not os.path.exists("/proc/" + pid + "/stat"), 'the 1st process was not \ killed' # check the proc file that the process has actually been stopped # the proc file should not exist assert not os.path.exists("/proc/" + pid2 + "/stat"), 'the 2nd process was not \ killed' # end the shell program by sending it an end-of-file character c.sendline("exit"); # ensure that no extra characters are output after exiting assert c.expect_exact("exit\r\n") == 0, "Shell output extraneous characters" # the test was successful shellio.success()