summaryrefslogtreecommitdiffstats
path: root/TestUnits/replicate/self_heal
diff options
context:
space:
mode:
authorShwetha-H-Panduranga <shwetha@gluster.com>2011-12-07 12:02:27 +0530
committerShwetha-H-Panduranga <shwetha@gluster.com>2011-12-07 12:02:27 +0530
commit65779e045af84437744597b372eb979c5090a599 (patch)
tree40ffe5de61702c3b2235e1c9f02f823ac27f4131 /TestUnits/replicate/self_heal
parent4399cf4d161526300244d8cf090a461c792ab82e (diff)
Renaming Directories
Diffstat (limited to 'TestUnits/replicate/self_heal')
-rw-r--r--TestUnits/replicate/self_heal/Main.py69
-rw-r--r--TestUnits/replicate/self_heal/testcases.py96
-rw-r--r--TestUnits/replicate/self_heal/testcaseslist9
-rw-r--r--TestUnits/replicate/self_heal/testenv.cfg98
4 files changed, 0 insertions, 272 deletions
diff --git a/TestUnits/replicate/self_heal/Main.py b/TestUnits/replicate/self_heal/Main.py
deleted file mode 100644
index 4e37265..0000000
--- a/TestUnits/replicate/self_heal/Main.py
+++ /dev/null
@@ -1,69 +0,0 @@
-"""Main module for the testunit.
-
-This module "main" function is called from atfexecute to execute the testunit.
-"""
-import parser
-import atfutils
-import glusterutils
-import managerutils
-import testcases
-
-def initialize(filename):
- """
- """
- return_status = 1
- if parser.parse_testenv_configfile(filename):
- return return_status
- if managerutils.ssh_connect_allhosts():
- return return_status
-
- return 0
-
-def setup():
- """
- """
- return_status = 1
- if atfutils.set_active_volume("volume1"):
- return return_status
- return 0
-
-def execute(*testcaselist):
- """
- """
- passedtestcases = 0
- failedtestcases = 0
- selectedtestcases = len(testcaselist)
-
- for testcase in testcaselist:
- function_obj = getattr(testcases, testcase)
- if function_obj:
- print "Starting Test: ' %s '" % testcase
- return_status = function_obj()
- if return_status:
- print "TestCase ' %s ' Failed" % testcase
- failedtestcases += 1
- else:
- print "TestCase ' %s ' Passed" % testcase
- passedtestcases += 1
- print "Ending Test: ' %s '" % testcase
- else:
- print "TestCase %s not defined in 'testcases' module" % testcase
- continue
-
- print "Selected %d : Passed %d, Failed %d" % (selectedtestcases,
- passedtestcases,
- failedtestcases)
-
-def cleanup():
- """
- """
- pass
-
-def main(testenvfile, *testcaselist):
- """
- """
- initialize(testenvfile)
- setup()
- execute(*testcaselist)
- cleanup()
- return
diff --git a/TestUnits/replicate/self_heal/testcases.py b/TestUnits/replicate/self_heal/testcases.py
deleted file mode 100644
index 0015e5f..0000000
--- a/TestUnits/replicate/self_heal/testcases.py
+++ /dev/null
@@ -1,96 +0,0 @@
-"""testcases for replicate/self-heal
-"""
-
-import sys
-import time
-import hostutils
-import managerutils
-import glusterutils
-import atfutils
-import clientutils
-import serverutils
-import parser
-
-def reset_testenv():
- return_status = 1
- if clientutils.umountall():
- return return_status
- glusterutils.volume_stop("server1", force=True)
- glusterutils.volume_delete("server1")
- glusterutils.glusterd_stop_allservers()
- glusterutils.glusterd_remove_dir_allservers()
- glusterutils.glusterd_remove_logs_allservers()
- return 0
-
-def setup_testenv():
- """
- """
- return_status = 1
- if glusterutils.glusterd_start_allservers(force=True):
- return return_status
- if glusterutils.peer_probe("server1"):
- return return_status
- if glusterutils.create_brick_allservers():
- return return_status
- if glusterutils.volume_create("server1"):
- return 1
- glusterutils.volume_set("server1", key="diagnostics.client-log-level", value="DEBUG")
- if glusterutils.volume_start("server1"):
- return 1
- if clientutils.mountall():
- return 1
- return 0
-
-def test001():
- """
- Description: Test for failure when the entry does not exist
- """
- return_status = 1
- if reset_testenv():
- return return_status
- if setup_testenv():
- return return_status
- return_status = clientutils.execute_on_mount("mount1", "ls abcd")
-
- if return_status:
- test_status = 0
- else:
- test_status = 1
-
- return test_status
-
-def test002():
- """
- Description: Test for estale when the fs is stale
- """
- return_status = 1
- if reset_testenv():
- return return_status
- if setup_testenv():
- return return_status
-
- clientutils.execute_on_mount("mount1", "touch file")
- serverutils.execute_on_brick("brick1",
- "setfattr -n trusted.gfid -v 0sBfz5vAdHTEK1GZ99qjqTIg== file")
- return_status = clientutils.execute_on_mount("mount1", "find file | xargs stat")
-
- if return_status:
- test_status = 0
- else:
- test_status = 1
-
- return test_status
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/TestUnits/replicate/self_heal/testcaseslist b/TestUnits/replicate/self_heal/testcaseslist
deleted file mode 100644
index ba90492..0000000
--- a/TestUnits/replicate/self_heal/testcaseslist
+++ /dev/null
@@ -1,9 +0,0 @@
-#################################################################
-# List of testcases for the self-heal feature of afr.
-# TestCaseId : Version : Keyword
-##################################################################
-test001 : >= 3.2 : art
-test002 : >= 3.2 : art
-
-
-
diff --git a/TestUnits/replicate/self_heal/testenv.cfg b/TestUnits/replicate/self_heal/testenv.cfg
deleted file mode 100644
index a8b15c8..0000000
--- a/TestUnits/replicate/self_heal/testenv.cfg
+++ /dev/null
@@ -1,98 +0,0 @@
-[DEFAULT]
-user = root
-password = syst3m
-glusterversion = 3.2.5
-installpath =
-downloadpath =
-
-# ExportDir Section.
-# Necessary Options: dir
-# Optional: fstype, device
-[export1]
-dir = /export
-fstype = xfs
-device = /dev/sdb1
-
-[export2]
-dir = /export
-fstype = xfs
-device = /dev/sda1
-
-# Server Section
-# Necessary Options: hostname, username, password, glusterversion.
-# The username, password, glusterversion defaults from DEFAULTS Section and
-# can be overridden
-# Optional: installpath
-[server1]
-hostname = 10.1.11.110
-
-[server2]
-hostname = 10.1.11.111
-
-# Brick Section
-# Necessary Options: hostname, path
-[brick1]
-hostname = server1.hostname
-path = export1
-
-[brick2]
-hostname = server2.hostname
-path = export2
-
-
-# Volume Section
-# Necessary Options: volumename, volumetype, count, transporttype, bricks
-[volume1]
-volumename = replicate
-volumetype = replica
-count = 2
-transporttype = tcp
-bricks = brick1, brick2
-
-# Client Section
-# Necessary Options: hostname, username, password, glusterversion.
-# The username, password, glusterversion defaults from DEFAULTS Section and
-# can be overridden
-# Optional: installpath
-[client1]
-hostname = 10.1.11.109
-
-# MountDevice Section
-# Necessary Options: hostname, volume
-# The Server1.hostname could be a VIP also. Need not be a server hostname
-# IN a general case,(without NFS) we keep the 1st server from serverpool
-# The volume specified in this section is the "active_volume" onto which all
-# clients will be mounting to. This active volume and hostname can be changed
-# during testrun.
-[mountdevice1]
-hostname = server1.hostname
-volumename = volume1.volumename
-
-# Mount Section
-# addMount(dir, type, client, device=master.volume, logfile=None)
-[mount1]
-dir = /mnt/replicate1
-client = client1
-device = mountdevice1
-type = glusterfs
-logfile =
-options =
-
-[mount2]
-dir = /mnt/replicate2
-client = client1
-device = mountdevice1
-type = glusterfs
-
-[mount3]
-dir = /mnt/replicate3
-client = client1
-device = mountdevice1
-type = glusterfs
-
-
-
-
-
-
-