Best Python code snippet using avocado_python
test_output_check.py
Source:test_output_check.py
...36 with open(stdout_file, 'rb') as fd_stdout:37 self.assertEqual(fd_stdout.read(), STDOUT)38 with open(stderr_file, 'rb') as fd_stderr:39 self.assertEqual(fd_stderr.read(), STDERR)40 def _check_output_record_combined(self):41 os.chdir(BASEDIR)42 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s '43 '--output-check-record combined'44 % (AVOCADO, self.tmpdir, self.output_script.path))45 result = process.run(cmd_line, ignore_status=True)46 expected_rc = exit_codes.AVOCADO_ALL_OK47 self.assertEqual(result.exit_status, expected_rc,48 "Avocado did not return rc %d:\n%s" %49 (expected_rc, result))50 output_file = os.path.join("%s.data/output.expected" % self.output_script)51 with open(output_file, 'rb') as fd_output:52 self.assertEqual(fd_output.read(), STDOUT + STDERR)53 def test_output_record_none(self):54 os.chdir(BASEDIR)55 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s '56 '--output-check-record none'57 % (AVOCADO, self.tmpdir, self.output_script.path))58 result = process.run(cmd_line, ignore_status=True)59 expected_rc = exit_codes.AVOCADO_ALL_OK60 self.assertEqual(result.exit_status, expected_rc,61 "Avocado did not return rc %d:\n%s" %62 (expected_rc, result))63 stdout_file = os.path.join("%s.data/stdout.expected" % self.output_script)64 stderr_file = os.path.join("%s.data/stderr.expected" % self.output_script)65 self.assertFalse(os.path.isfile(stdout_file))66 self.assertFalse(os.path.isfile(stderr_file))67 def test_output_record_stdout(self):68 os.chdir(BASEDIR)69 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s '70 '--output-check-record stdout'71 % (AVOCADO, self.tmpdir, self.output_script.path))72 result = process.run(cmd_line, ignore_status=True)73 expected_rc = exit_codes.AVOCADO_ALL_OK74 self.assertEqual(result.exit_status, expected_rc,75 "Avocado did not return rc %d:\n%s" %76 (expected_rc, result))77 stdout_file = os.path.join("%s.data/stdout.expected" % self.output_script)78 stderr_file = os.path.join("%s.data/stderr.expected" % self.output_script)79 with open(stdout_file, 'rb') as fd_stdout:80 self.assertEqual(fd_stdout.read(), STDOUT)81 self.assertFalse(os.path.isfile(stderr_file))82 def test_output_record_and_check(self):83 self._check_output_record_all()84 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s'85 % (AVOCADO, self.tmpdir, self.output_script.path))86 result = process.run(cmd_line, ignore_status=True)87 expected_rc = exit_codes.AVOCADO_ALL_OK88 self.assertEqual(result.exit_status, expected_rc,89 "Avocado did not return rc %d:\n%s" %90 (expected_rc, result))91 def test_output_record_and_check_combined(self):92 self._check_output_record_combined()93 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s'94 % (AVOCADO, self.tmpdir, self.output_script.path))95 result = process.run(cmd_line, ignore_status=True)96 expected_rc = exit_codes.AVOCADO_ALL_OK97 self.assertEqual(result.exit_status, expected_rc,98 "Avocado did not return rc %d:\n%s" %99 (expected_rc, result))100 def test_output_tamper_stdout(self):101 self._check_output_record_all()102 tampered_msg = b"I PITY THE FOOL THAT STANDS ON MY WAY!"103 stdout_file = os.path.join("%s.data/stdout.expected" % self.output_script.path)104 with open(stdout_file, 'wb') as stdout_file_obj:105 stdout_file_obj.write(tampered_msg)106 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s --xunit -'107 % (AVOCADO, self.tmpdir, self.output_script.path))108 result = process.run(cmd_line, ignore_status=True)109 expected_rc = exit_codes.AVOCADO_TESTS_FAIL110 self.assertEqual(result.exit_status, expected_rc,111 "Avocado did not return rc %d:\n%s" %112 (expected_rc, result))113 self.assertIn(tampered_msg, result.stdout)114 def test_output_tamper_combined(self):115 self._check_output_record_combined()116 tampered_msg = b"I PITY THE FOOL THAT STANDS ON MY WAY!"117 output_file = os.path.join("%s.data/output.expected" % self.output_script.path)118 with open(output_file, 'wb') as output_file_obj:119 output_file_obj.write(tampered_msg)120 cmd_line = ('%s run --job-results-dir %s --sysinfo=off %s --xunit -'121 % (AVOCADO, self.tmpdir, self.output_script.path))122 result = process.run(cmd_line, ignore_status=True)123 expected_rc = exit_codes.AVOCADO_TESTS_FAIL124 self.assertEqual(result.exit_status, expected_rc,125 "Avocado did not return rc %d:\n%s" %126 (expected_rc, result))127 self.assertIn(tampered_msg, result.stdout)128 def test_output_diff(self):129 self._check_output_record_all()...
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!!