You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

219 lines
7.1 KiB

  1. #! /usr/bin/python
  2. # -*- encoding: utf-8 -*-
  3. ##############################################################################
  4. #
  5. # Hardware Telium Test script
  6. # Copyright (C) 2014 Akretion (http://www.akretion.com)
  7. # @author Alexis de Lattre <alexis.delattre@akretion.com>
  8. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU Affero General Public License as
  11. # published by the Free Software Foundation, either version 3 of the
  12. # License, or (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU Affero General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Affero General Public License
  20. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. from serial import Serial
  24. import curses.ascii
  25. import time
  26. import pycountry
  27. DEVICE = '/dev/ttyACM0'
  28. DEVICE_RATE = 9600
  29. PAYMENT_MODE = 'card' # 'card' ou 'check'
  30. CURRENCY_ISO = 'EUR'
  31. AMOUNT = 12.42
  32. def serial_write(serial, text):
  33. assert isinstance(text, str), 'text must be a string'
  34. serial.write(text)
  35. def initialize_msg(serial):
  36. max_attempt = 3
  37. attempt_nr = 0
  38. while attempt_nr < max_attempt:
  39. attempt_nr += 1
  40. send_one_byte_signal(serial, 'ENQ')
  41. if get_one_byte_answer(serial, 'ACK'):
  42. return True
  43. else:
  44. print "Terminal : SAME PLAYER TRY AGAIN"
  45. send_one_byte_signal(serial, 'EOT')
  46. # Wait 1 sec between each attempt
  47. time.sleep(1)
  48. return False
  49. def send_one_byte_signal(serial, signal):
  50. ascii_names = curses.ascii.controlnames
  51. assert signal in ascii_names, 'Wrong signal'
  52. char = ascii_names.index(signal)
  53. serial_write(serial, chr(char))
  54. print 'Signal %s sent to terminal' % signal
  55. def get_one_byte_answer(serial, expected_signal):
  56. ascii_names = curses.ascii.controlnames
  57. one_byte_read = serial.read(1)
  58. expected_char = ascii_names.index(expected_signal)
  59. if one_byte_read == chr(expected_char):
  60. print "%s received from terminal" % expected_signal
  61. return True
  62. else:
  63. return False
  64. def prepare_data_to_send():
  65. if PAYMENT_MODE == 'check':
  66. payment_mode = 'C'
  67. elif PAYMENT_MODE == 'card':
  68. payment_mode = '1'
  69. else:
  70. print "The payment mode '%s' is not supported" % PAYMENT_MODE
  71. return False
  72. cur_iso_letter = CURRENCY_ISO.upper()
  73. try:
  74. cur = pycountry.currencies.get(letter=cur_iso_letter)
  75. cur_numeric = str(cur.numeric)
  76. except:
  77. print "Currency %s is not recognized" % cur_iso_letter
  78. return False
  79. data = {
  80. 'pos_number': str(1).zfill(2),
  81. 'answer_flag': '0',
  82. 'transaction_type': '0',
  83. 'payment_mode': payment_mode,
  84. 'currency_numeric': cur_numeric.zfill(3),
  85. 'private': ' ' * 10,
  86. 'delay': 'A011',
  87. 'auto': 'B010',
  88. 'amount_msg': ('%.0f' % (AMOUNT * 100)).zfill(8),
  89. }
  90. return data
  91. def generate_lrc(real_msg_with_etx):
  92. lrc = 0
  93. for char in real_msg_with_etx:
  94. lrc ^= ord(char)
  95. return lrc
  96. def send_message(serial, data):
  97. '''We use protocol E+'''
  98. ascii_names = curses.ascii.controlnames
  99. real_msg = (
  100. data['pos_number']
  101. + data['amount_msg']
  102. + data['answer_flag']
  103. + data['payment_mode']
  104. + data['transaction_type']
  105. + data['currency_numeric']
  106. + data['private']
  107. + data['delay']
  108. + data['auto']
  109. )
  110. print 'Real message to send = %s' % real_msg
  111. assert len(real_msg) == 34, 'Wrong length for protocol E+'
  112. real_msg_with_etx = real_msg + chr(ascii_names.index('ETX'))
  113. lrc = generate_lrc(real_msg_with_etx)
  114. message = chr(ascii_names.index('STX')) + real_msg_with_etx + chr(lrc)
  115. serial_write(serial, message)
  116. print 'Message sent to terminal'
  117. def compare_data_vs_answer(data, answer_data):
  118. for field in [
  119. 'pos_number', 'amount_msg',
  120. 'currency_numeric', 'private']:
  121. if data[field] != answer_data[field]:
  122. print (
  123. "Field %s has value '%s' in data and value '%s' in answer"
  124. % (field, data[field], answer_data[field]))
  125. def parse_terminal_answer(real_msg, data):
  126. answer_data = {
  127. 'pos_number': real_msg[0:2],
  128. 'transaction_result': real_msg[2],
  129. 'amount_msg': real_msg[3:11],
  130. 'payment_mode': real_msg[11],
  131. 'currency_numeric': real_msg[12:15],
  132. 'private': real_msg[15:26],
  133. }
  134. print 'answer_data = %s' % answer_data
  135. compare_data_vs_answer(data, answer_data)
  136. return answer_data
  137. def get_answer_from_terminal(serial, data):
  138. ascii_names = curses.ascii.controlnames
  139. full_msg_size = 1+2+1+8+1+3+10+1+1
  140. msg = serial.read(size=full_msg_size)
  141. print '%d bytes read from terminal' % full_msg_size
  142. assert len(msg) == full_msg_size, 'Answer has a wrong size'
  143. if msg[0] != chr(ascii_names.index('STX')):
  144. print 'The first byte of the answer from terminal should be STX'
  145. if msg[-2] != chr(ascii_names.index('ETX')):
  146. print 'The byte before final of the answer from terminal should be ETX'
  147. lrc = msg[-1]
  148. computed_lrc = chr(generate_lrc(msg[1:-1]))
  149. if computed_lrc != lrc:
  150. print 'The LRC of the answer from terminal is wrong'
  151. real_msg = msg[1:-2]
  152. print 'Real answer received = %s' % real_msg
  153. return parse_terminal_answer(real_msg, data)
  154. def transaction_start():
  155. '''This function sends the data to the serial/usb port.
  156. '''
  157. serial = False
  158. try:
  159. print(
  160. 'Opening serial port %s for payment terminal with '
  161. 'baudrate %d' % (DEVICE, DEVICE_RATE))
  162. # IMPORTANT : don't modify timeout=3 seconds
  163. # This parameter is very important ; the Telium spec say
  164. # that we have to wait to up 3 seconds to get LRC
  165. serial = Serial(
  166. DEVICE, DEVICE_RATE, timeout=3)
  167. print 'serial.is_open = %s' % serial.isOpen()
  168. if initialize_msg(serial):
  169. data = prepare_data_to_send()
  170. if not data:
  171. return
  172. send_message(serial, data)
  173. if get_one_byte_answer(serial, 'ACK'):
  174. send_one_byte_signal(serial, 'EOT')
  175. print "Now expecting answer from Terminal"
  176. if get_one_byte_answer(serial, 'ENQ'):
  177. send_one_byte_signal(serial, 'ACK')
  178. get_answer_from_terminal(serial, data)
  179. send_one_byte_signal(serial, 'ACK')
  180. if get_one_byte_answer(serial, 'EOT'):
  181. print "Answer received from Terminal"
  182. except Exception, e:
  183. print 'Exception in serial connection: %s' % str(e)
  184. finally:
  185. if serial:
  186. print 'Closing serial port for payment terminal'
  187. serial.close()
  188. if __name__ == '__main__':
  189. transaction_start()