| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- #!/usr/bin/python
- # SPDX-License-Identifier: LGPL-2.1-or-later
- from __future__ import absolute_import, print_function, unicode_literals
- from sap_client import *
- import time
- import sys
- def connect_disconnect_by_client(sap):
- print("[Test] Connect - Disconnect by client \n")
- try:
- if not sap.isConnected():
- sap.connect()
- if sap.proc_connect():
- if sap.proc_disconnectByClient():
- print("OK")
- return 0
- print("NOT OK")
- return 1
- except BluetoothError as e:
- print("Error " + str(e))
- def connect_disconnect_by_server_gracefully(sap, timeout=0):
- print("[Test] Connect - Disconnect by server with timer \n")
- try:
- if not sap.isConnected():
- sap.connect()
- if sap.proc_connect():
- if sap.proc_disconnectByServer(timeout):
- print("OK")
- return 0
- print("NOT OK")
- return 1
- except BluetoothError as e:
- print("Error " + str(e))
- def connect_txAPDU_disconnect_by_client(sap):
- print("[Test] Connect - TX APDU - Disconnect by client \n")
- try:
- if not sap.isConnected():
- sap.connect()
- if sap.proc_connect():
- if not sap.proc_transferAPDU():
- print("NOT OK 1")
- return 1
- if not sap.proc_transferAPDU():
- print("NOT OK 2")
- return 1
- if not sap.proc_transferAPDU():
- print("NOT OK 3")
- return 1
- if not sap.proc_transferAPDU():
- print("NOT OK 4")
- return 1
- if sap.proc_disconnectByClient():
- print("OK")
- return 0
- print("NOT OK")
- return 1
- except BluetoothError as e:
- print("Error " + str(e))
- def connect_rfcomm_only_and_wait_for_close_by_server(sap):
- print("[Test] Connect rfcomm only - Disconnect by server timeout \n")
- if not sap.isConnected():
- sap.connect()
- time.sleep(40)
- print("OK")
- def power_sim_off_on(sap):
- print("[Test] Powe sim off \n")
- try:
- if not sap.isConnected():
- sap.connect()
- if sap.proc_connect():
- if not sap.proc_resetSim():
- print("NOT OK")
- return 1
- if not sap.proc_powerSimOff():
- print("NOT OK")
- return 1
- if not sap.proc_powerSimOn():
- print("NOT OK")
- return 1
- if sap.proc_disconnectByClient():
- print("OK")
- return 0
- print("NOT OK")
- return 1
- except BluetoothError as e:
- print("Error " + str(e))
- if __name__ == "__main__":
- host = None # server bd_addr
- port = 8 # sap server port
- if (len(sys.argv) < 2):
- print("Usage: %s <address> [port]" % (sys.argv[0]))
- sys.exit(1)
- host = sys.argv[1]
- if (len(sys.argv) == 3):
- port = sys.argv[2]
- try:
- s = SAPClient(host, port)
- except BluetoothError as e:
- print("Error: " + str(e))
- sys.exit(1)
- connect_disconnect_by_client(s)
- connect_disconnect_by_server_gracefully(s)
- connect_disconnect_by_server_gracefully(s, 40) # wait 40 sec for srv to close rfcomm sock
- connect_rfcomm_only_and_wait_for_close_by_server(s)
- connect_txAPDU_disconnect_by_client(s)
- power_sim_off_on(s)
|