Best Python code snippet using localstack_python
server_sockets_test.py
Source: server_sockets_test.py
...45 server.terminate()46 def test_default_socket(self):47 self._test_connect([], "allow", [], "hello", ":", EXIT_OK)48 def test_tcp_socket(self):49 port = get_free_tcp_port()50 self._test_connect(["--bind-tcp=0.0.0.0:%i" % port], "allow", [], "hello", "tcp/127.0.0.1:%i/" % port, EXIT_OK)51 self._test_connect(["--bind-tcp=0.0.0.0:%i" % port], "allow", [], "hello", "ws/127.0.0.1:%i/" % port, EXIT_OK)52 def test_ws_socket(self):53 port = get_free_tcp_port()54 self._test_connect(["--bind-ws=0.0.0.0:%i" % port], "allow", [], "hello", "ws/127.0.0.1:%i/" % port, EXIT_OK)55 def test_ssl(self):56 server = None57 display_no = self.find_free_display_no()58 display = ":%s" % display_no59 tcp_port = get_free_tcp_port()60 ws_port = get_free_tcp_port()61 wss_port = get_free_tcp_port()62 ssl_port = get_free_tcp_port()63 try:64 tmpdir = tempfile.mkdtemp(suffix='ssl-xpra')65 certfile = os.path.join(tmpdir, "self.pem")66 openssl_command = [67 "openssl", "req", "-new", "-newkey", "rsa:4096", "-days", "2", "-nodes", "-x509",68 "-subj", "/C=US/ST=Denial/L=Springfield/O=Dis/CN=localhost",69 "-keyout", certfile, "-out", certfile,70 ]71 openssl = self.run_command(openssl_command)72 assert pollwait(openssl, 10)==0, "openssl certificate generation failed"73 cert_data = load_binary_file(certfile)74 log("generated cert data: %s", repr_ellipsized(cert_data))75 if not cert_data:76 #cannot run openssl? (happens from rpmbuild)...
server.py
Source: server.py
...18from user_srv.settings import settings19def on_exit(signo, frame):20 logger.info("è¿ç¨ä¸æ")21 sys.exit(0)22def get_free_tcp_port():23 tcp = socket.socket(socket.AF_INET, socket.SOCK_STREAM)24 tcp.bind(("", 0))25 _, port = tcp.getsockname()26 tcp.close()27 return port28def serve():29 parser = argparse.ArgumentParser()30 parser.add_argument('--ip',31 nargs="?",32 type=str,33 default="192.168.245.1",34 help="binding ip"35 )36 parser.add_argument('--port',37 nargs="?",38 type=int,39 default=0,40 help="the listening port"41 )42 args = parser.parse_args()43 if args.port == 0:44 port = get_free_tcp_port()45 else:46 port = args.port47 logger.add("logs/user_srv_{time}.log")48 server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))49 # 注åç¨æ·æå¡50 user_pb2_grpc.add_UserServicer_to_server(UserServicer(), server)51 # 注åå¥åº·æ£æ¥52 health_servicer = health.HealthServicer()53 health_pb2_grpc.add_HealthServicer_to_server(health_servicer, server)54 server.add_insecure_port(f'{args.ip}:{port}')55 """56 windowsä¸æ¯æçä¿¡å·æ¯æéçï¼57 SIGINT ctrl+c ä¸æ58 SIGTERM killååºç软件ç»æ¢59 """60 # 主è¿ç¨éåºä¿¡å·çå¬61 signal.signal(signal.SIGINT, on_exit)62 signal.signal(signal.SIGTERM, on_exit)63 logger.info(f"å¯å¨æå¡ï¼{args.ip}:{port}")64 server.start()65 logger.info(f"æå¡æ³¨åå¼å§")66 register = consul.ConsulRegister(settings.CONSUL_HOST, settings.CONSUL_PORT)67 # 没æ注åæå68 if not register.register(name=settings.SERVICE_NAME, id=settings.SERVICE_NAME,69 address=args.ip, port=port, tags=settings.SERVICE_TAGS, check=None):70 logger.info(f"æå¡æ³¨å失败")71 sys.exit(0)72 logger.info(f"æå¡æ³¨åæå")73 server.wait_for_termination()74# @logger.catch75# def my_function(x, y, z):76# # An error? It's caught anyway!77# return 1 / (x + y + z)78if __name__ == "__main__":79 # my_function(0,0,0)80 # logger.debug("è°è¯ä¿¡æ¯")81 # logger.info("æ®éä¿¡æ¯")82 # logger.warning("è¦åä¿¡æ¯")83 # logger.error("é误信æ¯")84 # logger.critical("严éé误信æ¯")85 # print(get_free_tcp_port())86 logging.basicConfig()...
base_unit_test.py
Source: base_unit_test.py
...3 def setUp(self):4 # generate random docker container name5 self.container_name = self.generate_random_string(15)6 # get a free TCP port for the container7 self.port = self.get_free_tcp_port()8 def tearDown(self):9 from os import system10 system("docker kill {}".format(self.container_name))11 @staticmethod12 def generate_random_string(k: int):13 from random import choice14 from string import ascii_lowercase, digits15 return ''.join(choice(ascii_lowercase + digits) for _ in range(k))16 @staticmethod17 def get_free_tcp_port():18 from socket import socket, AF_INET, SOCK_STREAM19 tcp = socket(AF_INET, SOCK_STREAM)20 tcp.bind(('', 0))21 addr, port = tcp.getsockname()22 tcp.close()23 return port24if __name__ == '__main__':...
Check out the latest blogs from LambdaTest on this topic:
The fact is not alien to us anymore that cross browser testing is imperative to enhance your application’s user experience. Enhanced knowledge of popular and highly acclaimed testing frameworks goes a long way in developing a new app. It holds more significance if you are a full-stack developer or expert programmer.
QA testers have a unique role and responsibility to serve the customer. Serving the customer in software testing means protecting customers from application defects, failures, and perceived failures from missing or misunderstood requirements. Testing for known requirements based on documentation or discussion is the core of the testing profession. One unique way QA testers can both differentiate themselves and be innovative occurs when senseshaping is used to improve the application user experience.
Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.
Enterprise resource planning (ERP) is a form of business process management software—typically a suite of integrated applications—that assists a company in managing its operations, interpreting data, and automating various back-office processes. The introduction of a new ERP system is analogous to the introduction of a new product into the market. If the product is not handled appropriately, it will fail, resulting in significant losses for the business. Most significantly, the employees’ time, effort, and morale would suffer as a result of the procedure.
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!!