Best Python code snippet using yandex-tank
Sample4.py
Source:Sample4.py
1class TestCoverage:2 coverage = [False] * 100003import os, inspect4test_obj = 73751735cur_ofile = ""6enter_called = False7exit_called = False8test_readline = 50256779test_encoding = 71675404110class openpy:11 @classmethod12 def detect_encoding(cls, r):13 global test_readLine, test_encoding14 assert r == test_readline15 return (test_encoding, None)16class Buf:17 readline = 018 def __enter__(self):19 global enter_called20 assert enter_called == False21 enter_called = True22 return self23 def __exit__(self, exc_type, exc_val, exc_tb):24 global exit_called25 assert exit_called == False26 exit_called = True27test_buf = Buf()28test_buf.readline = test_readline29class stdlib_io:30 @classmethod31 def open(cls, fil, mode):32 global cur_ofile, test_buf33 assert mode == 'rb'34 assert fil == cur_ofile35 t = test_buf36 test_buf = None37 return t38def find_file(obj):39 assert obj == test_obj40 return cur_ofile41#START OF SAMPLE42def get_encoding(obj):43 ofile = find_file(obj)44 if ofile is None:45 return None46 elif ofile.endswith(('.so', '.dll', '.pyd')):47 return None48 elif not os.path.isfile(ofile):49 return None50 else:51 with stdlib_io.open(ofile, 'rb') as buffer:52 encoding, lines = openpy.detect_encoding(buffer.readline)53 return encoding54#END OF SAMPLE55cur_ofile = None56assert get_encoding(test_obj) == None57cur_ofile = "ooeua.so"58assert get_encoding(test_obj) == None59cur_ofile = "a.dll"60assert get_encoding(test_obj) == None61cur_ofile = "b.pyd"62assert get_encoding(test_obj) == None63cur_ofile = "/"64assert get_encoding(test_obj) == None65cur_ofile = "oauauaou/uao/"66assert get_encoding(test_obj) == None67cur_ofile = "ThisDoesNotExist.py"68assert get_encoding(test_obj) == None69an_existing_file = inspect.getfile(inspect.currentframe())70cur_ofile = an_existing_file71assert get_encoding(test_obj) == test_encoding72assert enter_called...
test_readline.py
Source:test_readline.py
...20 try:21 return self.matching_words[index]22 except IndexError:23 return None24def test_readline():25 print '-'*48, '\nFunc:', sys._getframe().f_code.co_name26 words = "perl", "pyjamas", "python", "pythagoras"27 histfile = os.path.expanduser('~/.bash_history')28 readline.read_history_file(histfile)29 atexit.register(readline.write_history_file, histfile)30 readline.parse_and_bind("tab: complete")31 readline.set_completer(MyCompleter().complete)32 for i in range(3):33 print(raw_input('$'))...
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!!