1 | #!/bin/bash
|
---|
2 | # AD-Bench Kerberos ticket benchmark
|
---|
3 | #
|
---|
4 | # Copyright (C) 2009 Kai Blin <kai@samba.org>
|
---|
5 | #
|
---|
6 | # This file is part of AD-Bench, an Active Directory benchmark tool.
|
---|
7 | #
|
---|
8 | # AD-Bench is free software: you can redistribute it and/or modify
|
---|
9 | # it under the terms of the GNU General Public License as published by
|
---|
10 | # the Free Software Foundation, either version 3 of the License, or
|
---|
11 | # (at your option) any later version.
|
---|
12 | #
|
---|
13 | # AD-Bench is distributed in the hope that it will be useful,
|
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | # GNU General Public License for more details.
|
---|
17 | #
|
---|
18 | # You should have received a copy of the GNU General Public License
|
---|
19 | # along with AD-Bench. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 |
|
---|
21 | # Iterations are set per test, so more time-consuming tests can be run less
|
---|
22 | # often
|
---|
23 | ITERATIONS=100
|
---|
24 |
|
---|
25 | source `dirname $0`/utils.sh
|
---|
26 |
|
---|
27 | set_up () {
|
---|
28 | set_krb_env
|
---|
29 | setup_kinit
|
---|
30 | }
|
---|
31 |
|
---|
32 | tear_down () {
|
---|
33 | restore_krb_env
|
---|
34 | }
|
---|
35 |
|
---|
36 | set_up
|
---|
37 |
|
---|
38 | PRINCIPAL=$( get_principal $1)
|
---|
39 | PASSWORD=$( get_password $1)
|
---|
40 |
|
---|
41 | echo -e "\tKINIT ${PRINCIPAL}"
|
---|
42 |
|
---|
43 | START_TIME=$( start_timer )
|
---|
44 |
|
---|
45 | echo -en "\t"
|
---|
46 | for i in $(${SEQ} 1 $ITERATIONS); do
|
---|
47 | call_kinit "${PRINCIPAL}" "${PASSWORD}"
|
---|
48 | ${KDESTROY}
|
---|
49 | echo -n "."
|
---|
50 | done
|
---|
51 | echo "done"
|
---|
52 |
|
---|
53 | STOP_TIME=$( stop_timer )
|
---|
54 |
|
---|
55 | TOTAL_TIME=$( total_time $START_TIME $STOP_TIME )
|
---|
56 |
|
---|
57 | echo -e "\t\ttotal time:\t\t${TOTAL_TIME}s"
|
---|
58 |
|
---|
59 | LOGINS_PER_MINUTE=$(iterations_per_minute $START_TIME $STOP_TIME $ITERATIONS)
|
---|
60 |
|
---|
61 | echo -e "\t\titerations/min:\t\t$LOGINS_PER_MINUTE"
|
---|
62 |
|
---|
63 | tear_down
|
---|