Best Python code snippet using pytest-django_python
run_test
Source:run_test
...63 else:64 verify( not status.read, msg="Invalid bus state: expected write, got read" )65 verify( status.address, array_to_number(plan[2:6]), msg="Bus access for wrong address" )66 verify( status.data, array_to_number(plan[6:8]), msg="Bus access with wrong value" )67def do_assert_signal(plan: list[int]) -> None:68 assert_sig = assert_signal.AssertSignal(plan)69 if assert_sig.pin == assert_signal.Signals.Reset:70 deferred_actions.add_action( partial(test_harness.reset, True), assert_sig.cycles_until_on )71 deferred_actions.add_action( partial(test_harness.reset, False), assert_sig.cycles_until_off )72 elif assert_sig.pin == assert_signal.Signals.IRQ:73 deferred_actions.add_action( partial(test_harness.irq, True), assert_sig.cycles_until_on )74 deferred_actions.add_action( partial(test_harness.irq, False), assert_sig.cycles_until_off )75 elif assert_sig.pin == assert_signal.Signals.NMI:76 deferred_actions.add_action( partial(test_harness.nmi, True), assert_sig.cycles_until_on )77 deferred_actions.add_action( partial(test_harness.nmi, False), assert_sig.cycles_until_off )78 else:79 assert False80def do_wait(plan: list[int]) -> None:81 cycles_to_wait = array_to_number( plan[1:5] )82 while cycles_to_wait>0:83 next_cycle()84 cycles_to_wait -= 185def next_cycle() -> BusStatus:86 deferred_actions.advance()87 status = test_harness.cycle()88 if (status.address & 0xff00)==0x0200:89 memory_mapped_io.io(status)90 return status91mem_file = MemFile(args.memory_file, num_digits=2)92for byte in mem_file:93 address = byte[0]94 data = array_to_number( byte[1][0:2] )95 test_harness.write_memory( address, data )96mem_file = None97test_plan_file = MemFile(args.test_plan_file, num_digits=14)98for instruction in test_plan_file:99 if instruction[1][0]==0:100 # Operation, ignore output101 do_op(instruction[1])102 elif instruction[1][0]==1:103 # Operation, read104 do_op(instruction[1])105 elif instruction[1][0]==2:106 # Operation, write107 do_op(instruction[1])108 elif instruction[1][0]==3:109 do_assert_signal(instruction[1])110 elif instruction[1][0]==4:111 do_bus_op(instruction[1])112 elif instruction[1][0]==5:113 do_wait(instruction[1])114 elif instruction[1][0]==15:115 print(f"{colored.fore.GREEN}Test ran to successful completion{colored.attr(0)}")116 break117 else:...
prewarm.py
Source:prewarm.py
...67 if expecting_code in (CLD_EXITED, CLD_KILLED):68 p.wait(1)69 p.stdin.close()70 found_signal = True71 def assert_signal():72 nonlocal found_signal73 found_signal = False74 st = time.monotonic()75 while time.monotonic() - st < 5:76 for (fd, event) in poll.poll(10):77 if fd == signal_read_fd:78 read_signals(signal_read_fd, handle_signal)79 if found_signal:80 break81 self.assertTrue(found_signal, f'Failed to to get SIGCHLD for signal {signal}')82 def t(signal, q, expecting_sig=signal.SIGCHLD):83 nonlocal expecting_code, found_signal, expecting_signal84 expecting_code = q85 expecting_signal = expecting_sig.value86 if signal is not None:87 p.send_signal(signal)88 assert_signal()89 poll = select.poll()90 p = subprocess.Popen([kitty_exe(), '+runpy', 'input()'], stderr=subprocess.DEVNULL, stdin=subprocess.PIPE)91 signal_read_fd = install_signal_handlers(signal.SIGCHLD, signal.SIGUSR1)[0]92 try:93 poll.register(signal_read_fd, select.POLLIN)94 t(signal.SIGINT, CLD_KILLED)95 p = subprocess.Popen([kitty_exe(), '+runpy', 'input()'], stderr=subprocess.DEVNULL, stdin=subprocess.PIPE)96 p.stdin.close()97 t(None, os.CLD_EXITED)98 expecting_code = None99 expecting_signal = signal.SIGUSR1.value100 os.kill(os.getpid(), signal.SIGUSR1)101 assert_signal()102 expecting_value = 17 if has_sigqueue else 0103 sigqueue(os.getpid(), signal.SIGUSR1.value, expecting_value)104 assert_signal()105 finally:...
test_restful_api_signals.py
Source:test_restful_api_signals.py
...30 )31 infodata = dict(version="v2", uuid="valid:id")32 with signal_listener(iiif_before_process_request) as listener:33 self.get("iiifimageapi", urlargs=data)34 results = listener.assert_signal()35 self.assertEqual(results[1], data)36 with signal_listener(iiif_after_process_request) as listener:37 response = self.get("iiifimageapi", urlargs=data)38 results = listener.assert_signal()39 self.assertEqual(40 (results[1].get("mimetype"), results[1].get("image").getvalue()),41 ("image/png", response.data),42 )43 with signal_listener(iiif_before_info_request) as listener:44 response = self.get("iiifimageinfo", urlargs=infodata)45 results = listener.assert_signal()46 self.assertEqual(results[1], infodata)47 with signal_listener(iiif_after_info_request) as listener:48 response = self.get("iiifimageinfo", urlargs=infodata)49 results = listener.assert_signal()...
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!!