#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # sacctmgr modify account, descriptions, limits ############################################################################ # Copyright (C) 2008-2010 Lawrence Livermore National Security. # Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). # Written by Joseph Donaghy # 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 source ./globals_accounting set exit_code 0 set tc1 "test$test_id-cluster-1" set tc2 "test$test_id-cluster-2" set ta1 "test$test_id-account.1" set ta2 "test$test_id-account.2" set ta3 "test$test_id-account.3" set access_err 0 # Account array set acct_req {} set acct_req(cluster) $tc1,$tc2 # Modify Account array set acct_mod_desc {} array set acct_mod_acct_vals { description slurmtestaccount2 organization accountorg2 } array set acct_mod_assoc_vals {} array set acct_mod_desc2 {} array set acct_mod_acct_vals2 {} array set acct_mod_assoc_vals2 { fairshare 1700 maxcpumins 700000 maxjobs 70 maxnodes 700 maxwall 00:07:00 } array set acct_mod_desc3 {} array set acct_mod_acct_vals3 { description slurmtestaccount1 organization accountorg1 } array set acct_mod_assoc_vals3 { fairshare -1 maxcpumins -1 maxjobs -1 maxnodes -1 maxwall -1 } set timeout 60 # # Check accounting config and bail if not found. # if { [test_account_storage] == 0 } { skip "This test can't be run without a usable AccountStorageType" } # # Verify if Administrator privileges # if { [string compare [check_accounting_admin_level] "Administrator"] } { skip "This test can't be run without being an Accounting administrator.\nUse: sacctmgr mod user \$USER set admin=admin" } #make sure we have a clean system and permission to do this work remove_cluster "$tc1,$tc2" if {$access_err != 0} { skip "Not authorized to perform this test" } remove_acct "" "$ta1,$ta2,$ta3" #add cluster incr exit_code [add_cluster "$tc1,$tc2" ""] if { $exit_code } { remove_acct "" "$ta1,$ta2,$ta3" remove_cluster "$tc1,$tc2" fail "Unable to add cluster ($tc1,$tc2)" } #add accounts incr exit_code [add_acct "$ta1,$ta2,$ta3" [array get acct_req]] if { $exit_code } { remove_acct "" "$ta1,$ta2,$ta3" remove_cluster "$tc1,$tc2" fail "Unable to add account ($ta1,$ta2,$ta3)" } # OK This is the real test, first test change the desc and org of the accounts incr exit_code [mod_acct "$ta1,$ta2,$ta3" [array get acct_mod_desc] [array get acct_mod_assoc_vals] [array get acct_mod_acct_vals]] if { $exit_code } { remove_acct "" "$ta1,$ta2,$ta3" remove_cluster "$tc1,$tc2" fail "Unable to modify account ($ta1,$ta2,$ta3)" } # # Use sacctmgr to list the test account modifications # set matches 0 set my_pid [spawn $sacctmgr -n -p list account account=$ta1,$ta2,$ta3 format="Account,Description,Organization"] expect { -re "There was a problem" { log_error "There was a problem with the sacctmgr command" incr exit_code 1 } -re "($ta1|$ta2|$ta3).$acct_mod_acct_vals(description).$acct_mod_acct_vals(organization)." { incr matches exp_continue } timeout { log_error "sacctmgr list associations not responding" slow_kill $my_pid incr exit_code 1 } eof { wait } } if {$matches != 3} { log_error "Account modification 1 incorrect with only $matches" incr exit_code 1 } # Next, test change the limits of the accounts incr exit_code [mod_acct $ta1 [array get acct_mod_desc2] [array get acct_mod_assoc_vals2] [array get acct_mod_acct_vals2]] if { $exit_code } { remove_acct "" "$ta1,$ta2,$ta3" remove_cluster "$tc1,$tc2" fail "Unable to modify account ($ta1)" } # # Use sacctmgr to list the test account modifications # set matches 0 set my_pid [spawn $sacctmgr -n -p list associations account=$ta1,$ta2,$ta3 format="Account,Cluster,Fairshare,MaxCPUM,MaxJobs,MaxNodes,MaxWall"] expect { -re "There was a problem" { log_error "There was a problem with the sacctmgr command" incr exit_code 1 } -re "($ta1.($tc1|$tc2).$acct_mod_assoc_vals2(fairshare).$acct_mod_assoc_vals2(maxcpumins).$acct_mod_assoc_vals2(maxjobs).$acct_mod_assoc_vals2(maxnodes).$acct_mod_assoc_vals2(maxwall).|($ta2|$ta3).($tc1|$tc2).1)" { incr matches exp_continue } timeout { log_error "sacctmgr list associations not responding" slow_kill $my_pid incr exit_code 1 } eof { wait } } if {$matches != 6} { log_error "Account modification 2 incorrect with only $matches" incr exit_code 1 } # Next, test change the desc and limits of the accounts incr exit_code [mod_acct $ta1 [array get acct_mod_desc3] [array get acct_mod_assoc_vals3] [array get acct_mod_acct_vals3]] if { $exit_code } { remove_acct "" "$ta1,$ta2,$ta3" remove_cluster "$tc1,$tc2" fail "Unable to modify account ($ta1)" } # # Use sacctmgr to list the test account modifications # set matches 0 set my_pid [eval spawn $sacctmgr -n -p list account withassoc account=$ta1,$ta2,$ta3 format="Account,Description,Organization,Cluster,Fairshare,MaxCPUM,MaxJobs,MaxNodes,MaxWall"] expect { -re "There was a problem" { log_error "There was a problem with the sacctmgr command" incr exit_code 1 } # Any time you use () around something you need to combine all # those things together since you can miss some and they be thrown away -re "($ta1.$acct_mod_acct_vals3(description).$acct_mod_acct_vals3(organization).($tc1|$tc2).1.....|($ta2|$ta3).$acct_mod_acct_vals(description).$acct_mod_acct_vals(organization).($tc1|$tc2).1.....)" { incr matches exp_continue } timeout { log_error "sacctmgr list associations not responding" slow_kill $my_pid incr exit_code 1 } eof { wait } } if {$matches != 6} { log_error "Account modification 6 incorrect with $matches" incr exit_code 1 } # This is the end below here incr exit_code [remove_acct "$tc1,$tc2" "$ta1,$ta2,$ta3"] incr exit_code [remove_acct "" "$ta1,$ta2,$ta3"] incr exit_code [remove_cluster "$tc1,$tc2"] if {$exit_code != 0} { fail "Test failed due to previous errors" }