wiliot-certificate 4.4.3__py3-none-any.whl → 4.5.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. {brg_certificate → certificate}/ag/wlt_cmd_if.html +10 -4
  2. {brg_certificate → certificate}/ag/wlt_types_ag.py +1878 -519
  3. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2brg_ota.json +69 -0
  4. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb.json +109 -0
  5. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +45 -0
  6. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/calibration.json +96 -0
  7. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/custom.json +99 -0
  8. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/datapath.json +241 -13
  9. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energy2400.json +120 -0
  10. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energySub1g.json +96 -0
  11. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/externalSensor.json +135 -6
  12. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/interface.json +157 -0
  13. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/powerManagement.json +205 -0
  14. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json → certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +27 -11
  15. certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +175 -0
  16. certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json +65 -0
  17. certificate/cert_common.py +1459 -0
  18. certificate/cert_config.py +455 -0
  19. {brg_certificate → certificate}/cert_data_sim.py +131 -46
  20. {brg_certificate → certificate}/cert_defines.py +120 -128
  21. {brg_certificate → certificate}/cert_gw_sim.py +151 -49
  22. {brg_certificate → certificate}/cert_mqtt.py +164 -59
  23. {brg_certificate → certificate}/cert_prints.py +34 -33
  24. {brg_certificate → certificate}/cert_protobuf.py +15 -6
  25. {brg_certificate → certificate}/cert_results.py +205 -48
  26. certificate/cert_utils.py +622 -0
  27. certificate/certificate.py +198 -0
  28. certificate/certificate_cli.py +79 -0
  29. certificate/certificate_eth_test_list.txt +74 -0
  30. certificate/certificate_sanity_test_list.txt +65 -0
  31. certificate/certificate_test_list.txt +75 -0
  32. {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.json +2 -2
  33. {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.py +7 -6
  34. certificate/tests/calibration/output_power_test/output_power_test.json +22 -0
  35. certificate/tests/calibration/output_power_test/output_power_test.py +39 -0
  36. {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.json +1 -1
  37. {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.py +20 -15
  38. certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json +14 -0
  39. certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py +140 -0
  40. certificate/tests/cloud_connectivity/acl_test/acl_test.json +14 -0
  41. certificate/tests/cloud_connectivity/acl_test/acl_test.py +98 -0
  42. certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json +18 -0
  43. certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py +39 -0
  44. certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json +18 -0
  45. certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py +215 -0
  46. certificate/tests/cloud_connectivity/connection_test/connection_test.json +17 -0
  47. certificate/tests/cloud_connectivity/connection_test/connection_test.py +74 -0
  48. certificate/tests/cloud_connectivity/downlink_test/downlink_test.json +20 -0
  49. certificate/tests/cloud_connectivity/downlink_test/downlink_test.py +204 -0
  50. certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json +16 -0
  51. certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py +98 -0
  52. certificate/tests/cloud_connectivity/reboot_test/reboot_test.json +17 -0
  53. certificate/tests/cloud_connectivity/reboot_test/reboot_test.py +57 -0
  54. certificate/tests/cloud_connectivity/registration_test/registration_test.json +19 -0
  55. certificate/tests/cloud_connectivity/registration_test/registration_test.py +384 -0
  56. certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py +90 -0
  57. certificate/tests/cloud_connectivity/stress_test/stress_test.json +16 -0
  58. certificate/tests/cloud_connectivity/stress_test/stress_test.py +97 -0
  59. certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json +24 -0
  60. certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py +93 -0
  61. certificate/tests/cloud_connectivity/uplink_test/uplink_test.json +19 -0
  62. certificate/tests/cloud_connectivity/uplink_test/uplink_test.py +161 -0
  63. {brg_certificate → certificate}/tests/datapath/aging_test/aging_test.json +1 -1
  64. certificate/tests/datapath/aging_test/aging_test.py +138 -0
  65. certificate/tests/datapath/event_ble5_test/event_ble5_test.json +16 -0
  66. certificate/tests/datapath/event_ble5_test/event_ble5_test.py +95 -0
  67. certificate/tests/datapath/event_test/event_test.json +16 -0
  68. certificate/tests/datapath/event_test/event_test.py +85 -0
  69. {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.json +1 -1
  70. {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.py +10 -8
  71. certificate/tests/datapath/output_power_test/output_power_test.json +22 -0
  72. {brg_certificate → certificate}/tests/datapath/output_power_test/output_power_test.py +17 -6
  73. {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +1 -1
  74. {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +10 -8
  75. {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.json +1 -1
  76. {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.py +9 -7
  77. {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.json +2 -2
  78. {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.py +18 -6
  79. certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json +19 -0
  80. certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py +61 -0
  81. {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +1 -1
  82. {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +11 -10
  83. certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json +18 -0
  84. certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py +83 -0
  85. {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +1 -1
  86. {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +10 -9
  87. {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.json +1 -1
  88. {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.py +10 -9
  89. {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +1 -1
  90. {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +9 -8
  91. brg_certificate/tests/datapath/output_power_test/output_power_test.json → certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.json +5 -4
  92. certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py +77 -0
  93. {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.json +2 -2
  94. {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.py +7 -6
  95. {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +7 -7
  96. {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +112 -72
  97. {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +7 -7
  98. {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +112 -72
  99. {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.json +3 -3
  100. {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.py +12 -11
  101. {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.json +3 -3
  102. {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.py +12 -11
  103. {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.json +2 -1
  104. {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.py +14 -13
  105. certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json +14 -0
  106. certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py +24 -0
  107. certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json +14 -0
  108. certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py +43 -0
  109. certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json +14 -0
  110. certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py +42 -0
  111. certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json +14 -0
  112. certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py +44 -0
  113. certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json +15 -0
  114. certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py +42 -0
  115. certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json +14 -0
  116. certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py +49 -0
  117. certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json +14 -0
  118. certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py +102 -0
  119. certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json +14 -0
  120. certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +41 -0
  121. {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json +2 -2
  122. {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py +22 -11
  123. {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.json +1 -1
  124. {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.py +7 -6
  125. certificate/tests/energy2400/output_power_test/output_power_test.json +22 -0
  126. {brg_certificate → certificate}/tests/energy2400/output_power_test/output_power_test.py +17 -6
  127. {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.json +1 -1
  128. {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.py +7 -6
  129. certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +25 -0
  130. certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +378 -0
  131. brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.json → certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +3 -3
  132. brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.py → certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +97 -87
  133. certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +23 -0
  134. certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +350 -0
  135. {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +1 -1
  136. {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +7 -6
  137. {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.json +1 -1
  138. {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.py +7 -6
  139. {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +1 -1
  140. {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +10 -10
  141. {brg_certificate → certificate}/tests/sensors/ext_sensor_test/ext_sensor_test.json +4 -4
  142. certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +455 -0
  143. certificate/wlt_types.py +122 -0
  144. {gw_certificate → common}/api_if/202/status.json +6 -0
  145. {gw_certificate → common}/api_if/203/status.json +6 -0
  146. {gw_certificate → common}/api_if/204/status.json +6 -0
  147. common/api_if/206/data.json +85 -0
  148. common/api_if/206/status.json +69 -0
  149. common/api_if/api_validation.py +85 -0
  150. common/web/templates/generator.html +148 -0
  151. common/web/templates/index.html +20 -0
  152. common/web/templates/menu.html +54 -0
  153. common/web/templates/parser.html +53 -0
  154. {brg_certificate/ag → common/web/templates}/wlt_types.html +1216 -191
  155. common/web/web_utils.py +377 -0
  156. {brg_certificate → common}/wltPb_pb2.py +14 -12
  157. {gw_certificate/common → common}/wltPb_pb2.pyi +16 -2
  158. gui_certificate/gui_certificate_cli.py +14 -0
  159. gui_certificate/server.py +1062 -0
  160. gui_certificate/templates/cert_run.html +1207 -0
  161. wiliot_certificate-4.5.0a1.dist-info/METADATA +110 -0
  162. wiliot_certificate-4.5.0a1.dist-info/RECORD +182 -0
  163. {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/WHEEL +1 -1
  164. wiliot_certificate-4.5.0a1.dist-info/entry_points.txt +5 -0
  165. wiliot_certificate-4.5.0a1.dist-info/top_level.txt +3 -0
  166. brg_certificate/ag/energous_v0_defines.py +0 -925
  167. brg_certificate/ag/energous_v1_defines.py +0 -931
  168. brg_certificate/ag/energous_v2_defines.py +0 -925
  169. brg_certificate/ag/energous_v3_defines.py +0 -925
  170. brg_certificate/ag/energous_v4_defines.py +0 -925
  171. brg_certificate/ag/fanstel_lan_v0_defines.py +0 -925
  172. brg_certificate/ag/fanstel_lte_v0_defines.py +0 -925
  173. brg_certificate/ag/fanstel_wifi_v0_defines.py +0 -925
  174. brg_certificate/ag/minew_lte_v0_defines.py +0 -925
  175. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +0 -61
  176. brg_certificate/brg_certificate.py +0 -225
  177. brg_certificate/brg_certificate_cli.py +0 -63
  178. brg_certificate/cert_common.py +0 -923
  179. brg_certificate/cert_config.py +0 -402
  180. brg_certificate/cert_utils.py +0 -362
  181. brg_certificate/certificate_bcc_sanity_test_list.txt +0 -40
  182. brg_certificate/certificate_bcc_test_list.txt +0 -48
  183. brg_certificate/certificate_sanity_test_list.txt +0 -43
  184. brg_certificate/certificate_test_list.txt +0 -53
  185. brg_certificate/config/eclipse.json +0 -10
  186. brg_certificate/config/hivemq.json +0 -10
  187. brg_certificate/config/mosquitto.json +0 -10
  188. brg_certificate/config/mosquitto.md +0 -95
  189. brg_certificate/config/wiliot-dev.json +0 -10
  190. brg_certificate/restore_brg.py +0 -61
  191. brg_certificate/tests/calibration/output_power_test/output_power_test.json +0 -16
  192. brg_certificate/tests/calibration/output_power_test/output_power_test.py +0 -28
  193. brg_certificate/tests/datapath/aging_test/aging_test.py +0 -143
  194. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json +0 -16
  195. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py +0 -73
  196. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json +0 -17
  197. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py +0 -118
  198. brg_certificate/tests/edge_mgmt/actions_test/actions_test.json +0 -14
  199. brg_certificate/tests/edge_mgmt/actions_test/actions_test.py +0 -396
  200. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json +0 -20
  201. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py +0 -94
  202. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json +0 -19
  203. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py +0 -87
  204. brg_certificate/tests/edge_mgmt/leds_test/leds_test.json +0 -17
  205. brg_certificate/tests/edge_mgmt/leds_test/leds_test.py +0 -223
  206. brg_certificate/tests/edge_mgmt/ota_test/ota_test.json +0 -17
  207. brg_certificate/tests/edge_mgmt/ota_test/ota_test.py +0 -128
  208. brg_certificate/tests/energy2400/output_power_test/output_power_test.json +0 -16
  209. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json +0 -20
  210. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py +0 -321
  211. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json +0 -20
  212. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py +0 -141
  213. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +0 -20
  214. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +0 -276
  215. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json +0 -20
  216. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py +0 -390
  217. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json +0 -16
  218. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py +0 -28
  219. brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +0 -305
  220. brg_certificate/wltPb_pb2.pyi +0 -234
  221. brg_certificate/wlt_types.py +0 -113
  222. gw_certificate/ag/ut_defines.py +0 -364
  223. gw_certificate/ag/wlt_types.py +0 -85
  224. gw_certificate/ag/wlt_types_ag.py +0 -5310
  225. gw_certificate/ag/wlt_types_data.py +0 -64
  226. gw_certificate/api/extended_api.py +0 -23
  227. gw_certificate/api_if/200/data.json +0 -106
  228. gw_certificate/api_if/200/status.json +0 -47
  229. gw_certificate/api_if/201/data.json +0 -98
  230. gw_certificate/api_if/201/status.json +0 -53
  231. gw_certificate/api_if/205/logs.json +0 -12
  232. gw_certificate/api_if/api_validation.py +0 -38
  233. gw_certificate/api_if/gw_capabilities.py +0 -54
  234. gw_certificate/cert_results.py +0 -145
  235. gw_certificate/common/analysis_data_bricks.py +0 -60
  236. gw_certificate/common/debug.py +0 -42
  237. gw_certificate/common/serialization_formatter.py +0 -93
  238. gw_certificate/common/utils.py +0 -8
  239. gw_certificate/common/utils_defines.py +0 -15
  240. gw_certificate/common/wltPb_pb2.py +0 -84
  241. gw_certificate/gw_certificate.py +0 -154
  242. gw_certificate/gw_certificate_cli.py +0 -87
  243. gw_certificate/interface/4.4.93_app.zip +0 -0
  244. gw_certificate/interface/4.4.93_sd_bl_app.zip +0 -0
  245. gw_certificate/interface/ble_simulator.py +0 -61
  246. gw_certificate/interface/ble_sniffer.py +0 -189
  247. gw_certificate/interface/flash_fw.py +0 -90
  248. gw_certificate/interface/if_defines.py +0 -36
  249. gw_certificate/interface/mqtt.py +0 -563
  250. gw_certificate/interface/nrfutil-linux +0 -0
  251. gw_certificate/interface/nrfutil-mac +0 -0
  252. gw_certificate/interface/nrfutil.exe +0 -0
  253. gw_certificate/interface/pkt_generator.py +0 -594
  254. gw_certificate/interface/uart_if.py +0 -236
  255. gw_certificate/interface/uart_ports.py +0 -20
  256. gw_certificate/templates/results.html +0 -241
  257. gw_certificate/templates/stage.html +0 -22
  258. gw_certificate/templates/table.html +0 -6
  259. gw_certificate/templates/test.html +0 -38
  260. gw_certificate/tests/__init__.py +0 -10
  261. gw_certificate/tests/actions.py +0 -289
  262. gw_certificate/tests/bad_crc_to_PER_quantization.csv +0 -51
  263. gw_certificate/tests/connection.py +0 -188
  264. gw_certificate/tests/downlink.py +0 -172
  265. gw_certificate/tests/generic.py +0 -238
  266. gw_certificate/tests/registration.py +0 -340
  267. gw_certificate/tests/static/__init__.py +0 -0
  268. gw_certificate/tests/static/connection_defines.py +0 -9
  269. gw_certificate/tests/static/downlink_defines.py +0 -9
  270. gw_certificate/tests/static/generated_packet_table.py +0 -195
  271. gw_certificate/tests/static/packet_table.csv +0 -10067
  272. gw_certificate/tests/static/references.py +0 -5
  273. gw_certificate/tests/static/uplink_defines.py +0 -14
  274. gw_certificate/tests/throughput.py +0 -240
  275. gw_certificate/tests/uplink.py +0 -853
  276. wiliot_certificate-4.4.3.dist-info/METADATA +0 -211
  277. wiliot_certificate-4.4.3.dist-info/RECORD +0 -210
  278. wiliot_certificate-4.4.3.dist-info/entry_points.txt +0 -3
  279. wiliot_certificate-4.4.3.dist-info/top_level.txt +0 -3
  280. {brg_certificate → certificate}/__init__.py +0 -0
  281. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/side_info_sensor.json +0 -0
  282. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/signal_indicator_data.json +0 -0
  283. {gw_certificate → common}/api_if/202/data.json +0 -0
  284. {gw_certificate/api_if/200 → common/api_if/202}/logs.json +0 -0
  285. {gw_certificate → common}/api_if/203/data.json +0 -0
  286. {gw_certificate/api_if/201 → common/api_if/203}/logs.json +0 -0
  287. {gw_certificate → common}/api_if/204/data.json +0 -0
  288. {gw_certificate/api_if/202 → common/api_if/204}/logs.json +0 -0
  289. {gw_certificate → common}/api_if/205/data.json +0 -0
  290. {gw_certificate/api_if/203 → common/api_if/205}/logs.json +0 -0
  291. {gw_certificate → common}/api_if/205/status.json +0 -0
  292. {gw_certificate/api_if/204 → common/api_if/206}/logs.json +0 -0
  293. {gw_certificate → common/api_if}/__init__.py +0 -0
  294. {gw_certificate/api_if → gui_certificate}/__init__.py +0 -0
  295. {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: wiliot_certificate
3
+ Version: 4.5.0a1
4
+ Summary: A library for certifying Wiliot-compliant boards
5
+ Author-email: Wiliot <support@wiliot.com>
6
+ License-Expression: MIT
7
+ Project-URL: Wiliot, https://www.wiliot.com
8
+ Project-URL: Certified, https://www.wiliot.com/product/ambient-iot-network#partner-device-certification
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: flask>=3.1
15
+ Requires-Dist: appdirs>=1.4.4
16
+ Requires-Dist: plotly>=6.0.0
17
+ Requires-Dist: numpy>=1.21.5
18
+ Requires-Dist: pandas>=2.2.3
19
+ Requires-Dist: colorama>=0.4.6
20
+ Requires-Dist: tabulate>=0.9.0
21
+ Requires-Dist: wiliot-core>=5.9.1
22
+ Requires-Dist: paho-mqtt>=2.1.0
23
+ Requires-Dist: bitstruct>=8.20.0
24
+ Requires-Dist: protobuf>=6.30.2
25
+ Requires-Dist: wiliot-api>=4.10.8
26
+ Requires-Dist: jsonschema>=4.23.0
27
+ Requires-Dist: statsmodels>=0.14.4
28
+ Requires-Dist: pyserial>=3.5
29
+ Requires-Dist: reportlab>=4.3.1
30
+ Requires-Dist: google-api-python-client>=2.162.0
31
+ Dynamic: license-file
32
+
33
+ # wiliot-certificate Version 4.5.0
34
+
35
+ <!-- Description -->
36
+ wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
37
+ This python package includes the following CLI utilities:
38
+ - Certification Wizard (`wlt-cert`)
39
+ - Certificate CLI (`wlt-cert-cli`)
40
+ - Tester Upgrade (`wlt-cert-tester-upgrade`)
41
+ - Registration Certificate (`wlt-cert-reg`)
42
+
43
+ # Version:
44
+ wiliot-certificate versions 4.5.0 are compatible with firmware version >=4.5.0 (API VERSION: 13)
45
+
46
+ ## Installing wiliot-certificate
47
+ Install wiliot-certificate:
48
+ ````commandline
49
+ pip install wiliot-certificate
50
+ ````
51
+
52
+ ## Using wiliot-certificate
53
+ ### Certification
54
+ In terminal, run:
55
+ ````commandline
56
+ wlt-cert
57
+ ````
58
+ <!-- This tool walks you through... TODO -->
59
+ <!-- You need to have a json validation schema <LINK>, certification tester & custom broker file <LINK> -->
60
+
61
+ #### The following capabilities are not tested in this version
62
+ ##### Cloud Connectivity & Misc
63
+ - Board type registered within the Board Type Management system
64
+ - Bridge OTA progress reporting
65
+ ##### Power management
66
+ - Functionality of energize and transmit in sleep mode
67
+ ##### Edge management
68
+ - Timing of heartbeat and interface packets
69
+ ##### Module Energy 2400
70
+ - Functionality of energy pattern, output power and duty cycle
71
+ ##### Module Energy SUB1G
72
+ - Functionality of energy pattern and duty cycle
73
+ ##### Module Datapath
74
+ - RSSI edge cases: -127 and 0
75
+ - Functionality of transmission pattern, output power
76
+ - Pacer interval with channel 10 and 500k modulation
77
+ - Pacer interval using GEN3 Pixels
78
+ - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
79
+ - Rx rate feature with extended advertising
80
+ - Functionality of adaptive pacer algorithm
81
+ - Supported Pixels for extended advertising and GEN3
82
+ ##### Calibration
83
+ - Functionality of output power and interval calibration
84
+ - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
85
+
86
+
87
+ ### Certificate CLI
88
+ In terminal, run:
89
+ ````commandline
90
+ wlt-cert-cli -h
91
+ ````
92
+ CLI version of the certificate. Use -h for details on the different arguments.
93
+
94
+
95
+ ### Tester Upgrade
96
+ In terminal, run:
97
+ ````commandline
98
+ wlt-cert-tester-upgrade
99
+ ````
100
+ Upgrades the firmware of the tester device to the version required for certification.
101
+
102
+
103
+ ### Registration Certificate
104
+ In terminal, run:
105
+ ````commandline
106
+ wlt-cert-reg
107
+ ````
108
+ Certify the gateway registration process to Wiliot platform.
109
+ The gateway must use Wiliot production MQTT broker, and mustn't be registered to any account on Wiliot platform.
110
+ Use -h for details on the arguments. <!-- More info can be found in TODO link-->
@@ -0,0 +1,182 @@
1
+ certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ certificate/cert_common.py,sha256=UwymXwdiTcdfy6iNp9-DmLZ-EyhxFTVgq7bb3dC4Owc,71482
3
+ certificate/cert_config.py,sha256=IHzs9Cpw3fJsn6al0gxKcs7n3Z5tB3GhnSy_GTUolb8,22477
4
+ certificate/cert_data_sim.py,sha256=7DLBP5OTzo9jJvQctz_b_6XiozsY9VXkatRCrxJ96xk,13736
5
+ certificate/cert_defines.py,sha256=xkSFTbu-NORZnWV1P0pZzNpR572BUkFm2rdqn_KA998,17168
6
+ certificate/cert_gw_sim.py,sha256=xIwHvcFBCi89now_HFRo_V1cTLoYuulDwBrlu1iHqGw,16368
7
+ certificate/cert_mqtt.py,sha256=N1uNN2V4ovUg-pTmUGMD6lHAnICW7BLNYGTcnG59qO0,22237
8
+ certificate/cert_prints.py,sha256=z8Bw3ZHiLr6yN3EbRkVvmUMkwLt6VNj0MUX1mUvdHQI,7025
9
+ certificate/cert_protobuf.py,sha256=j8Tmm86VXONMvSTBl4Tmwt5G1jJRcJg05nJj7YHbpoM,3824
10
+ certificate/cert_results.py,sha256=t2tiDVZYf6gEn7nDrQ1U6IXz0FD5R1sqgtGL0l68WvY,28896
11
+ certificate/cert_utils.py,sha256=2oSPz9--hVMbj1Hr0G-3l0dfh9_815ReCfrbZBRQMNo,28763
12
+ certificate/certificate.py,sha256=VGtbU8jN-y_cBbOxn_apQZCyW59W-3MFXDaCher6bdI,9235
13
+ certificate/certificate_cli.py,sha256=uwfdVNpQirdRyLjl0bR410xkaY59OmIEOya7wYYV4AY,5363
14
+ certificate/certificate_eth_test_list.txt,sha256=CELzzkv9kQxiLdJ2aDmRglbiwImciE5G37vSVJvZK8A,6199
15
+ certificate/certificate_sanity_test_list.txt,sha256=F1vXhhw4gsJUxt34C2fuQkS-E8Sc74G41jinzeKFO7Y,3448
16
+ certificate/certificate_test_list.txt,sha256=sTCWWdNk0Gfyi70wFpIHdTVg4cZzeF1psrqjMrzmQTs,6232
17
+ certificate/wlt_types.py,sha256=7RbsW-OudiHhNAay6nFGKtF4FrlAq91pm9yeIQRxddM,6047
18
+ certificate/ag/wlt_cmd_if.html,sha256=eO-FYVrxVs5JdCblGaQLG9-0dZKt6YjbE9Ggz8bXRq4,16831
19
+ certificate/ag/wlt_types_ag.py,sha256=cTYysTSdEh2IWY8tD3pipRhwKo1b194VSX64ctvgGQY,536839
20
+ certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json,sha256=r7sp87tCenTWPi0APL_CvKJZP3gI1IE1LU88QOja6hQ,4688
21
+ certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json,sha256=IDbMcPLVIN2rR-r6aR-XdMnAuGQokS7yLBFBGtmwhuI,20523
22
+ certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json,sha256=Yk-r1xvmcmdPHVI8DF-N2K9rJCkBqIl0Vyjv4cbxkjY,3999
23
+ certificate/ag/wlt_types_ag_jsons/calibration.json,sha256=joU8MbLbBJGzxSBV1bXPBCbqrI92k7GifD3igagvIzs,11508
24
+ certificate/ag/wlt_types_ag_jsons/custom.json,sha256=MNQ9MhA6aKcz-cCMgTOrbhdCpnb5KC9bSzHGeX76xxw,13657
25
+ certificate/ag/wlt_types_ag_jsons/datapath.json,sha256=82D-cmPofPe1BjmdXpDSNhXzwwGsWBAPK7fsPWgEJ8E,23435
26
+ certificate/ag/wlt_types_ag_jsons/energy2400.json,sha256=CpRMxpUXaQl5A0bvdNTjjGmvbhprRleYY-ImXGh9t4g,15514
27
+ certificate/ag/wlt_types_ag_jsons/energySub1g.json,sha256=B67NthLwuk5qeTFjjC7IcegcDiZb2i0HPIjaNl1iAGQ,15914
28
+ certificate/ag/wlt_types_ag_jsons/externalSensor.json,sha256=jJzlKFGkPMW2JKccukHHybFHX_fUp2jSs9_Y5T7Iqmg,17169
29
+ certificate/ag/wlt_types_ag_jsons/interface.json,sha256=6qCUaMsOKeFrM2zKRpeGZRkGoZdXE1A5AKJI_U6ypRk,25482
30
+ certificate/ag/wlt_types_ag_jsons/powerManagement.json,sha256=fWgDyTKqGhUNT2deelh6XcQlwaat__rjUfpj-lfx2Yk,32724
31
+ certificate/ag/wlt_types_ag_jsons/side_info_sensor.json,sha256=P06xqCiJnxImP8rV7C0a7YvhDaIhqn0e_9wl6uzGaps,2349
32
+ certificate/ag/wlt_types_ag_jsons/signal_indicator_data.json,sha256=6AmSuNh6YC6ZlQtfIaOW-S5IVEnx64KdVYfwS7g5Z4M,1668
33
+ certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json,sha256=mbDYcJ3MDET2YqmOQgDsGy5ejyFlM4D8L1rZBw89cmU,2677
34
+ certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json,sha256=DXRph3DPXzC1Y8YZr-xh6hLlTrO1LvPGRrSrnz4m7rM,3727
35
+ certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json,sha256=BkdFy8toXK2qhCvg8dY6CP-YaS3lZ-gPVZlUK_PaWFU,1410
36
+ certificate/tests/calibration/interval_test/interval_test.json,sha256=io1q2a_45ksqm71iZ0ruk6m5xo_6ftTct9c5cLsXSK8,596
37
+ certificate/tests/calibration/interval_test/interval_test.py,sha256=6PCpP1uoQDyuQAN5CKg1Go1uQOM-dZ0W4nH8syjU5bg,1171
38
+ certificate/tests/calibration/output_power_test/output_power_test.json,sha256=TLnT_LANRmLxlMzqZQ5eSuA7aPSWV35ryN3ZIxX4WO0,1443
39
+ certificate/tests/calibration/output_power_test/output_power_test.py,sha256=ZhszJX-ugX1R2aFLhdKOk6qFtEwW_7qSRVDWkWv5sSo,1698
40
+ certificate/tests/calibration/pattern_test/pattern_test.json,sha256=lfAQal-qLqbwf1_HJEKia7nUU-ZqMO9YexNWsQjVp_k,1022
41
+ certificate/tests/calibration/pattern_test/pattern_test.py,sha256=SobeVTLqDbr0IJ79rgDBy3WAmw63Gv5CthOUSxIlMqM,4559
42
+ certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json,sha256=kofk6AnR8BO_OmXP0rSr-rU4l1GwrV4Iw9zdDt3LnCI,790
43
+ certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py,sha256=tdXqVj8hqFAdT46aB9UwHVr-O21BfvbFQtiSLpW8erY,7118
44
+ certificate/tests/cloud_connectivity/acl_test/acl_test.json,sha256=f2Z2kW-Aj7ge_dLspM9kcHb2YmTdrO_MnV7oTiC_RSk,705
45
+ certificate/tests/cloud_connectivity/acl_test/acl_test.py,sha256=SnXAv2IszOjyJAWJrIfzHu1RCDmLW4E5MwryJcm-Uao,4635
46
+ certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json,sha256=bSBbWaggOew38x91rzdC88jxE3FYJsusO9IvTy7KJ1I,850
47
+ certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py,sha256=xqB65yWM754UfWF1N_h4bI4kuEajAqMvcdFjRu0OFfI,1873
48
+ certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json,sha256=9VPpD-FTx80Zgtns1uGVQNGLVohOzKL-6hMhVgKBs2Y,780
49
+ certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py,sha256=YBlpBshBHdMkiRp_liow7Tknj1e1j0fMAU8OKZJKWwg,10121
50
+ certificate/tests/cloud_connectivity/connection_test/connection_test.json,sha256=xr-d-DnzbItkXE8oBTZ31Fr0huhILdxXTQFJyqd6FYc,939
51
+ certificate/tests/cloud_connectivity/connection_test/connection_test.py,sha256=vawz7N9tltiIxtOLOAsEPDid-RDQuGEYWJwm388gVuA,2707
52
+ certificate/tests/cloud_connectivity/downlink_test/downlink_test.json,sha256=VR2EHtOLHuh0ETSbgRGOuorHcuJPKBkk1hwM_7g_Dj4,878
53
+ certificate/tests/cloud_connectivity/downlink_test/downlink_test.py,sha256=p9PDpvKd8dhXiPElZ4CY6HgAs5IWdKfd9fmhBj_C1fM,8645
54
+ certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json,sha256=bpziEnGpwf0i03suFOgykAZrlwQeKsVWLyfd8vOWz0s,998
55
+ certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py,sha256=jyfRxbkpIoDTSE1bzV3qtRwzdltfWlb53yxkdQQaJYA,3922
56
+ certificate/tests/cloud_connectivity/reboot_test/reboot_test.json,sha256=QZMqxrUul_jEvoQJKdWjzXxa_m49a3rVyDTDbREYhik,781
57
+ certificate/tests/cloud_connectivity/reboot_test/reboot_test.py,sha256=h8Uhn6NQExb9pLRytrd7UvLO0ScxTOfM3sdCwSCWKqg,1924
58
+ certificate/tests/cloud_connectivity/registration_test/registration_test.json,sha256=fT-IHk0CRid8EDgo9bDtO7jl_1JDcVK0bQSHBz8CpZw,1039
59
+ certificate/tests/cloud_connectivity/registration_test/registration_test.py,sha256=uzLwNQFffLJQhzuUx0l1-xsk7r0X1z4xBk7zjkzlTlE,15115
60
+ certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py,sha256=zh9j298Nis8BiL74E1pXskoxXzPmedznyJqJwKS4CIU,3164
61
+ certificate/tests/cloud_connectivity/stress_test/stress_test.json,sha256=_DM42nBfSzF6hbo217DUfealONBY109i60-ZrAsBLXY,868
62
+ certificate/tests/cloud_connectivity/stress_test/stress_test.py,sha256=K-GdYGRI-mPx_xxUHIVPbAwKEGqXw-o0lPegHhsniyU,3821
63
+ certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json,sha256=4yiEHa1sxz6-xnQDtaBU4JHNDsPZ_p9Jpgqpy8s9QJY,1326
64
+ certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py,sha256=U5FRhgoba12F7IIT4JmOKRhOaIkGYLV3I4tnf6a0xVc,4427
65
+ certificate/tests/cloud_connectivity/uplink_test/uplink_test.json,sha256=F28h9EjUxLYOiYH1mk_o8hUqHyer4Mc7BhvfU4VnhYQ,955
66
+ certificate/tests/cloud_connectivity/uplink_test/uplink_test.py,sha256=UMBfpsgRWNNRxtj8iRtvA2Mhjg9IH35PCFbO-hA_GEM,6752
67
+ certificate/tests/datapath/aging_test/aging_test.json,sha256=n1LmPKJWzfSOmjNFMVMeIdFS59kteUDce6a55gEM4Zk,901
68
+ certificate/tests/datapath/aging_test/aging_test.py,sha256=hxWlCd9XOJP9M14T9XRPpJ8_Af6SNaUs9ZDJNLRg7ms,6682
69
+ certificate/tests/datapath/event_ble5_test/event_ble5_test.json,sha256=Tz3sx09zVKjgRcNtrnriF2Iski_TxbUluFji69KUdPs,967
70
+ certificate/tests/datapath/event_ble5_test/event_ble5_test.py,sha256=eCU7wTBsqheQqxdj7nIkMsi8UT3tgXeupDIfXXDNHDE,5101
71
+ certificate/tests/datapath/event_test/event_test.json,sha256=wGLlSQB4Q1bQG4CfY5XEcw2r2wO5MI-Gnm-cBDeFktQ,972
72
+ certificate/tests/datapath/event_test/event_test.py,sha256=fzc_t4YjyxCqSRbB4HIqVu4zZZs1TZIGRRm-pTzGA2U,4186
73
+ certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json,sha256=-oNrMxuncrDXG_t7b8gbrdFsQftUFHW5uQQMGkkwz3I,830
74
+ certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py,sha256=Ecaf-8yQQX1ZybbgMstiNPrVhZz7-BSF4MSiUiE6tTc,3481
75
+ certificate/tests/datapath/output_power_test/output_power_test.json,sha256=1B_glQf7GUgjdqnAwnKE2_iyinNGuW3mtiglp2XlLvQ,1449
76
+ certificate/tests/datapath/output_power_test/output_power_test.py,sha256=09Ug3nhLm3SFTdfZnoKSN1wR5Dc9yRKbRlaNn7Gt9Rw,1704
77
+ certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json,sha256=5TIAiLQ5RRzRzYImh4Hk5iv0-skqdpuJALff3Z75j_s,948
78
+ certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py,sha256=v6E2CZY9pn1uiKu4DM5o0H-OkrSS8Acxe2_Rps95N9Q,2672
79
+ certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json,sha256=1Z_vTa_XJCV0Rgr_mt8IqF8K04ywMoLiqHJUsHX_jwo,922
80
+ certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py,sha256=wl11515yJFsog_-ei6fU9-63M-rYH0oRYJIFerG0tf4,2665
81
+ certificate/tests/datapath/pattern_test/pattern_test.json,sha256=e_rJ0cwsDCOEvJnnbG_wMv3s1OyMX_CEi88npdlmYpQ,870
82
+ certificate/tests/datapath/pattern_test/pattern_test.py,sha256=v8No-SnxB6Fcmga9kzbEetMUSafjZ8Ftipp1AU-79QQ,1731
83
+ certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json,sha256=zxmjStEe_1KIezxLX9ncAqTjYiTKotxKEXmCf8ySTPU,1225
84
+ certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py,sha256=eVdEK7jGkRENFby_EIApndmLeDJAqY0xnI1lLtr4imM,3247
85
+ certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json,sha256=3AsDojnRFtblBPP1WxKXegOjftq1X8WvRyR69zgmSQo,1203
86
+ certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py,sha256=89AZzh_fGMh7GRre39LeRWs9wrIooN34msFq-sVYWBk,3160
87
+ certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json,sha256=F2-J_3mV09RLnT0Z6Zv2c08oBQ4QNnnCK7M-UtE41KE,1206
88
+ certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py,sha256=5d9rSOzRoKbkRKvWuX_6Gt5a5l80jXe3uvxMSVW9Rnc,4552
89
+ certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json,sha256=veqwlRnG5VbdA-n4YZ6nfjSUxL5dar52GfuG0JrmfWQ,1157
90
+ certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py,sha256=vB2JlCczasZE81VGRzIeqBEM8VGekSf9-wgGP8SWd50,3152
91
+ certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json,sha256=sGWj910BxCrzaFMlF8lp8NjNmhiXMR4DO7qSJJg92ZU,1168
92
+ certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py,sha256=rEHn2aO0SM3PeT68czrhp1GkxG3o7qAj5h9JPUyC-kE,3132
93
+ certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json,sha256=cEu0MIuF3bu3DMQ9PglEK-J91u2g7q0oh8ABdIqw0TY,738
94
+ certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py,sha256=d4RXqCuJv5fEjt01GFXQb99hF0EgOSS3EoKCueLhMfg,3271
95
+ certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.json,sha256=zjzm7WKNzNe6UCasynLmjg4Gz4VX3HndY8n9yUlekFc,847
96
+ certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py,sha256=ZXQRYFxnUOgdcWS4BpN95XVbezQG0X8wU5s1Lbc2Ytg,3398
97
+ certificate/tests/datapath/rx_channel_test/rx_channel_test.json,sha256=VxIn_4p25ieBkmSNQugX_qcHFR5hryqpCNIeYpDRiDk,772
98
+ certificate/tests/datapath/rx_channel_test/rx_channel_test.py,sha256=JLLoHBbsQDPDNhXAaFcWib6KPpVsd0TG_gENEBXyrDk,1772
99
+ certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json,sha256=UZiwejA1ZhayA463kkcRjentTMJDQGQ5vV5grGQtl4M,1423
100
+ certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py,sha256=G2jasFsCj99aF6_5fVWQMedH576bkBEborj34PIWnUM,12016
101
+ certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json,sha256=vz2DOmPwgpBBNuFMKHm26zz_UX8eYK4vMF0zmm8TpXU,1423
102
+ certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py,sha256=MPztd0r9R36rnkx1EYRhK4xqELeqsqkduyohQQTukho,12016
103
+ certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json,sha256=hliFx-0HCLudJwzjkVIsLxeTRGxDE8nsnnEBxgOjeZE,1315
104
+ certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py,sha256=zqjNGFe_SSRrNE4fDPybpgWBwGJwQrO5A8Fphg4x6bg,10996
105
+ certificate/tests/datapath/stress_test/stress_test.json,sha256=oOrNKTZ1pObnQJuZfSCxORk_o9SVbg4_uEWghp7rQUA,1315
106
+ certificate/tests/datapath/stress_test/stress_test.py,sha256=ZfztrKpL02wyEFM8plS04b9TpC-5HFUUD6WbCUPc7c0,10995
107
+ certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json,sha256=5WfRTpR0HBs_7zr8YNxSWAe9Njk8WV5NTtqloDajtII,994
108
+ certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py,sha256=nb1o8mge5QDSyw731fZbKyhmaSlvGjO1fnsYb-9jVfk,3642
109
+ certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json,sha256=tZJAxmSuYQg8KIPBytzB7QLh24SCkHycn5sLPAR1SX8,587
110
+ certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py,sha256=xL2X5C6nOeJ9JjDmkQ33GxRBzeCRtAGffheIIjRCT_c,738
111
+ certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json,sha256=ZjEenSPfIFN00o64Y1NOJ_mkkGzwq2RikL_kFI3cIWw,661
112
+ certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py,sha256=LeiAwzdMVrKWF0CJxb0QtCRoDgcRBezqJ4aOOWLQNyc,1668
113
+ certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json,sha256=KjrYrGy3fJVws6tAFIzvgLVM_IpuqBCH_YYvat43jok,670
114
+ certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py,sha256=mRuU1B3qwrVU1b5-LKRntsHAjFuVKp15dGcSwR0BDe4,1761
115
+ certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json,sha256=8QtBjW3uyrBm_Z85l1tJg9TYgwO5LseNpndm_rPQrkE,632
116
+ certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py,sha256=3ScRxbq_27oNmMtfa83BoKfyYjb_GV_C1UDNGdBSX4A,1600
117
+ certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json,sha256=UO4FzVqLY2i0XKbV2tT7nKDgWuSKoDe4J_lBgvO978A,611
118
+ certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py,sha256=9diaeeIiE0uE6fj7hTOxE65JVXv3wOvXKl3YDFIMsC8,1734
119
+ certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json,sha256=nFoHvRx9HNgam787NhCOryyBIjg-HlZK94wLc-itVMk,649
120
+ certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py,sha256=UGdSg6jWfxhkuejxqH1MV9LvjMg-8zYkmkt9LDqG68s,2075
121
+ certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json,sha256=4g8EhE0EwO3j6ocpetUU8yRU4oW_ur4A_GaIemQEyGU,692
122
+ certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py,sha256=1zxOZjC3AMPe9c630tj1naeI0lp8fzqjWPk4QNvV9tU,5395
123
+ certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json,sha256=BYcI_4vKcJiCQ5zM_U9VwaFMMeF9_jv9W6YUprpx4Ek,584
124
+ certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py,sha256=YTA-mXLiqUxW0fVapm_C3Zu2lsgaKUdiNze3jeYD6Ls,1839
125
+ certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json,sha256=VGecoX4EjFzR71rKmUByzqiPedMP5k937kIlsIUQ_O4,651
126
+ certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py,sha256=Rs0MRUODrJvjMMu7TU6GipTYLJKm5hxaK_D4rQ4Mt2E,2280
127
+ certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json,sha256=LQoTDv65WS7IDvgkFqPkoPPHSfJsA4-R7MbLvT5NluU,685
128
+ certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py,sha256=wRW21RIf-YEiJQmO2kM5GOmPXJj8WEiLq6F_cnEYu_g,1158
129
+ certificate/tests/energy2400/output_power_test/output_power_test.json,sha256=AwmTpf8qpEOePVko5NQRP7JPoFX2cJfFGEBvHxeHch4,1452
130
+ certificate/tests/energy2400/output_power_test/output_power_test.py,sha256=QgUssaDDEg2VcMA5UqPayq8U-GWkXCObpb4oE9K0ceM,1712
131
+ certificate/tests/energy2400/pattern_test/pattern_test.json,sha256=preFPIkOsWQmdsMcEgNqJUmP37E-8vKVy_Rlmudff-M,867
132
+ certificate/tests/energy2400/pattern_test/pattern_test.py,sha256=t-APjgeV0DC6udma8nB6ByKeA7pKLnbCTKvTKDphL-0,1179
133
+ certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json,sha256=FiCMM0EbWo0wxwZ1jLgMAyes4tODHQmohp6_aRJB8bE,1981
134
+ certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py,sha256=Vy1AjBcRM4Gn-tCjqnMMXg3EFw3QrcemyprgomgFEYA,22356
135
+ certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json,sha256=gDtMu0StQrC9eYF2hQE3ZSPP2jL9fSF3Cji5khw37v0,1394
136
+ certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py,sha256=L1UabOW5IK5VAZf25-jOwUG4iE5pD_byt9vMfLwBtMk,20024
137
+ certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json,sha256=uh6kFILLY30CZc2bnB7TdZa5H5caM011DsMx76urFsA,1781
138
+ certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py,sha256=5K69QTWXHylCREsx_Dh52W33o1Ad1fFyZS2KjHZdFww,20546
139
+ certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json,sha256=AfUQk3F7zHbgLpRq5BeaTtvitAmZv5SeLoLZ9ZThcRs,714
140
+ certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py,sha256=PbymKCIgCQ0hg7J7eWOKUCRChavxCPdT9H5Ydfg8cFQ,1179
141
+ certificate/tests/energy_sub1g/pattern_test/pattern_test.json,sha256=8Gzbkgxb66xmW_nujX8DfWgN2tWdhS9Uq7ghgcVs7CI,1184
142
+ certificate/tests/energy_sub1g/pattern_test/pattern_test.py,sha256=08h924C6RxgypG79_a-JIh3-JUTNQXLdgUoDfy5vKDo,1139
143
+ certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json,sha256=czPLrM6u4-AbpsfxPm0c1aVpJCpRXmuNvVQKeODuvvA,827
144
+ certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py,sha256=rWx6gKJG0ErtjgfcoEU_UizQxk7UN394c1foCFNf5NM,3746
145
+ certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json,sha256=7CkC4cvYH3nTa6dmRKYx0u0T_Q8bdWNRqNo-5WjiLT4,2175
146
+ certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py,sha256=rnKgkZ7chkYfxxYqwuR_SvQHP_0zBtlK-JYi7vOffAM,21606
147
+ common/wltPb_pb2.py,sha256=xMXdT2gP9g79Jo7XHI5E-i-qaDgdIQCHBNfUcuA6tKs,9154
148
+ common/wltPb_pb2.pyi,sha256=qCTgOrf9Og_y6ilwWwkpK_D-qDFOagNpRc35mgT-_C4,12214
149
+ common/wlt_logo.png,sha256=21DEhCEOOBU7Zt7ocwVIKU_CKUoHXScc3ej5VAzVsjM,132154
150
+ common/api_if/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
+ common/api_if/api_validation.py,sha256=F620ln1bYI-zidLcxIS-LyRgASJBJiTDZ91Fpy_28wQ,4057
152
+ common/api_if/202/data.json,sha256=A_nTONHIvPsOIqTM0X-ON0s2i2Um7bmv7b1zZzGD0nA,2423
153
+ common/api_if/202/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
154
+ common/api_if/202/status.json,sha256=fV51wzaMLk3BfnwzPr6oA7pwnEacZ8vYr-C37KhYFnM,1953
155
+ common/api_if/203/data.json,sha256=ZJFMQCTTN3LZuHcwrO6tL911n50-1meq6B46DX4xbg4,2600
156
+ common/api_if/203/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
157
+ common/api_if/203/status.json,sha256=RqEYhvYMxAtz5Oqyjcd3GyC9cQDkxxLwq0jVx0uHEaI,2055
158
+ common/api_if/204/data.json,sha256=ZJFMQCTTN3LZuHcwrO6tL911n50-1meq6B46DX4xbg4,2600
159
+ common/api_if/204/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
160
+ common/api_if/204/status.json,sha256=Rsd5V8OrAIJ7WV5i1UJbZiSNja_cjS675dZ7-hPT5iE,2055
161
+ common/api_if/205/data.json,sha256=SYxgA7zkdmyhPRwvfuVqwHKlGQ1B1rNxLNlXOQJAsc0,2616
162
+ common/api_if/205/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
163
+ common/api_if/205/status.json,sha256=WVO5eGzadLazdkHQZ97yEYlPDzJu12WYRZb3s52kixk,1861
164
+ common/api_if/206/data.json,sha256=SYxgA7zkdmyhPRwvfuVqwHKlGQ1B1rNxLNlXOQJAsc0,2616
165
+ common/api_if/206/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
166
+ common/api_if/206/status.json,sha256=aAumxRmvMTp6JFxFx16SARTqva9_gwy2diaYEqRxSfU,2055
167
+ common/web/web_utils.py,sha256=n7KWkar9KzuLx9rgpQD8uv4fXUVK5S2g9ERyW1eE8L0,14301
168
+ common/web/templates/generator.html,sha256=pKVm5B0IJYDgcVi1gWkTKo6uiyaynA7jrYTDOr4bnik,7137
169
+ common/web/templates/index.html,sha256=PN0uMIGmqc-5mFnpHgDuy1HwbI_sEUrnnxAJNsZ8Vb8,713
170
+ common/web/templates/menu.html,sha256=dYscAPM_C3AFwm8IhLaN32--oqMdZAW2idPW_dmm__g,2250
171
+ common/web/templates/parser.html,sha256=0J2WX5QTD_EZJUtmNq6--wrnpP0-I09iE3rB02euOZg,2125
172
+ common/web/templates/wlt_types.html,sha256=FKxlJ08H7IgNPdsT36RbpMKRw29t-tuwqGaQ4HHhBEM,432230
173
+ gui_certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
+ gui_certificate/gui_certificate_cli.py,sha256=371nNCVmRtUePYKp_w-DVTr3C8hLAzKR2q5ZAMsaxt0,448
175
+ gui_certificate/server.py,sha256=Gr9eGot_atmMkQxE7qzLbWBWUMYSjdXeCOce1H3uf8M,49522
176
+ gui_certificate/templates/cert_run.html,sha256=4fd7OXyiZa8JIqdKk_4GdC4kjSI-x6iHVdRChjYatoE,66503
177
+ wiliot_certificate-4.5.0a1.dist-info/licenses/LICENSE,sha256=OL5ajUNVx888yC2ogol0BKwPRLdQAF1noGuQ7WrYiAA,1068
178
+ wiliot_certificate-4.5.0a1.dist-info/METADATA,sha256=S84_Fgi0giiiV9cdozXymJVykN3sJbWO8J2Y3IvLkc0,3779
179
+ wiliot_certificate-4.5.0a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
180
+ wiliot_certificate-4.5.0a1.dist-info/entry_points.txt,sha256=_wnYk2F4bFn9H7ZGRwYV6WcpK8a3WNon8K7Y5xusFz4,274
181
+ wiliot_certificate-4.5.0a1.dist-info/top_level.txt,sha256=WF6PUfxJ5n2-DxcXTA4oFrTlV6PX_pOYkYaQDk4Mk3g,35
182
+ wiliot_certificate-4.5.0a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ wlt-cert = gui_certificate.gui_certificate_cli:main
3
+ wlt-cert-cli = certificate.certificate_cli:main
4
+ wlt-cert-reg = certificate.tests.cloud_connectivity.registration_test.registration_test_cli:main
5
+ wlt-cert-tester-upgrade = common.utils.tester_upgrade:main
@@ -0,0 +1,3 @@
1
+ certificate
2
+ common
3
+ gui_certificate