#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Validate scontrol update command for jobs. ############################################################################ # Copyright (C) 2002-2007 The Regents of the University of California. # Copyright (C) 2008 Lawrence Livermore National Security. # Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). # Written by Morris Jette # CODE-OCEC-09-009. All rights reserved. # # 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 authorized 1 set exit_code 0 set file_in "test$test_id.input" set job_id 0 set new_prio 1 set read_priority -1 # # Build input script file # make_bash_script $file_in "$srun $bin_sleep 60" # # Submit a job so we have something to work with # set srun_pid [spawn $sbatch --output=/dev/null --error=/dev/null -t1 --hold $file_in] expect { -re "Submitted batch job ($number)" { set job_id $expect_out(1,string) exp_continue } timeout { log_error "srun not responding" slow_kill $srun_pid set exit_code 1 } eof { wait } } exec $bin_rm -f $file_in if {$job_id == 0} { fail "srun failed to initiate job" } # # Record that job's state # spawn $scontrol show job $job_id expect { -re "Priority=($number)" { set read_priority $expect_out(1,string) exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } if {$read_priority != 0} { log_error "Hold priority error" set exit_code 1 } # # Change that job's priority # spawn $scontrol release $job_id expect { -re "slurm_update error: Access.*denied" { cancel_job $job_id skip "User not authorized to modify jobs" } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } # # Test modification of job with bad JobName/UserID specification # log_info "Test 1" set no_jobs 0 spawn $scontrol update JobName=$file_in UserID=1 Priority=$new_prio expect { -re "No jobs with" { set no_jobs 1 exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } if {$no_jobs == 0} { log_error "No error with bad JobName/UserID specification" set exit_code 1 } # # Change that job's priority # log_info "Test 2" set no_jobs 0 set my_uid [get_my_uid] spawn $scontrol update JobName=$file_in UserID=$my_uid Priority=$new_prio expect { -re "No jobs with" { set no_jobs 1 exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } if {$no_jobs != 0} { log_error "Error with valid JobName/UserID specification" set exit_code 1 } # # Validate that job's new priority # spawn $scontrol show job $job_id expect { -re "Priority=($number)" { set read_priority $expect_out(1,string) exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } if {$read_priority == 0} { fail "scontrol priority change error" } if {[cancel_job $job_id] != 0} { fail "Unable to cancel job ($job_id)" } if {$exit_code != 0} { fail "Test failed due to previous errors (\$exit_code = $exit_code)" }