How to use saw_plan method in tappy

Best Python code snippet using tappy_python

tap-driver.py

Source:tap-driver.py Github

copy

Full Screen

...195 self._add_error('Bailed: {reason}').format(reason=reason)196 def handle_skipping_plan(self):197 """Handle a plan that contains a SKIP directive."""198 sys.exit(77)199 def saw_plan(self, expected_tests, at_line):200 """Record when a plan line was seen."""201 self._lines_seen['plan'].append((expected_tests, at_line))202 def saw_test(self, ok):203 """Record when a test line was seen."""204 self._lines_seen['test'] += 1205 if not ok:206 self._lines_seen['failed'] += 1207 def saw_version_at(self, line_counter):208 """Record when a version line was seen."""209 self._lines_seen['version'].append(line_counter)210 def _add_error(self, message):211 self._errors += [message]212if __name__ == '__main__':213 parser = Parser()214 rules = Rules()215 try:216 out = subprocess.check_output(sys.argv[1:], universal_newlines=True)217 except subprocess.CalledProcessError as e:218 sys.stdout.write(e.output)219 raise e220 line_generator = parser.parse(io.StringIO(out))221 line_counter = 0222 for line in line_generator:223 line_counter += 1224 if line[0] == 'unknown':225 continue226 if line[0] == 'result':227 rules.saw_test(line[1])228 print('{okay} {num} {description} {directive}'.format(229 okay=('' if line[1] else 'not ') + 'ok', num=line[2],230 description=line[3], directive=line[4].text))231 elif line[0] == 'plan':232 if line[2].skip:233 rules.handle_skipping_plan()234 rules.saw_plan(line[1], line_counter)235 elif line[0] == 'bail':236 rules.handle_bail(line[1])237 elif line[0] == 'version':238 rules.saw_version_at(line_counter)239 elif line[0] == 'diagnostic':240 print(line[1])241 rules.check(line_counter)...

Full Screen

Full Screen

test_rules.py

Source:test_rules.py Github

copy

Full Screen

...16 'Skip on Mondays.', self.suite._tests[0]._line.description)17 def test_tracks_plan_line(self):18 plan = self.factory.make_plan()19 rules = self._make_one()20 rules.saw_plan(plan, 28)21 self.assertEqual(rules._lines_seen['plan'][0][0], plan)22 self.assertEqual(rules._lines_seen['plan'][0][1], 28)23 def test_errors_plan_not_at_end(self):24 plan = self.factory.make_plan()25 rules = self._make_one()26 rules.saw_plan(plan, 41)27 rules.check(42)28 self.assertEqual(29 'A plan must appear at the beginning or end of the file.',30 self.suite._tests[0]._line.description)31 def test_requires_plan(self):32 rules = self._make_one()33 rules.check(42)34 self.assertEqual(35 'Missing a plan.', self.suite._tests[0]._line.description)36 def test_only_one_plan(self):37 plan = self.factory.make_plan()38 rules = self._make_one()39 rules.saw_plan(plan, 41)40 rules.saw_plan(plan, 42)41 rules.check(42)42 self.assertEqual(43 'Only one plan line is permitted per file.',44 self.suite._tests[0]._line.description)45 def test_errors_when_expected_tests_differs_from_actual(self):46 plan = self.factory.make_plan(expected_tests=42)47 rules = self._make_one()48 rules.saw_plan(plan, 1)49 rules.saw_test()50 rules.check(2)51 self.assertEqual(52 'Expected 42 tests but only 1 ran.',53 self.suite._tests[0]._line.description)54 def test_errors_on_bail(self):55 bail = self.factory.make_bail(reason='Missing something important.')56 rules = self._make_one()57 rules.handle_bail(bail)58 self.assertEqual(1, len(self.suite._tests))59 self.assertEqual(60 'Bailed: Missing something important.',...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tappy automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful