Best Python code snippet using localstack_python
test_protocols.py
Source:test_protocols.py
...37 self.dumps_loads(bytearray(b'foo'))38 def test_decimal(self):39 'Test Decimal'40 self.dumps_loads(Decimal('3.141592653589793'))41 def test_immutable_dict(self):42 "Test ImmutableDict"43 self.dumps_loads(ImmutableDict(foo='bar'))44class XMLTestCase(unittest.TestCase):45 'Test XML'46 def test_xml_request(self):47 req = XMLRequest.from_values(48 data=b"""<?xml version='1.0'?>49 <methodCall>50 <methodName>method</methodName>51 <params>52 <param>53 <value><string>foo</string></value>54 </param>55 <param>56 <value><string>bar</string></value>57 </param>58 </params>59 </methodCall>""",60 content_type='text/xml')61 self.assertEqual(req.parsed_data, (('foo', 'bar'), 'method'))62 self.assertEqual(req.rpc_method, 'method')63 self.assertEqual(req.rpc_params, ('foo', 'bar'))64 def dumps_loads(self, value):65 s = client.dumps((value,), allow_none=True)66 result, _ = client.loads(s)67 result, = result68 self.assertEqual(value, result)69 def test_decimal(self):70 'Test Decimal'71 self.dumps_loads(Decimal('3.141592653589793'))72 def test_bytes(self):73 'Test bytes'74 self.dumps_loads(bytes(b'foo'))75 self.dumps_loads(bytearray(b'foo'))76 def test_date(self):77 'Test date'78 self.dumps_loads(datetime.date.today())79 def test_time(self):80 'Test time'81 self.dumps_loads(datetime.datetime.now().time())82 def test_immutable_dict(self):83 "Test ImmutableDict"84 self.dumps_loads(ImmutableDict(foo='bar'))85 def test_none(self):86 'Test None'87 self.dumps_loads(None)88def suite():89 suite_ = unittest.TestSuite()90 suite_.addTests(unittest.TestLoader().loadTestsFromTestCase(JSONTestCase))91 suite_.addTests(unittest.TestLoader().loadTestsFromTestCase(XMLTestCase))...
test_types.py
Source:test_types.py
...3from attr.exceptions import FrozenInstanceError4from related.converters import str_if_not_none5from collections import OrderedDict6import pytest7def test_immutable_dict():8 immutable = ImmutableDict(dict(a=1))9 with pytest.raises(FrozenInstanceError):10 del immutable['a']11 assert immutable == dict(a=1)12 with pytest.raises(FrozenInstanceError):13 immutable['b'] = 214 assert immutable == dict(a=1)15 with pytest.raises(FrozenInstanceError):16 immutable.clear()17 assert immutable == dict(a=1)18 with pytest.raises(FrozenInstanceError):19 immutable.pop('a')20 assert immutable == dict(a=1)21 with pytest.raises(FrozenInstanceError):...
test_immutable.py
Source:test_immutable.py
1import pytest2from precept import ImmutableDict3from precept.errors import ImmutableError4def test_immutable_dict():5 data = ImmutableDict(foo='bar', bar='foo', n=1)6 assert 'foo' in data7 assert data.get('bar') == 'foo'8 assert data.foo == 'bar'9 assert data['n'] == 110 assert len(data) == 311 with pytest.raises(TypeError):12 data['foo'] = 'not foo'13 with pytest.raises(KeyError):14 # pylint: disable=unused-variable15 d = data.dont_exist # noqa: F84116 with pytest.raises(ImmutableError):17 # pylint: disable=attribute-defined-outside-init18 data.foo = 'not foo'...
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!!