mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-25 03:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| import os
 | |
| 
 | |
| import ttfw_idf
 | |
| from tiny_test_fw import Utility
 | |
| 
 | |
| 
 | |
| def get_socket_msgs(i):
 | |
|     msg = 'Socket message S{}'.format(i)
 | |
|     return ['uart_select_example: {} bytes were written to socket: {}'.format(len(msg), msg),
 | |
|             'uart_select_example: {} bytes were received through socket: {}'.format(len(msg), msg)]
 | |
| 
 | |
| 
 | |
| def get_uart_msgs(i):
 | |
|     msg = 'UART message U{}'.format(i)
 | |
|     return ['uart_select_example: {} bytes were sent to UART1: {}'.format(len(msg), msg),
 | |
|             'uart_select_example: {} bytes were received through UART1: {}'.format(len(msg), msg)]
 | |
| 
 | |
| 
 | |
| @ttfw_idf.idf_example_test(env_tag='Example_GENERIC', target=['esp32', 'esp32c3'])
 | |
| def test_examples_select(env, extra_data):
 | |
| 
 | |
|     dut = env.get_dut('select', 'examples/system/select')
 | |
|     dut.start_app()
 | |
| 
 | |
|     dut.expect('cpu_start: Starting scheduler', timeout=30)
 | |
| 
 | |
|     exp_list = []
 | |
|     for i in range(1, 10):
 | |
|         exp_list += get_socket_msgs(i)
 | |
|         exp_list += get_uart_msgs(i)
 | |
| 
 | |
|     Utility.console_log('Expecting:{}{}'.format(os.linesep, os.linesep.join(exp_list)))
 | |
|     dut.expect_all(*exp_list, timeout=60)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     test_examples_select()
 | 
