diff options
author | vmallika <vmallika@redhat.com> | 2014-11-14 12:06:39 +0530 |
---|---|---|
committer | Krishnan Parthasarathi <kparthas@redhat.com> | 2014-11-14 03:37:59 -0800 |
commit | c3c28ad86be6feb0b148df4681da432047dc0bc3 (patch) | |
tree | a254dbd8ce7ea5755bf035cadf2806785c99fe38 /tests/basic/uss.t | |
parent | 3e0a9c04ed86153a2822b92d69b31e20ef5c63f6 (diff) |
mgmt/glusterd: Validate the options of uss
Change-Id: Id13dc4cd3f5246446a9dfeabc9caa52f91477524
BUG: 1111554
Signed-off-by: Varun Shastry <vshastry@redhat.com>
Signed-off-by: vmallika <vmallika@redhat.com>
Reviewed-on: http://review.gluster.org/8133
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Tested-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'tests/basic/uss.t')
-rw-r--r-- | tests/basic/uss.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/basic/uss.t b/tests/basic/uss.t index f86c19d981e..aabe00cd880 100644 --- a/tests/basic/uss.t +++ b/tests/basic/uss.t @@ -13,6 +13,7 @@ function check_readonly() } cleanup; +TESTS_EXPECTED_IN_LOOP=10 TEST init_n_bricks 3; TEST setup_lvm 3; @@ -50,6 +51,13 @@ for i in {11..20} ; do echo "foo" > $M0/dir2/foo$i ; done TEST $CLI snapshot create snap4 $V0; +## Test that features.uss takes only options enable/disable and throw error for +## any other argument. +for i in {1..10}; do + RANDOM_STRING=`cat /dev/urandom | tr -dc 'a-zA-Z' | fold -w 8 | head -n 1` + TEST_IN_LOOP ! $CLI volume set $V0 features.uss $RANDOM_STRING +done + TEST $CLI volume set $V0 features.uss enable; EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0 |