forked from kiibohd/controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhidio.py
executable file
·491 lines (376 loc) · 16.6 KB
/
hidio.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#!/usr/bin/env python3
'''
HID-IO Test Cases for Host-side KLL
'''
# Copyright (C) 2017-2019 by Jacob Alexander
#
# This file is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this file. If not, see <http://www.gnu.org/licenses/>.
### Imports ###
import logging
import os
import time
import interface as i
import kiilogger
from common import (check, result, header)
### Setup ###
# Logger (current file and parent directory only)
logger = kiilogger.get_logger(os.path.join(os.path.split(__file__)[0], os.path.basename(__file__)))
logging.root.setLevel(logging.INFO)
# Reference to callback datastructure
data = i.control.data
### Test ###
# Drop to cli, type exit in the displayed terminal to continue
#i.control.cli()
## Loopback Tests ##
logger.info(header("-- RawIO Loopback tests --"))
i.control.cmd('setRawIOPacketSize')( 64 )
i.control.cmd('setRawIOLoopback')( True )
# Send basic test packet, 1 byte length, payload 0xAC
logger.info(header("- Single byte packet payload -"))
i.control.cmd('HIDIO_test_2_request')( 1, 0xAC )
# A single processing loop (receives, then sends packets)
i.control.loop(1)
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 1 )
check( data.rawio_outgoing_buffer[0][0].len == 3 )
check( data.rawio_outgoing_buffer[0][0].type == 0 )
check( data.rawio_outgoing_buffer[0][0].cont == 0 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 1 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have ACK packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 1 )
check( data.rawio_outgoing_buffer[0][0].len == 3 )
check( data.rawio_outgoing_buffer[0][0].type == 1 )
check( data.rawio_outgoing_buffer[0][0].cont == 0 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 1 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
# Check contents of incoming buffer (should be empty)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should be empty)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 0 )
# Send continued packet sequence (2 packets, payload length of 110 bytes, 64 byte packet length)
print("")
logger.info(header("- Two packet continued payload -"))
i.control.cmd('HIDIO_test_2_request')( 110, 0xAC )
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check data packet 1-2"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 2 )
# Packet 1
check( data.rawio_outgoing_buffer[0][0].len == 62 )
check( data.rawio_outgoing_buffer[0][0].type == 0 )
check( data.rawio_outgoing_buffer[0][0].cont == 1 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 60 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
# Packet 2
check( data.rawio_outgoing_buffer[1][0].len == 52 )
check( data.rawio_outgoing_buffer[1][0].type == 4 )
check( data.rawio_outgoing_buffer[1][0].cont == 0 )
check( data.rawio_outgoing_buffer[1][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[1][2] ) == 50 )
check( data.rawio_outgoing_buffer[1][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check data packet 1-2 ACK"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have ACK packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 2 )
check( data.rawio_outgoing_buffer[0][0].len == 62 )
check( data.rawio_outgoing_buffer[0][0].type == 1 )
check( data.rawio_outgoing_buffer[0][0].cont == 1 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 60 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
check( data.rawio_outgoing_buffer[1][0].len == 52 )
check( data.rawio_outgoing_buffer[1][0].type == 4 )
check( data.rawio_outgoing_buffer[1][0].cont == 0 )
check( data.rawio_outgoing_buffer[1][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[1][2] ) == 50 )
check( data.rawio_outgoing_buffer[1][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check buffers are empty"))
# Check contents of incoming buffer (should be empty)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should be empty)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 0 )
# Send continued packet sequence (3 packets, payload length of 160 bytes, 64 byte packet length)
print("")
logger.info(header("- Three packet continued payload -"))
i.control.cmd('HIDIO_test_2_request')( 160, 0xAC )
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check data packet 1"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 3 )
check( data.rawio_outgoing_buffer[0][0].len == 62 )
check( data.rawio_outgoing_buffer[0][0].type == 0 )
check( data.rawio_outgoing_buffer[0][0].cont == 1 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 60 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
check( data.rawio_outgoing_buffer[1][0].len == 62 )
check( data.rawio_outgoing_buffer[1][0].type == 4 )
check( data.rawio_outgoing_buffer[1][0].cont == 1 )
check( data.rawio_outgoing_buffer[1][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[1][2] ) == 60 )
check( data.rawio_outgoing_buffer[1][2][0] == 0xAC ) # Payload check
check( data.rawio_outgoing_buffer[2][0].len == 42 )
check( data.rawio_outgoing_buffer[2][0].type == 4 )
check( data.rawio_outgoing_buffer[2][0].cont == 0 )
check( data.rawio_outgoing_buffer[2][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[2][2] ) == 40 )
check( data.rawio_outgoing_buffer[2][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check packet 1-3 ACK"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have an ACK packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 3 )
check( data.rawio_outgoing_buffer[0][0].len == 62 )
check( data.rawio_outgoing_buffer[0][0].type == 1 )
check( data.rawio_outgoing_buffer[0][0].cont == 1 )
check( data.rawio_outgoing_buffer[0][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 60 )
check( data.rawio_outgoing_buffer[0][2][0] == 0xAC ) # Payload check
check( data.rawio_outgoing_buffer[1][0].len == 62 )
check( data.rawio_outgoing_buffer[1][0].type == 4 )
check( data.rawio_outgoing_buffer[1][0].cont == 1 )
check( data.rawio_outgoing_buffer[1][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[1][2] ) == 60 )
check( data.rawio_outgoing_buffer[1][2][0] == 0xAC ) # Payload check
check( data.rawio_outgoing_buffer[2][0].len == 42 )
check( data.rawio_outgoing_buffer[2][0].type == 4 )
check( data.rawio_outgoing_buffer[2][0].cont == 0 )
check( data.rawio_outgoing_buffer[2][1] == 2 ) # Id check
check( len( data.rawio_outgoing_buffer[2][2] ) == 40 )
check( data.rawio_outgoing_buffer[2][2][0] == 0xAC ) # Payload check
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check buffers are empty"))
# Check contents of incoming buffer (should be empty)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should be empty)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 0 )
# Invalid Id Test
print("")
logger.info(header("- Invalid Id Test -"))
i.control.cmd('HIDIO_invalid_65535_request')()
# A single processing loop (receivves, then sends packets)
i.control.loop(1)
logger.info(header("Check data packet"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 1 )
check( data.rawio_outgoing_buffer[0][0].len == 2 )
check( data.rawio_outgoing_buffer[0][0].type == 0 )
check( data.rawio_outgoing_buffer[0][0].cont == 0 )
check( data.rawio_outgoing_buffer[0][1] == 65535 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 0 )
# A single processing loop (receivves, then sends packets)
i.control.loop(1)
logger.info(header("Check NAK packet"))
# Check contents of incoming buffer (should be empty in loopback mode)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should have ACK packet in loopback mode)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 1 )
check( data.rawio_outgoing_buffer[0][0].len == 2 )
check( data.rawio_outgoing_buffer[0][0].type == 2 )
check( data.rawio_outgoing_buffer[0][0].cont == 0 )
check( data.rawio_outgoing_buffer[0][1] == 65535 ) # Id check
check( len( data.rawio_outgoing_buffer[0][2] ) == 0 )
# A single processing loop (receives, then sends packets)
i.control.loop(1)
logger.info(header("Check buffers are empty"))
# Check contents of incoming buffer (should be empty)
logger.info("Incoming Buf: {}", data.rawio_incoming_buffer)
check( len( data.rawio_incoming_buffer ) == 0 )
# Check contents of outgoing buffer (should be empty)
logger.info("Outgoing Buf: {}", data.rawio_outgoing_buffer)
check( len( data.rawio_outgoing_buffer ) == 0 )
# Worst-case Through-put Test (single byte payload)
print("")
logger.info(header("- Worst-case Through-put Test -"))
time_secs = 0.5
time_end = time.time() + time_secs
bytes_sent = 0
bytes_rcvd = 0
loops = 0
payload_len = 1
# Run through-put test for time duration
while time.time() < time_end:
# Send packet
i.control.cmd('HIDIO_test_2_request')( payload_len, 0x42 )
i.control.loop(1)
# Check packet
check( len( data.rawio_outgoing_buffer ) == 1 )
bytes_sent += data.rawio_outgoing_buffer[0][0].len
i.control.loop(1)
# Check ACK
check( len( data.rawio_outgoing_buffer ) == 1 )
bytes_rcvd += data.rawio_outgoing_buffer[0][0].len
i.control.loop(1)
# Check empty
check( len( data.rawio_outgoing_buffer ) == 0 )
loops += 1
logger.info(header("Results"))
logger.info(" Payload: {0} bytes", payload_len)
logger.info(" Time: {0} secs", time_secs)
logger.info(" Loops: {0}", loops)
logger.info(" Sent: {0} bytes/sec ({1} bytes)", bytes_sent / time_secs, bytes_sent)
logger.info(" Rcvd: {0} bytes/sec ({1} bytes)", bytes_rcvd / time_secs, bytes_rcvd)
# Full Packet Through-put Test (max packet payload)
print("")
logger.info(header("- Full Packet Through-put Test -"))
time_secs = 0.5
time_end = time.time() + time_secs
bytes_sent = 0
bytes_rcvd = 0
loops = 0
payload_len = 60
# Run through-put test for time duration
while time.time() < time_end:
# Send packet
i.control.cmd('HIDIO_test_2_request')( payload_len, 0x13 )
i.control.loop(1)
# Check packet
check( len( data.rawio_outgoing_buffer ) == 1 )
bytes_sent += data.rawio_outgoing_buffer[0][0].len
i.control.loop(1)
# Check ACK
check( len( data.rawio_outgoing_buffer ) == 1 )
bytes_rcvd += data.rawio_outgoing_buffer[0][0].len
i.control.loop(1)
# Check empty
check( len( data.rawio_outgoing_buffer ) == 0 )
loops += 1
logger.info(header("Results"))
logger.info(" Payload: {0} bytes", payload_len)
logger.info(" Time: {0} secs", time_secs)
logger.info(" Loops: {0}", loops)
logger.info(" Sent: {0} bytes/sec ({1} bytes)", bytes_sent / time_secs, bytes_sent)
logger.info(" Rcvd: {0} bytes/sec ({1} bytes)", bytes_rcvd / time_secs, bytes_rcvd)
# Continued Two Packet Through-put Test (max packet payload)
print("")
logger.info(header("- Continued Two Packet Through-put Test -"))
time_secs = 0.5
time_end = time.time() + time_secs
bytes_sent = 0
bytes_rcvd = 0
loops = 0
payload_len = 120
# Run through-put test for time duration
while time.time() < time_end:
# Send packet
i.control.cmd('HIDIO_test_2_request')( payload_len, 0x13 )
i.control.loop(1)
# Check packet
check( len( data.rawio_outgoing_buffer ) == 2 )
bytes_sent += data.rawio_outgoing_buffer[0][0].len
bytes_sent += data.rawio_outgoing_buffer[1][0].len
i.control.loop(1)
# Check ACK
check( len( data.rawio_outgoing_buffer ) == 2 )
bytes_rcvd += data.rawio_outgoing_buffer[0][0].len
bytes_rcvd += data.rawio_outgoing_buffer[1][0].len
i.control.loop(1)
# Check empty
check( len( data.rawio_outgoing_buffer ) == 0 )
loops += 1
logger.info(header("Results"))
logger.info(" Payload: {0} bytes", payload_len)
logger.info(" Time: {0} secs", time_secs)
logger.info(" Loops: {0}", loops)
logger.info(" Sent: {0} bytes/sec ({1} bytes)", bytes_sent / time_secs, bytes_sent)
logger.info(" Rcvd: {0} bytes/sec ({1} bytes)", bytes_rcvd / time_secs, bytes_rcvd)
# Continued Three Packet Through-put Test (max packet payload)
print("")
logger.info(header("- Continued Three Packet Through-put Test -"))
time_secs = 0.5
time_end = time.time() + time_secs
bytes_sent = 0
bytes_rcvd = 0
loops = 0
payload_len = 180
# Run through-put test for time duration
while time.time() < time_end:
# Send packet
i.control.cmd('HIDIO_test_2_request')( payload_len, 0x13 )
i.control.loop(1)
# Check packet
check( len( data.rawio_outgoing_buffer ) == 3 )
bytes_sent += data.rawio_outgoing_buffer[0][0].len
bytes_sent += data.rawio_outgoing_buffer[1][0].len
bytes_sent += data.rawio_outgoing_buffer[2][0].len
i.control.loop(1)
# Check ACK
check( len( data.rawio_outgoing_buffer ) == 3 )
bytes_rcvd += data.rawio_outgoing_buffer[0][0].len
bytes_rcvd += data.rawio_outgoing_buffer[1][0].len
bytes_rcvd += data.rawio_outgoing_buffer[2][0].len
i.control.loop(1)
# Check empty
check( len( data.rawio_outgoing_buffer ) == 0 )
loops += 1
logger.info(header("Results"))
logger.info(" Payload: {0} bytes", payload_len)
logger.info(" Time: {0} secs", time_secs)
logger.info(" Loops: {0}", loops)
logger.info(" Sent: {0} bytes/sec ({1} bytes)", bytes_sent / time_secs, bytes_sent)
logger.info(" Rcvd: {0} bytes/sec ({1} bytes)", bytes_rcvd / time_secs, bytes_rcvd)
# TODO
# - SYNC Test
# - Timeout test
result()