コード例 #1
0
 def __init__(self, config_data, nfs_options="vers=3"):
     """
         Initialise the class with the config values
         Kwargs:
             nfs_options (str): This argument takes the nfs options,
                 say vers=3 or vers=4.
                 Default value is vers=3.
     """
     GlusterBaseClass.__init__(self, config_data)
     self.options = nfs_options
     self.no_of_ganesha_nodes = (config_data["gluster"]
                                 ["cluster_config"]["nfs_ganesha"]
                                 ["num_of_nfs_ganesha_nodes"])
     self.no_of_ganesha_nodes = int(self.no_of_ganesha_nodes)
     self.vips = (config_data["gluster"]["cluster_config"]
                  ["nfs_ganesha"]["vips"])
コード例 #2
0
ファイル: test_dd_writes.py プロジェクト: zagrider/glusterfs
    def __init__(self, globl_configs):
        GlusterBaseClass.__init__(self, globl_configs)
        self.filename = "dd_testfile"
        io_config_file = os.path.join(
            os.path.dirname(os.path.realpath(__file__)), "io_config.yml")
        dd_writes_config = yaml.load(open(io_config_file))
        # Num of dd's to start per client/per file
        self.num_of_dd_writes_process = (
            dd_writes_config['gluster']['tests']['io']['dd_writes']
            ['num_of_process_per_file'])

        # Num of files to create
        self.num_of_files = (dd_writes_config['gluster']['tests']['io']
                             ['dd_writes']['num_of_files'])

        # Input file for dd command
        self.dd_input_file = (dd_writes_config['gluster']['tests']['io']
                              ['dd_writes']['input_file'])

        # Block size
        self.block_size = (dd_writes_config['gluster']['tests']['io']
                           ['dd_writes']['block_size'])
        if "random" in self.block_size:
            self.block_size = [
                "1k", "10k", "256k", "512k", "1M", "10M", "100M", "256M",
                "512M", "1G"
            ]

        # dd count
        self.dd_count = (
            dd_writes_config['gluster']['tests']['io']['dd_writes']['count'])

        # dd CONV
        if (dd_writes_config['gluster']['tests']['io']['dd_writes']
            ).has_key('conv'):
            self.dd_conv = (dd_writes_config['gluster']['tests']['io']
                            ['dd_writes']['conv'])
        else:
            self.dd_conv = None

        # dd OFLAG
        if (dd_writes_config['gluster']['tests']['io']['dd_writes']
            ).has_key('oflag'):
            self.dd_oflag = (dd_writes_config['gluster']['tests']['io']
                             ['dd_writes']['oflag'])
        else:
            self.dd_oflag = None
コード例 #3
0
ファイル: test_dd_writes.py プロジェクト: Byreddys/glusterfs
    def __init__(self, globl_configs):
        GlusterBaseClass.__init__(self, globl_configs)
        self.filename = "dd_testfile"
        io_config_file = os.path.join(os.path.dirname
                                      (os.path.realpath(__file__)),
                                      "io_config.yml")
        dd_writes_config = yaml.load(open(io_config_file))
        # Num of dd's to start per client/per file
        self.num_of_dd_writes_process = (dd_writes_config['gluster']['tests']
                                         ['io']['dd_writes']
                                         ['num_of_process_per_file'])

        # Num of files to create
        self.num_of_files = (dd_writes_config['gluster']['tests']
                             ['io']['dd_writes']['num_of_files'])

        # Input file for dd command
        self.dd_input_file = (dd_writes_config['gluster']['tests']
                              ['io']['dd_writes']['input_file'])

        # Block size
        self.block_size = (dd_writes_config['gluster']['tests']
                           ['io']['dd_writes']['block_size'])
        if "random" in self.block_size:
            self.block_size = ["1k", "10k", "256k", "512k" ,"1M",
                              "10M", "100M", "256M", "512M", "1G"]

        # dd count
        self.dd_count = (dd_writes_config['gluster']['tests']
                         ['io']['dd_writes']['count'])

        # dd CONV
        if (dd_writes_config['gluster']['tests']['io']
            ['dd_writes']).has_key('conv'):
            self.dd_conv = (dd_writes_config['gluster']['tests']
                             ['io']['dd_writes']['conv'])
        else:
            self.dd_conv = None

        # dd OFLAG
        if (dd_writes_config['gluster']['tests']['io']
            ['dd_writes']).has_key('oflag'):
            self.dd_oflag = (dd_writes_config['gluster']['tests']
                             ['io']['dd_writes']['oflag'])
        else:
            self.dd_oflag = None
コード例 #4
0
 def __init__(self, config_data):
     """
         Initialise the class with the config values
     """
     tc.logger.info("Starting testcase for CTDB gluster setup")
     GlusterBaseClass.__init__(self, config_data)
コード例 #5
0
 def __init__(self, config_data):
     """
         Initialise the class with the config values
     """
     tc.logger.info("Starting testcase for CTDB gluster setup")
     GlusterBaseClass.__init__(self, config_data)