Best Python code snippet using localstack_python
tftp_test.py
Source:tftp_test.py
...50 def setUp(self):51 """Create local Internal TFTP objects to test with."""52 self.tftp1 = InternalTftp()53 self.tftp2 = InternalTftp(ip_address='127.0.0.254')54 def test_put_and_get(self):55 """ Test file transfers on an internal host """56 # Create file57 filename = random_file(1024)58 contents = open(filename).read()59 # Upload and remove60 basename = os.path.basename(filename)61 self.tftp1.put_file(filename, basename)62 os.remove(filename)63 self.assertFalse(os.path.exists(filename))64 # Download65 self.tftp1.get_file(basename, filename)66 # Verify match67 self.assertEqual(open(filename).read(), contents)68 os.remove(filename)69 def test_get_address_with_relhost(self):70 """Tests the get_address(relative_host) function with a relative_host71 specified.72 """73 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)74 try:75 # RFC863 defines port 9 as the UDP discard port, so we use it to76 # find out our local ip to pass as a relative_host77 sock.connect((socket.gethostname(), 9))78 relative_host = sock.getsockname()[0]79 except socket.error:80 raise81 self.assertEqual(self.tftp2.ip_address,82 self.tftp2.get_address(relative_host=relative_host))83 sock.close()84class ExternalTftpTest(unittest.TestCase):85 """Tests the ExternalTftp class.86 ..note:87 * For testing purposes the 'external' server points to an internally88 hosted one, but it allows us to make sure the actual TFTP protocol is89 working.90 """91 def setUp(self):92 """Create an ExternalTftp object to test with."""93 self.itftp = InternalTftp(ip_address='127.0.0.250')94 self.etftp = ExternalTftp(95 self.itftp.get_address(relative_host=_get_relative_host()),96 self.itftp.port)97 def test_put_and_get(self):98 """Test the put_file(src, dest) function. Test the get_file(src,dest)99 function by movign local files around using the TFT Protocol.100 """101 # Create file102 filename = random_file(1024)103 contents = open(filename).read()104 # Upload and remove original file105 basename = os.path.basename(filename)106 self.etftp.put_file(src=filename, dest=basename)107 os.remove(filename)108 self.assertFalse(os.path.exists(filename))109 # Download110 self.etftp.get_file(src=basename, dest=filename)111 # Verify match...
test_cache.py
Source:test_cache.py
1from v3iofs.fs import _Cache2def test_put_and_get():3 cache = _Cache(10, 100)4 cache.put("k1", "v1")5 cache.put("k2", "v2")6 cache.put("k3", "v3.1")7 cache.put("k3", "v3.2")8 assert cache.get("k1") == "v1"9 assert cache.get("k2") == "v2"10 assert cache.get("k3") == "v3.2"11def test_invalidation_and_gc():12 cache = _Cache(10, 0)13 cache.put("k1", "v1")14 cache.put("k2", "v2")15 cache.put("k3", "v3.1")16 cache.put("k3", "v3.2")...
test.py
Source:test.py
...5hash_table = importlib.import_module("hash-table")6class TestHashTable(unittest.TestCase):7 def setUp(self):8 self.ht = hash_table.HashTable(11)9 def test_put_and_get(self):10 """Tests if value was added"""11 self.ht.put(54, "cat")12 self.assertEqual(self.ht.get(54), "cat")13if __name__ == "__main__":...
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!!