1# 2# Copyright (c) 2017 Enji Cooper <ngie@FreeBSD.org> 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 AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23# SUCH DAMAGE. 24# 25# $FreeBSD$ 26 27atf_test_case A_flag 28A_flag_head() 29{ 30 atf_set "descr" "Verify -A behavior" 31} 32A_flag_body() 33{ 34 # XXX: compressed volumes? 35 atf_check truncate -s 10g sparse.file 36 atf_check -o inline:'1\tsparse.file\n' du -g sparse.file 37 atf_check -o inline:'10\tsparse.file\n' du -A -g sparse.file 38} 39 40atf_test_case H_flag 41H_flag_head() 42{ 43 atf_set "descr" "Verify -H behavior" 44} 45H_flag_body() 46{ 47 local paths1='testdir/A/B testdir/A testdir/C testdir' 48 local paths2='testdir/A/B testdir/A testdir/C testdir' 49 local sep='\n[0-9]+\t' 50 51 atf_check mkdir testdir 52 atf_check -x "cd testdir && mkdir A && touch A/B && ln -s A C" 53 54 atf_check -o save:du.out du -aAH testdir 55 atf_check egrep -q "[0-9]+\t$(echo $paths1 | tr ' ' "$sep")\n" du.out 56 atf_check -o save:du_C.out du -aAH testdir/C 57 atf_check egrep -q "[0-9]+\t$(echo $paths2 | tr ' ' "$sep")\n" du_C.out 58} 59 60atf_test_case I_flag 61I_flag_head() 62{ 63 atf_set "descr" "Verify -I behavior" 64} 65I_flag_body() 66{ 67 paths_sans_foo_named="a/motley/fool/of/sorts fool/parts/with/their/cache bar baz" 68 paths_foo_named="foo foobar" 69 paths="$paths_sans_foo_named $paths_foo_named" 70 71 # cd'ing to testdir helps ensure that files from atf/kyua don't 72 # pollute the results. 73 atf_check -x "mkdir testdir && cd testdir && mkdir -p $paths" 74 atf_check -o save:du.out -x "cd testdir && du -s $paths_sans_foo_named" 75 atf_check -o save:du_I.out -x "cd testdir && du -I '*foo*' -s $paths" 76 77 atf_check diff -u du.out du_I.out 78} 79 80atf_test_case c_flag 81c_flag_head() 82{ 83 atf_set "descr" "Verify -c output" 84} 85c_flag_body() 86{ 87 atf_check truncate -s 0 foo bar 88} 89 90atf_test_case g_flag 91g_flag_head() 92{ 93 atf_set "descr" "Verify -g output" 94} 95g_flag_body() 96{ 97 atf_check truncate -s 1k A 98 atf_check truncate -s 1m B 99 atf_check truncate -s 1g C 100 atf_check truncate -s 1t D 101 atf_check -o inline:'1\tA\n1\tB\n1\tC\n1024\tD\n' du -Ag A B C D 102} 103 104atf_test_case h_flag 105h_flag_head() 106{ 107 atf_set "descr" "Verify -h output" 108} 109h_flag_body() 110{ 111 atf_check truncate -s 1k A 112 atf_check truncate -s 1m B 113 atf_check truncate -s 1g C 114 atf_check truncate -s 1t D 115 atf_check -o inline:'1.0K\tA\n1.0M\tB\n1.0G\tC\n1.0T\tD\n' du -Ah A B C D 116} 117 118atf_test_case k_flag 119k_flag_head() 120{ 121 atf_set "descr" "Verify -k output" 122} 123k_flag_body() 124{ 125 atf_check truncate -s 1k A 126 atf_check truncate -s 1m B 127 atf_check -o inline:'1\tA\n1024\tB\n' du -Ak A B 128} 129 130atf_test_case m_flag 131m_flag_head() 132{ 133 atf_set "descr" "Verify -m output" 134} 135m_flag_body() 136{ 137 atf_check truncate -s 1k A 138 atf_check truncate -s 1m B 139 atf_check truncate -s 1g C 140 atf_check -o inline:'1\tA\n1\tB\n1024\tC\n' du -Am A B C 141} 142 143atf_test_case si_flag 144si_flag_head() 145{ 146 atf_set "descr" "Verify --si output" 147} 148si_flag_body() 149{ 150 atf_check truncate -s 1500000 A 151 atf_check truncate -s 1572864 B 152 153 atf_check -o inline:'1.4M\tA\n1.5M\tB\n' du -Ah A B 154 atf_check -o inline:'1.5M\tA\n1.6M\tB\n' du -A --si A B 155} 156 157atf_init_test_cases() 158{ 159 atf_add_test_case A_flag 160 atf_add_test_case H_flag 161 atf_add_test_case I_flag 162 atf_add_test_case g_flag 163 atf_add_test_case h_flag 164 atf_add_test_case k_flag 165 atf_add_test_case m_flag 166 atf_add_test_case si_flag 167} 168