1# 2# Copyright (c) 2017 Enji Cooper <[email protected]> 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions 6# are met: 7# 1. Redistributions of source code must retain the above copyright 8# notice, this list of conditions and the following disclaimer. 9# 2. Redistributions in binary form must reproduce the above copyright 10# notice, this list of conditions and the following disclaimer in the 11# documentation and/or other materials provided with the distribution. 12# 13# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 14# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 15# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 16# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 17# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 18# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 19# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 20# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 21# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 22# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 23# POSSIBILITY OF SUCH DAMAGE. 24# 25# $FreeBSD$ 26# 27 28MAX_TRIES=20 29PROG_PID= 30PROG_PATH=$(atf_get_srcdir)/while1 31 32SP='[[:space:]]' 33 34start_program() 35{ 36 echo "Starting program in background" 37 PROG_COMM=while1 38 PROG_PATH=$(atf_get_srcdir)/$PROG_COMM 39 40 $PROG_PATH $* & 41 PROG_PID=$! 42 try=0 43 while [ $try -lt $MAX_TRIES ] && ! kill -0 $PROG_PID; do 44 sleep 0.5 45 : $(( try += 1 )) 46 done 47 if [ $try -ge $MAX_TRIES ]; then 48 atf_fail "Polled for program start $MAX_TRIES tries and failed" 49 fi 50} 51 52atf_test_case binary_info 53binary_info_head() 54{ 55 atf_set "descr" "Checks -b support" 56} 57binary_info_body() 58{ 59 start_program bogus-arg 60 61 line_format="$SP*%s$SP+%s$SP+%s$SP+%s$SP*" 62 header_re=$(printf "$line_format" "PID" "COMM" "OSREL" "PATH") 63 line_re=$(printf "$line_format" $PROG_PID $PROG_COMM "[[:digit:]]+" "$PROG_PATH") 64 65 atf_check -o save:procstat.out procstat binary $PROG_PID 66 atf_check -o match:"$header_re" head -n 1 procstat.out 67 atf_check -o match:"$line_re" tail -n 1 procstat.out 68 69 atf_check -o save:procstat.out procstat -b $PROG_PID 70 atf_check -o match:"$header_re" head -n 1 procstat.out 71 atf_check -o match:"$line_re" tail -n 1 procstat.out 72} 73 74atf_test_case command_line_arguments 75command_line_arguments_head() 76{ 77 atf_set "descr" "Checks -c support" 78} 79command_line_arguments_body() 80{ 81 arguments="my arguments" 82 83 start_program $arguments 84 85 line_format="$SP*%s$SP+%s$SP+%s$SP*" 86 header_re=$(printf "$line_format" "PID" "COMM" "ARGS") 87 line_re=$(printf "$line_format" $PROG_PID "$PROG_COMM" "$PROG_PATH $arguments") 88 89 atf_check -o save:procstat.out procstat arguments $PROG_PID 90 atf_check -o match:"$header_re" head -n 1 procstat.out 91 atf_check -o match:"$line_re" tail -n 1 procstat.out 92 93 atf_check -o save:procstat.out procstat -c $PROG_PID 94 atf_check -o match:"$header_re" head -n 1 procstat.out 95 atf_check -o match:"$line_re" tail -n 1 procstat.out 96} 97 98atf_test_case environment 99environment_head() 100{ 101 atf_set "descr" "Checks -e support" 102} 103environment_body() 104{ 105 var="MY_VARIABLE=foo" 106 eval "export $var" 107 108 start_program my arguments 109 110 line_format="$SP*%s$SP+%s$SP+%s$SP*" 111 header_re=$(printf "$line_format" "PID" "COMM" "ENVIRONMENT") 112 line_re=$(printf "$line_format" $PROG_PID $PROG_COMM ".*$var.*") 113 114 atf_check -o save:procstat.out procstat environment $PROG_PID 115 atf_check -o match:"$header_re" head -n 1 procstat.out 116 atf_check -o match:"$line_re" tail -n 1 procstat.out 117 118 atf_check -o save:procstat.out procstat -e $PROG_PID 119 atf_check -o match:"$header_re" head -n 1 procstat.out 120 atf_check -o match:"$line_re" tail -n 1 procstat.out 121} 122 123atf_test_case file_descriptor 124file_descriptor_head() 125{ 126 atf_set "descr" "Checks -f support" 127} 128file_descriptor_body() 129{ 130 start_program my arguments 131 132 line_format="$SP*%s$SP+%s$SP+%s$SP+%s$SP+%s$SP+%s$SP+%s$SP+%s$SP+%s$SP%s$SP*" 133 header_re=$(printf "$line_format" "PID" "COMM" "FD" "T" "V" "FLAGS" "REF" "OFFSET" "PRO" "NAME") 134 # XXX: write a more sensible feature test 135 line_re=$(printf "$line_format" $PROG_PID $PROG_COMM ".+" ".+" ".+" ".+" ".+" ".+" ".+" ".+") 136 137 atf_check -o save:procstat.out procstat files $PROG_PID 138 atf_check -o match:"$header_re" head -n 1 procstat.out 139 atf_check -o match:"$line_re" awk 'NR > 1' procstat.out 140 141 atf_check -o save:procstat.out procstat -f $PROG_PID 142 atf_check -o match:"$header_re" head -n 1 procstat.out 143 atf_check -o match:"$line_re" awk 'NR > 1' procstat.out 144} 145 146atf_test_case kernel_stacks 147kernel_stacks_head() 148{ 149 atf_set "descr" "Captures kernel stacks for all visible threads" 150} 151kernel_stacks_body() 152{ 153 atf_check -o save:procstat.out procstat -a kstack 154 atf_check -o not-empty awk '{if ($3 == "procstat") print}' procstat.out 155 156 atf_check -o save:procstat.out procstat -kka 157 atf_check -o not-empty awk '{if ($3 == "procstat") print}' procstat.out 158} 159 160atf_init_test_cases() 161{ 162 atf_add_test_case binary_info 163 atf_add_test_case command_line_arguments 164 atf_add_test_case environment 165 atf_add_test_case file_descriptor 166 atf_add_test_case kernel_stacks 167} 168