#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Verify that an sbcast credential is properly validated. # # Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR # "FAILURE: ..." otherwise with an explanation of the failure, OR # anything else indicates a failure mode that must be investigated. ############################################################################ # Copyright (C) 2012 SchedMD LLC. # Written by Morris Jette # # This file is part of Slurm, a resource management program. # For details, see . # Please also read the included file: DISCLAIMER. # # Slurm is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version. # # Slurm is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along # with Slurm; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ############################################################################ source ./globals set test_id "14.9" set file_in "test$test_id.input" set file_out "test$test_id.output" set file_err "test$test_id.error" set exit_code 0 set job_id 0 print_header $test_id if {[test_front_end] != 0} { send_user "\nWARNING: This test is incompatible with front-end systems\n" exit 0 } elseif {[test_super_user] != 0} { send_user "\nWARNING: This test can not be run as SlurmUser or root\n" exit 0 } # Delete left-over stdout/err files file delete $file_out $file_err # # Build input script file that broacasts a file # make_bash_script $file_in " export SLURM_SBCAST_AUTH_FAIL_TEST=1 $srun $bin_rm -f /tmp/test1.$test_id $sbcast $sbcast /tmp/test1.$test_id $srun ls /tmp/test1.$test_id " # # Spawn an sbatch job that uses stdout/err and confirm their contents # set timeout $max_job_delay set sbatch_pid [spawn $sbatch -N1 --output=$file_out --error=$file_err -t1 $file_in] expect { -re "Submitted batch job ($number)" { set job_id $expect_out(1,string) exp_continue } timeout { send_user "\nFAILURE: srun not responding\n" slow_kill $sbatch_pid set exit_code 1 } eof { wait } } if {$job_id == 0} { send_user "\nFAILURE: batch submit failure\n" exit 1 } # # Wait for job to complete and check output file # if {[wait_for_job $job_id "DONE"] != 0} { send_user "\nFAILURE: waiting for job to complete\n" set exit_code 1 } set matches 0 if {[wait_for_file $file_err] == 0} { spawn $bin_cat $file_err expect { -re "error: REQUEST_FILE_BCAST" { send_user "These errors are expected, no worries\n" incr matches exp_continue } -re "ls.* No such file" { send_user "These errors are expected, no worries\n" incr matches exp_continue } -re "ls.* does not exist" { send_user "These errors are expected, no worries\n" incr matches exp_continue } -re "ls.* not found" { send_user "These errors are expected, no worries\n" incr matches exp_continue } eof { wait } } } if {$matches != 2} { send_user "\nFAILURE: sbcast moved file with invalid credential ($matches)\n" set exit_code 1 } if {$exit_code == 0} { exec $bin_rm -f $file_in $file_out $file_err send_user "\nSUCCESS\n" } exit $exit_code