Best Python code snippet using Testify_python
test_placeholder.py
Source:test_placeholder.py
1from unittest import TestCase2from unittest.mock import patch3from collections import Counter4from email_parser import placeholder, fs5from email_parser.model import *6class TestGenerator(TestCase):7 def setUp(self):8 super().setUp()9 self.patch_fs = patch('email_parser.placeholder.fs')10 self.mock_fs = self.patch_fs.start()11 self.mock_fs.read_file.return_value = 'test'12 self.patch_reader = patch('email_parser.placeholder.reader')13 self.mock_reader = self.patch_reader.start()14 def tearDown(self):15 super().tearDown()16 self.patch_fs.stop()17 self.patch_reader.stop()18 def test_happy_path(self):19 self.mock_fs.emails.return_value = iter([Email('test_name', 'en', 'path')])20 self.mock_reader.read.return_value = ('', {'segment': Placeholder('segment', '{{placeholder}}')})21 config = placeholder.generate_config('.')22 self.assertEqual(config, {'test_name': Counter({'placeholder': 1})})23 def test_no_emails(self):24 self.mock_fs.emails.return_value = iter([])25 config = placeholder.generate_config('.')26 self.assertEqual(config, {})27class TestValidate(TestCase):28 def setUp(self):29 self.email = fs.Email('test_name', 'en', 'path')30 placeholder.expected_placeholders_file.cache_clear()31 self.patch_reader = patch('email_parser.placeholder.reader')32 self.mock_reader = self.patch_reader.start()33 self.mock_reader.read.return_value = ('', {'segment': Placeholder('segment', '{{test_placeholder}}')})34 self.patch_config = patch('email_parser.placeholder.expected_placeholders_file')35 self.mock_config = self.patch_config.start()36 self.mock_config.return_value = {self.email.name: {'test_placeholder': 1}}37 def tearDown(self):38 super().tearDown()39 self.patch_reader.stop()40 def test_happy_path(self):41 actual = placeholder.get_email_validation('.', self.email, )42 expected = {'valid': True, 'errors': None}43 self.assertEqual(expected, actual)44 def test_missing_placeholder(self):45 self.mock_reader.read.return_value = ('', {'segment': Placeholder('segment', 'content')})46 actual = placeholder.get_email_validation('.', self.email)47 expected = {'valid': False, 'errors': {'missing': ['test_placeholder'], 'extra': [], 'diff_number': []}}48 self.assertEqual(expected, actual)49 def test_extra_placeholder(self):50 self.mock_config.return_value = {self.email.name: {}}51 actual = placeholder.get_email_validation('.', self.email)52 expected = {'valid': False, 'errors': {'missing': [], 'extra': ['test_placeholder'], 'diff_number': []}}53 self.assertEqual(expected, actual)54 def test_diffrent_placeholder_count(self):55 self.mock_reader.read.return_value = ('', {'segment': Placeholder('segment',56 '{{test_placeholder}}{{test_placeholder}}')})57 actual = placeholder.get_email_validation('.', self.email)58 expected = {59 'valid': False,60 'errors': {61 'missing': [],62 'extra': [],63 'diff_number': [{'placeholder': 'test_placeholder', 'count': 2, 'expected_count': 1}]64 }65 }...
test_images.py
Source:test_images.py
...23 assert not vid.vidcap.isOpened()24 def test_len(self):25 assert len(Video(SAMPLE_VIDEO_MP4)) == 2326class TestWriteImgToDir:27 def test_placeholder(self):28 write_img_to_dir29class TestPlaceImageInCenter:30 def test_placeholder(self):31 place_image_in_center32class TestCenterRectangleBoundingBox:33 def test_placeholder(self):34 center_rectangle_bounding_box35class TestDrawCenterBox:36 def test_placeholder(self):37 draw_center_box38class TestGetDominantColor:39 def test_placeholder(self):...
test_replaceable.py
Source:test_replaceable.py
1from nlp.generate.replaceable import Replaceable2from settings import Settings3def test_replaceable_correct_test_type():4 """Check that if the circumstances are correct, a subclass of Replaceable is indeed replaced."""5 test_placeholder = 'THIS_IS_A_PLACEHOLDER'6 Settings.GENERATE_TEST_TYPE = test_placeholder7 class SubClass(Replaceable):8 pass9 class SubSubClass(SubClass):10 replacement_for = SubClass11 for_test_type = test_placeholder12 assert isinstance(SubClass(), SubSubClass)13def test_replaceable_incorrect_test_type():14 """Check that if the test type is not correct, the class is not replaced."""15 test_placeholder = 'THIS_IS_A_PLACEHOLDER'16 Settings.GENERATE_TEST_TYPE = test_placeholder17 class SubClass(Replaceable):18 pass19 class SubSubClass(SubClass):20 replacement_for = SubClass21 for_test_type = 'SOME_OTHER_TEST_TYPE'...
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!!