* [PATCH 1/3 v2] NFS4.0: Case for linking to bad source path with zero-length
@ 2014-05-17 2:18 Kinglong Mee
0 siblings, 0 replies; only message in thread
From: Kinglong Mee @ 2014-05-17 2:18 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: linux-nfs, kinglongmee
Same as v1.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
---
nfs4.0/servertests/st_create.py | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/nfs4.0/servertests/st_create.py b/nfs4.0/servertests/st_create.py
index d2d6701..09c80cc 100644
--- a/nfs4.0/servertests/st_create.py
+++ b/nfs4.0/servertests/st_create.py
@@ -161,6 +161,19 @@ def testZeroLength(t, env):
res = c.create_obj(c.homedir + [''])
check(res, NFS4ERR_INVAL, "CREATE with zero-length name")
+def testZeroLengthForLNK(t, env):
+ """CREATE with zero length name should return NFS4ERR_INVAL
+
+ FLAGS: create symlink all
+ CODE: CR9a
+ """
+ c = env.c1
+ ops = c.go_home()
+ objtype = createtype4(NF4LNK, **{'linkdata':''})
+ ops += [c.create_op(objtype, t.code, getDefaultAttr(c))]
+ res = c.compound(ops)
+ check(res, NFS4ERR_INVAL, "CREATE with zero-length name for SYMLINK")
+
def testRegularFile(t, env):
"""CREATE should fail with NFS4ERR_BADTYPE for regular files
--
1.9.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-05-17 2:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-17 2:18 [PATCH 1/3 v2] NFS4.0: Case for linking to bad source path with zero-length Kinglong Mee
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.