Lines Matching refs:dut1
108 dut1 = env.get_dut('websocket', 'examples/protocols/websocket', dut_class=ttfw_idf.ESP32DUT)
110 binary_file = os.path.join(dut1.app.binary_path, 'websocket_example.bin')
115 if 'CONFIG_WEBSOCKET_URI_FROM_STDIN' in dut1.app.get_sdkconfig():
118 uri = dut1.app.get_sdkconfig()['CONFIG_WEBSOCKET_URI'].strip('"')
126 dut1.start_app()
133 dut1.expect('Please enter uri of websocket endpoint', timeout=30)
134 dut1.write(uri)
135 test_echo(dut1)
137 test_recv_long_msg(dut1, ws, 2000, 3)
138 test_close(dut1)
142 test_echo(dut1)