Add testcase containing mountpoint with escaped backslash

Signed-off-by: Johannes Frey <me@johannes-frey.de>
This commit is contained in:
Johannes Frey 2020-06-16 11:55:50 +02:00
parent 87f9fdb065
commit cb91b1724d
No known key found for this signature in database
GPG Key ID: 37DE758DC116FCA8

View File

@ -441,7 +441,8 @@ const (
31 21 0:23 / /DATA/foo_bla_bla rw,relatime - cifs //foo/BLA\040BLA\040BLA/ rw,sec=ntlm,cache=loose,unc=\\foo\BLA BLA BLA,username=my_login,domain=mydomain.com,uid=12345678,forceuid,gid=12345678,forcegid,addr=10.1.30.10,file_mode=0755,dir_mode=0755,nounix,rsize=61440,wsize=65536,actimeo=1`
mountInfoWithDoubleQuotes = `1046 30 253:1 /tmp/bar /var/lib/kubelet/pods/98d150a4-d814-4d52-9068-b10f62d7a895/volumes/kubernetes.io~empty-dir/tmp-dir/"var rw,relatime shared:1 - ext4 /dev/mapper/ubuntu--vg-root rw,errors=remount-ro
1046 30 253:1 /tmp/bar /tmp/"foo" rw,relatime shared:1 - ext4 /dev/mapper/ubuntu--vg-root rw,errors=remount-ro`
1046 30 253:1 /tmp/bar /tmp/"foo" rw,relatime shared:1 - ext4 /dev/mapper/ubuntu--vg-root rw,errors=remount-ro
1060 30 253:1 /tmp/bar /tmp/\134"foo\134" rw,relatime shared:1 - ext4 /dev/mapper/ubuntu--vg-root rw,errors=remount-ro`
)
func TestParseFedoraMountinfo(t *testing.T) {
@ -575,6 +576,19 @@ func TestParseMountinfoWithDoubleQuotes(t *testing.T) {
Source: "/dev/mapper/ubuntu--vg-root",
VFSOptions: "rw,errors=remount-ro",
},
{
ID: 1060,
Parent: 30,
Major: 253,
Minor: 1,
Root: "/tmp/bar",
Mountpoint: `/tmp/\"foo\"`,
Options: "rw,relatime",
Optional: "shared:1",
FSType: "ext4",
Source: "/dev/mapper/ubuntu--vg-root",
VFSOptions: "rw,errors=remount-ro",
},
}
if len(infos) != len(expected) {