Best Python code snippet using avocado_python
multipath_test.py
Source:multipath_test.py  
...285            if multipath.suspend_mpath(dic_mpath["name"]) is False:286                self.log.info("couldn't suspend : %s", dic_mpath['name'])287                err_mpaths.append(dic_mpath["name"])288            time.sleep(self.op_shot_sleep_time)289            if multipath.resume_mpath(dic_mpath["name"]) is False:290                self.log.info("couldn't resume: %s", dic_mpath["name"])291                err_mpaths.append(dic_mpath["name"])292        if err_mpaths:293            self.fail("error mpaths in suspnd indvdl mpaths: %s" % err_mpaths)294    def test_suspend_resume_all_mpath(self):295        '''296        suspending all the mpathX and then Resume it Back at once297        '''298        err_mpaths = []299        self.log.info("Suspending mpaths and resuming them Back")300        for dic_mpath in self.mpath_list:301            if multipath.suspend_mpath(dic_mpath["name"]) is False:302                self.log.info("couldn't suspend %s", dic_mpath["name"])303                err_mpaths.append(dic_mpath['name'])304        time.sleep(self.op_long_sleep_time)305        for dic_mpath in self.mpath_list:306            if multipath.resume_mpath(dic_mpath["name"]) is False:307                self.log.info("couldn't resume %s ", dic_mpath["name"])308                err_mpaths.append(dic_mpath['name'])309        if err_mpaths:310            self.fail("error mpaths in suspnd all mpaths: %s" % err_mpaths)311    def test_remove_add_mpath(self):312        '''313        Removing the mpathX and Add it Back314        '''315        err_mpaths = []316        self.log.info("Removing and Adding Back mpaths")317        for dic_mpath in self.mpath_list:318            if multipath.remove_mpath(dic_mpath["name"]) is False:319                self.log.info("couldn't remove %s", dic_mpath["name"])320                err_mpaths.append(dic_mpath['name'])...multipath.py
Source:multipath.py  
...261    cmd = 'multipathd -k"suspend map %s"' % mpath262    if process.system(cmd) == 0:263        return wait.wait_for(is_mpath_suspended, timeout=10) or False264    return False265def resume_mpath(mpath):266    """267    Resume the suspended mpathX of multipaths.268    :param mpath_name: mpath names. Example: mpatha, mpathb.269    :return: True or False270    """271    def is_mpath_resumed():272        if get_mpath_status(mpath) == 'active':273            return True274        return False275    cmd = 'multipathd -k"resume map %s"' % mpath276    if process.system(cmd) == 0:277        return wait.wait_for(is_mpath_resumed, timeout=10) or False278    return False279def remove_mpath(mpath):...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
