summaryrefslogtreecommitdiff
path: root/tests/xfs/151
blob: b2fe16aefb269313677225d0ef9fc6aea10e254d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) 2021 Oracle.  All Rights Reserved.
#
# FS QA Test No. 151
#
# Make sure the xfs_db ls command works the way the author thinks it does.
# This means that we can list the current directory, list an arbitrary path,
# and we can't list things that aren't directories.
#
. ./common/preamble
_begin_fstest auto quick db

# Import common functions.
. ./common/filter

# real QA test starts here
_supported_fs xfs
_require_xfs_db_command "path"
_require_xfs_db_command "ls"
_require_scratch

echo "Format filesystem and populate"
_scratch_mkfs > $seqres.full
_scratch_mount >> $seqres.full

_require_xfs_has_feature "$SCRATCH_MNT" ftype

filter_ls() {
	awk '
BEGIN { cookie = 0; }
{
	if (cookie == 0)
		cookie = $1;
	printf("+%d %s %s %s %s %s\n", $1 - cookie, $2, $3, $4, $5, $6);
	cookie = $1;
}' | \
	sed	-e "s/ $root_ino directory / root directory /g" \
		-e "s/ $a_ino directory / a_ino directory /g" \
		-e "s/ $b_ino directory / b_ino directory /g" \
		-e "s/ $c_ino regular / c_ino regular /g" \
		-e "s/ $d_ino symlink / d_ino symlink /g" \
		-e "s/ $e_ino blkdev / e_ino blkdev /g" \
		-e "s/ $f_ino chardev / f_ino chardev /g" \
		-e "s/ $g_ino fifo / g_ino fifo /g" \
		-e "s/ $big0_ino regular / big0_ino regular /g" \
		-e "s/ $big1_ino regular / big1_ino regular /g" \
		-e "s/ $h_ino regular / g_ino regular /g"
}

mkdir $SCRATCH_MNT/a
mkdir $SCRATCH_MNT/a/b
$XFS_IO_PROG -f -c 'pwrite 0 61' $SCRATCH_MNT/a/c >> $seqres.full
ln -s -f b $SCRATCH_MNT/a/d
mknod $SCRATCH_MNT/a/e b 0 0
mknod $SCRATCH_MNT/a/f c 0 0
mknod $SCRATCH_MNT/a/g p
touch $SCRATCH_MNT/a/averylongnameforadirectorysothatwecanpushthecookieforward
touch $SCRATCH_MNT/a/andmakethefirstcolumnlookmoreinterestingtopeoplelolwtfbbq
touch $SCRATCH_MNT/a/h

root_ino=$(stat -c '%i' $SCRATCH_MNT)
a_ino=$(stat -c '%i' $SCRATCH_MNT/a)
b_ino=$(stat -c '%i' $SCRATCH_MNT/a/b)
c_ino=$(stat -c '%i' $SCRATCH_MNT/a/c)
d_ino=$(stat -c '%i' $SCRATCH_MNT/a/d)
e_ino=$(stat -c '%i' $SCRATCH_MNT/a/e)
f_ino=$(stat -c '%i' $SCRATCH_MNT/a/f)
g_ino=$(stat -c '%i' $SCRATCH_MNT/a/g)
big0_ino=$(stat -c '%i' $SCRATCH_MNT/a/avery*)
big1_ino=$(stat -c '%i' $SCRATCH_MNT/a/andma*)
h_ino=$(stat -c '%i' $SCRATCH_MNT/a/h)

_scratch_unmount

echo "Manually navigate to root dir then list"
_scratch_xfs_db -c 'sb 0' -c 'addr rootino' -c ls | filter_ls

echo "Use path to navigate to root dir then list"
_scratch_xfs_db -c 'path /' -c ls | filter_ls

echo "Use path to navigate to /a then list"
_scratch_xfs_db -c 'path /a' -c ls | filter_ls

echo "Use path to navigate to /a/b then list"
_scratch_xfs_db -c 'path /a/b' -c ls | filter_ls

echo "Use path to navigate to /a/c (non-dir) then list"
_scratch_xfs_db -c 'path /a/c' -c ls

# success, all done
status=0
exit