2 ################################################################################
4 ## Copyright (c) International Business Machines Corp., 2001 ##
6 ## This program is free software; you can redistribute it and#or modify ##
7 ## it under the terms of the GNU General Public License as published by ##
8 ## the Free Software Foundation; either version 2 of the License, or ##
9 ## (at your option) any later version. ##
11 ## This program is distributed in the hope that it will be useful, but ##
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ##
13 ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ##
14 ## for more details. ##
16 ## You should have received a copy of the GNU General Public License ##
17 ## along with this program; if not, write to the Free Software ##
18 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ##
20 ################################################################################
24 # Description: This program is a Graphical User Interface (GUI)
25 # Control Centre for LTP. The Control Centre provides
26 # functionality to Compile, Execute and View Results of
29 # Author: Manoj Iyer - manjo@mail.utexas.edu
31 # Thanks: Jim Choate - For suggesting the use of dialog command.
33 # History: March 26 2003 - Created.
35 # March 28 2003 - Removed gauges and put make commands in foreground.
36 # Robbie Williamson - robbiew@us.ibm.com
38 # March 31 2003 - Made scenario menu creation dynamic and code
39 # to pull the test descriptions from the scenario files.
40 # Robbie Williamson - robbiew@us.ibm.com
42 # April 17 2003 - Added menu selection to list contents of selected
44 # Robbie Williamson - robbiew@us.ibm.com
46 # April 23 2003 - Added PID to results filename.
47 # - Added code to allow users to redirect output and
48 # specify test execution duration.
49 # Robbie Williamson - robbiew@us.ibm.com
51 # April 30, 2003 - Recoded results display to allow selection
53 # - Created variable to hold results filename
54 # - Added time to results filename.
57 # Description: Remove all temporary files created by this program. Cleanup
58 # always called on program exit.
65 rm -f $TMPDIR/runltp.
*
69 # Function: display_info_msg
71 # Description: Displays informational messages window. This window may
72 # may be used to display information like errors, instructions
73 # etc to the user. The window is dismissed when the user hits
76 # Input: $1 - Title the needs to be displayed on the window.
77 # eg: ERROR: Compiling LTP
80 # Output: Information message window.
83 dialog
--backtitle "Linux Test Project Control Centre" \
90 # Function: compile_ltp
92 # Description: Checks for commands that are pre-reqs for compiling and
93 # installing LTP. It displays a confirmation window inorder to
94 # confirm the choice made by the user.
96 # Calls: do_make_clean()
102 # Output: Confirmation window.
105 dialog
--backtitle "Linux Test Project Control Centre" \
106 --title "Compiling LTP testsuite"\
107 --yesno "This will compile all the test cases in\
108 LTP test suite and place the executables\
109 in testcases/bin directory. Do\
110 you wish to continue ??" 7 70 || RC
=$?
113 for cmd
in cc
make lex ;
115 which $cmd >$TMPDIR/runltp.err.$$
2>&1;
118 display_info_msg
"Compiling LTP testsuite" \
119 "ERROR: command $cmd not found, $cmd is\
120 required to compile LTP test cases. Please\
121 install $cmd or export PATH correctly before\
122 running this program" ;
128 echo "ERROR in \'make clean\' - exiting."
133 echo "ERROR in \'make all\' - exiting."
138 echo "ERROR in \'make install\' - exiting."
150 # Function: disp_ltpres
152 # Description: The results generated after the ltp execution located under
153 # ltp-mmddyy/results/ directory in a text (ASCII) file called
154 # results.todaysdate. This function displays this file in a
155 # window. If the results file does not exit it displays an
156 # info message window notifing the user that LTP test cases
157 # need to be executed inorder to view results.
159 # Input: ltp-mmddyy/results/results.todaysdate.time
161 # Output: Window displaying results of testcases that were executed.
166 RESULTS_LIST
=$
(for i
in `ls -1 -A -I "CVS" $LTPRESULTS`;do echo -n "$i [more...] "; done)
167 if ! [ -z $RESULTS_LIST ] ;then
168 while [ $RC -ne "1" ]
171 dialog
--backtitle "Linux Test Project Control Centre" \
172 --title "LTP Test Results" \
173 --menu "Move using[UP] [DOWN], Select using [ENTER]" 15 70 8 \
175 2>$TMPDIR/runltp.results.$$ || RC
=$?
176 results_item
=$
(cat $TMPDIR/runltp.results.$$
)
177 if ! [ -z $results_item ];then
179 dialog
--backtitle "Linux Test Project Control Centre" \
180 --title "LTP Test Results" \
181 --textbox $LTPRESULTS/$results_item 17 70
183 dialog
--backtitle "Linux Test Project Control Centre" \
184 --title "LTP Test Results." \
185 --yesno "Would you like to share these results with the LTP \
186 community by posting it to the LTP results mailing list?" \
190 mail ltp-results@lists.sourceforge.net
< \
191 $LTPRESULTS/$results_item ;
202 dialog
--backtitle "Linux Test Project Control Centre" \
203 --title "LTP Test Results" \
204 --msgbox "ERROR: No files to view in $LTPRESULTS directory." 5 53
210 # Function: flags_prompt
212 # Description: Prompt for and record user options for run duration and
213 # test output direction
220 dialog
--backtitle "Linux Test Project Control Centre"\
221 --title "Output Direction" --clear\
222 --yesno "Would you like test output recorded to a file, instead of STDOUT?" 7 80
226 dialog
--backtitle "Linux Test Project Control Centre"\
227 --title "Output Direction" --clear\
228 --inputbox " Please enter the full path and \
229 name of the file where you wish \
230 to redirect output to" 17 80 \
231 2>$TMPDIR/runltp.outdir.$$
;
232 flags_outfile
=$
(cat $TMPDIR/runltp.outdir.$$ |
awk '{print $1}')
233 $TOOLSDIR/ver_linux
> $flags_outfile 2>&1
234 RUNALL_FLAGS
=" -o $flags_outfile"
237 dialog
--backtitle "Linux Test Project Control Centre"\
238 --title "Test Duration" --clear\
239 --yesno "Would you like to specify test duration? \
240 Default is the length of one loop." 7 80
244 dialog
--backtitle "Linux Test Project Control Centre"\
245 --title "Test Duration - Interval Selection" --clear\
246 --menu "Move using[UP] [DOWN], Select using [ENTER]" 15 70 4 \
251 2>$TMPDIR/runltp.interval.$$
;
252 flags_interval
=$
(cat $TMPDIR/runltp.interval.$$ |
awk '{print $1}')
253 case $flags_interval in
254 s
) INTERVAL
="seconds" ;;
255 m
) INTERVAL
="minutes" ;;
256 h
) INTERVAL
="hours" ;;
257 d
) INTERVAL
="days" ;;
261 WINDOW_MSG
="Please enter the number of $INTERVAL to run"
262 dialog
--backtitle "Linux Test Project Control Centre"\
263 --title "Test Duration - Length Specification" --clear\
264 --inputbox "$WINDOW_MSG" 7 80 \
265 2>$TMPDIR/runltp.length.$$
;
266 flags_length
=$
(cat $TMPDIR/runltp.length.$$ |
awk '{print $1}')
267 flags_duration
="$flags_length$flags_interval"
268 RUNALL_FLAGS
=" $RUNALL_FLAGS -t $flags_duration"
272 # Function: exectest_screenout
274 # Description: Execute tests by calling runltp, display test status
279 # Output: messages printed by testcases.
282 RC
=0 # setting return code to 0, to loop in while
284 RESULTS_FILE
=$
(date +%Y-
%m-
%d.
%H.
%M.
%S
).$$
286 # execute runltp with user defined command file.
287 $TOOLSDIR/runltp
-q -p $RUNALL_FLAGS -l results.
$RESULTS_FILE \
288 -f $TMPDIR/runltp.
test.list.$$
296 # Function: execute_ltp
298 # Description: This function provides a menu of testcases that can be
299 # selected for execution. If networking tests are selected,
300 # they require a remote machine and remote machines root
301 # users password. The user will be prompted to enter this
302 # information in a text box.
303 # The function checks to see if the ltp-mmddyy/testcases/bin
304 # directory was created, this directory is created when the
305 # testcases are compiled and installed, if it is not found
306 # an info message window will notify the user that LTP needs to
307 # be compiled before tests can be executed.
308 # This function creates the senatrio file based on the users
309 # choice of testcases and uses the runltp script to
310 # execute these tests.
311 # The messages printed by the testcases are displayed on this
314 # Input: Users selection of testcases; scenario file.
316 # Output: Test selection window, Message window,
317 # information message window
325 # Pre-compiled in Debian
326 # if ! [ -d ./testcases/bin ]
328 # display_info_msg "Executing LTP testcases" \
329 # "The testcases must to be compiled inorder\
330 # to execute them. Returning to main menu. \
331 # Please select the Compile option."
335 LIST
=$
(for i
in `ls -1 -A -I "CVS" $LTPROOT/runtest`; do echo -n "$i "; j
=$
(head -n1 $LTPROOT/runtest
/$i | cut
-d: -f2|
sed s
/" "/_
/g
); echo -n "$j off "; done)
336 dialog
--backtitle "Linux Test Project Control Centre"\
337 --title "Execute LTP" --clear\
338 --checklist "Select [SPACEBAR] tests to run" 20 80 5 \
340 2>$TMPDIR/runltp.choice.$$ || RC
=$?
341 size
=`wc -m $TMPDIR/runltp.choice.$$|awk '{print $1}'`
342 if [ $size -eq 0 ];then
343 tst_choice
=$
(echo "NULL")
345 tst_choice
=$
(cat $TMPDIR/runltp.choice.$$
)
347 if [ $tst_choice = NULL
];then
352 for i
in $tst_choice ;
354 cat $LTPROOT/runtest
/$
(echo $i |
sed -e 's/"//g') \
355 >> $TMPDIR/runltp.
test.list.$$
;
356 case "$(echo $i | sed -e 's/"//g
')" in
357 "tcp_cmds" | "tcp_cmds_noexpect" |\
358 "multicast" | "nfs" |\
359 "ipv6_noexpect" | "ipv6")
364 if ! [ -z $run_net_test ] ;
366 dialog --backtitle "Linux Test Project Control Centre"\
367 --title "Execute LTP test cases" \
369 --inputbox "You have chosen to execute testcases \
370 that require a Remote Machine. \
371 Please enter the fully qualified host \
372 name" 17 80 $(hostname --long) \
373 2>$TMPDIR/runltp.out.$$ ;
374 host_name=$(cat $TMPDIR/runltp.out.$$ | awk '{print
$1}') ;
379 dialog --backtitle "Linux Test Project Control Centre"\
380 --title "Execute LTP test cases" \
382 --inputbox " Please enter the root password \
383 of this remote machine" 17 80 \
384 2>$TMPDIR/runltp.out.$$ ;
385 rhost_passwd=$(cat $TMPDIR/runltp.out.$$ | awk '{print
$1}') ;
387 PASSWD=$rhost_passwd ;
391 # Precompiled in Debian
392 # if ! [ -d ./testcases/bin ] ;
394 # display_info_msg "Executing LTP testcases" \
395 # "The testcases must to be compiled inorder\
396 # to execute them. Returning to main menu. \
397 # Please select the Compile option." ;
409 # echo "Cancel pressed" ;
412 # echo "ESC pressed" ;
418 # Function: about_ltpcc
420 # Description: This function displays a window containing a brief message
421 # describing this programs functionality, and credits the author.
425 # Output: Message window, description of LTP Control Center.
428 display_info_msg "About LTP Control Centre" \
429 "The LTP Control Centre can be used to\
430 to compile, install and execute\
431 The Linux Test Project test suite. Written by\
432 Manoj Iyer <manjo@mail.utexas.edu>"
437 # Function: ltp_scenarios
439 # Description: This function displays a list of scenario files located
440 # in $LTPROOT/runtest. Users can list the contents of each file.
442 # Input: Files from $LTPROOT/runtest
444 # Output: 1) Menu selection containing each file as an option to list.
445 # 2) Contents of selected scenario.
450 SCENARIOS=$(for i in `ls -1 -A -I "CVS" $LTPROOT/runtest`;do echo -n "$i [more...] "; done)
452 while [ $RC -ne "1" ]
455 dialog --backtitle "Linux Test Project Control Centre" \
456 --title "LTP Scenario Files" \
457 --menu "Move using[UP] [DOWN], Select using [ENTER]" 15 70 8 \
459 2>$TMPDIR/runltp.scenario.$$ || RC=$?
460 scenario_item=$(cat $TMPDIR/runltp.scenario.$$)
461 if ! [ -z $scenario_item ];then
463 dialog --backtitle "Linux Test Project Control Centre" \
464 --title "LTP Scenario Files" \
465 --textbox $LTPROOT/runtest/$scenario_item 17 70
474 # Description: Displays the main menu to the LTP Control Centre. The menu
475 # provides options to Compile, Execute, and View test execution
478 # Calls: about_ltpcc()
485 # Output: Menu selection of actions to perform.
488 RC=0 # return code from commands and local functions
494 TMPDIR=${TMPDIR:-/tmp}
495 LTPRESULTS=/var/cache/ltp/results
496 LTPROOT=/usr/lib/ltp/
497 TOOLSDIR=/usr/lib/ltp/tools
499 # test for dialog program exist
500 if [ ! -x /usr/bin/dialog ]; then
501 echo "Sorry, ltpmenu GUI not available, can't
find dialog. Exiting...
";
505 # call cleanup function on program exit.
509 # wait in a loop until user hits [Cancel] button on the main menu.
514 dialog --backtitle "Linux Test Project Control Centre
" \
515 --title "Main Menu
" \
516 --menu "Move using
[UP
] [DOWN
], Select using
[ENTER
]" 15 70 5 \
517 About "About LTP Control Centre
" \
518 Details "Details of scenario files
" \
519 Execute "Execute LTP testsuite
" \
520 Results "Display a summary of
test results
" \
521 2>${TMPDIR:-/tmp}/runltp.mainmenu.$$ || RC=$?
524 0) mmenu_item=`cat /tmp/runltp.mainmenu.$$` ;
525 # echo "return code
= $RC" ;
526 # echo "MENU ITEM
= $mmenu_item" ;
528 About) about_ltpcc ;;
529 # Compile) compile_ltp ;;
530 Details) ltp_scenarios ;;
531 Execute) execute_ltp ;;
532 Results) disp_ltpres ;;
535 1) display_info_msg "Good Bye
!" \
536 "Thank you
for using Linux Test Project
test suite.\
537 Please visit our project website \
538 http
://ltp.sourceforge.net \
539 for latest news on The Linux Test Project.
"
542 255) display_info_msg "Good Bye
!" \
543 "Thank you
for using Linux Test Project
test suite.\
544 Please visit our project website\
545 http
://ltp.sourceforge.net
for latest news\
546 on The Linux Test Project.
"