75 lines · python
1#!/usr/bin/env python32 3class TdcPlugin:4 def __init__(self):5 super().__init__()6 print(' -- {}.__init__'.format(self.sub_class))7 8 def pre_suite(self, testcount, testlist):9 '''run commands before test_runner goes into a test loop'''10 self.testcount = testcount11 self.testlist = testlist12 if self.args.verbose > 1:13 print(' -- {}.pre_suite'.format(self.sub_class))14 15 def post_suite(self, index):16 '''run commands after test_runner completes the test loop17 index is the last ordinal number of test that was attempted'''18 if self.args.verbose > 1:19 print(' -- {}.post_suite'.format(self.sub_class))20 21 def pre_case(self, caseinfo, test_skip):22 '''run commands before test_runner does one test'''23 if self.args.verbose > 1:24 print(' -- {}.pre_case'.format(self.sub_class))25 self.args.caseinfo = caseinfo26 self.args.test_skip = test_skip27 28 def post_case(self):29 '''run commands after test_runner does one test'''30 if self.args.verbose > 1:31 print(' -- {}.post_case'.format(self.sub_class))32 33 def pre_execute(self):34 '''run command before test-runner does the execute step'''35 if self.args.verbose > 1:36 print(' -- {}.pre_execute'.format(self.sub_class))37 38 def post_execute(self):39 '''run command after test-runner does the execute step'''40 if self.args.verbose > 1:41 print(' -- {}.post_execute'.format(self.sub_class))42 43 def adjust_command(self, stage, command):44 '''adjust the command'''45 if self.args.verbose > 1:46 print(' -- {}.adjust_command {}'.format(self.sub_class, stage))47 48 # if stage == 'pre':49 # pass50 # elif stage == 'setup':51 # pass52 # elif stage == 'execute':53 # pass54 # elif stage == 'verify':55 # pass56 # elif stage == 'teardown':57 # pass58 # elif stage == 'post':59 # pass60 # else:61 # pass62 63 return command64 65 def add_args(self, parser):66 '''Get the plugin args from the command line'''67 self.argparser = parser68 return self.argparser69 70 def check_args(self, args, remaining):71 '''Check that the args are set correctly'''72 self.args = args73 if self.args.verbose > 1:74 print(' -- {}.check_args'.format(self.sub_class))75