forked from espressif/esp-protocols
		
	By default it uses simple client connecting to https address. It is possible to configure both server and client. As for example test the configuration of both server and client connecting to each other on * Original commit: espressif/esp-idf@213bbe51fc
		
			
				
	
	
		
			16 lines
		
	
	
		
			370 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			370 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
import ttfw_idf
 | 
						|
 | 
						|
 | 
						|
@ttfw_idf.idf_example_test(env_tag='Example_GENERIC')
 | 
						|
def test_examples_asio_ssl(env, extra_data):
 | 
						|
 | 
						|
    dut = env.get_dut('asio_ssl_client_server', 'examples/protocols/asio/ssl_client_server')
 | 
						|
    dut.start_app()
 | 
						|
 | 
						|
    dut.expect('Reply: GET / HTTP/1.1')
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    test_examples_asio_ssl()
 |