Best Python code snippet using avocado_python
test_cli.py
Source:test_cli.py
...13 flag,14 )15 self.assertEqual(0, se.exception.code)16 self.assertIn(__VERSION__, outputs.get_stdout())17 self.assertEqual('', outputs.get_stderr())18 def test_version_long(self) -> None:19 self._test_version(20 flag='--version',21 )22 def test_version_short(self) -> None:23 self._test_version(24 flag='-V',25 )26 def test_file_not_found(self) -> None:27 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:28 cli_run(29 'validate',30 f'--config-file={resource("configurations/does-not-exist.json")}',31 )32 self.assertEqual(1, se.exception.code)33 self.assertEqual('', outputs.get_stdout())34 self.assertNotEqual('', outputs.get_stderr())35 def test_invalid_format(self) -> None:36 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:37 cli_run(38 'validate',39 f'--config-file={resource("configurations/valid.json")}',40 '--config-format=foo',41 )42 self.assertEqual(2, se.exception.code)43 self.assertEqual('', outputs.get_stdout())44 self.assertNotEqual('', outputs.get_stderr())45 def test_valid_json(self) -> None:46 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:47 cli_run(48 'validate',49 f'--config-file={resource("configurations/valid.json")}',50 '--config-format=json',51 )52 self.assertEqual(0, se.exception.code)53 self.assertEqual('', outputs.get_stdout())54 self.assertEqual('', outputs.get_stderr())55 def test_invalid_json(self) -> None:56 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:57 cli_run(58 'validate',59 f'--config-file={resource("configurations/invalid.json")}',60 '--config-format=json',61 )62 self.assertEqual(1, se.exception.code)63 self.assertEqual('', outputs.get_stdout())64 self.assertIn('Invalid configuration', outputs.get_stderr())65 def test_valid_yaml(self) -> None:66 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:67 cli_run(68 'validate',69 f'--config-file={resource("configurations/valid.yml")}',70 '--config-format=yaml',71 )72 self.assertEqual(0, se.exception.code)73 self.assertEqual('', outputs.get_stdout())74 self.assertEqual('', outputs.get_stderr())75 def test_invalid_yaml(self) -> None:76 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:77 cli_run(78 'validate',79 f'--config-file={resource("configurations/invalid.yml")}',80 '--config-format=yaml',81 )82 self.assertEqual(1, se.exception.code)83 self.assertEqual('', outputs.get_stdout())84 self.assertNotEqual('', outputs.get_stderr())85 def test_format_mismatch(self) -> None:86 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:87 cli_run(88 'validate',89 f'--config-file={resource("configurations/invalid.yml")}',90 '--config-format=json',91 )92 self.assertEqual(1, se.exception.code)93 self.assertEqual('', outputs.get_stdout())94 self.assertNotEqual('', outputs.get_stderr())95 def test_not_root(self) -> None:96 with self.assertRaises(SystemExit) as se, StdRedirect.redirect() as outputs:97 cli_run(98 'validate',99 f'--config-file={resource("configurations/not-root.json")}',100 '--config-format=json',101 )102 self.assertEqual(1, se.exception.code)103 self.assertEqual('', outputs.get_stdout())...
test_ln_s_order.py
Source:test_ln_s_order.py
...10 'ln -s dest source',11 'ln dest -s source',12 'ln dest source -s'])13def test_match(script):14 stderr = get_stderr('source')15 assert match(Command(script, stderr=stderr))16@pytest.mark.parametrize('script, stderr, exists', [17 ('ln dest source', get_stderr('source'), True),18 ('ls -s dest source', get_stderr('source'), True),19 ('ln -s dest source', '', True),20 ('ln -s dest source', get_stderr('source'), False)])21def test_not_match(file_exists, script, stderr, exists):22 file_exists.return_value = exists23 assert not match(Command(script, stderr=stderr))24@pytest.mark.usefixtures('file_exists')25@pytest.mark.parametrize('script, result', [26 ('ln -s dest source', 'ln -s source dest'),27 ('ln dest -s source', 'ln -s source dest'),28 ('ln dest source -s', 'ln source -s dest')])29def test_match(script, result):30 stderr = get_stderr('source')...
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!!