wiliot-certificate 4.5.0__tar.gz → 4.5.0a2__tar.gz

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 (193) hide show
  1. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/PKG-INFO +22 -7
  2. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/README.md +21 -6
  3. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/pyproject.toml +3 -3
  4. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json +211 -0
  5. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json +894 -0
  6. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +184 -0
  7. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/calibration.json +490 -0
  8. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/custom.json +614 -0
  9. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/datapath.json +900 -0
  10. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/energy2400.json +670 -0
  11. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/energySub1g.json +691 -0
  12. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/externalSensor.json +727 -0
  13. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/interface.json +1095 -0
  14. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/powerManagement.json +1439 -0
  15. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/side_info_sensor.json +105 -0
  16. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/signal_indicator_data.json +77 -0
  17. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +126 -0
  18. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +175 -0
  19. wiliot_certificate-4.5.0a2/src/certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json +65 -0
  20. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_common.py +35 -65
  21. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_config.py +18 -43
  22. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_data_sim.py +9 -12
  23. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_defines.py +0 -8
  24. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_gw_sim.py +7 -32
  25. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_mqtt.py +5 -15
  26. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_prints.py +0 -1
  27. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_results.py +37 -48
  28. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_utils.py +15 -24
  29. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/certificate.py +5 -12
  30. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/certificate_cli.py +13 -10
  31. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/certificate_eth_test_list.txt +3 -4
  32. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/certificate_sanity_test_list.txt +2 -3
  33. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/certificate_test_list.txt +4 -4
  34. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/interval_test/interval_test.json +0 -1
  35. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/output_power_test/output_power_test.json +0 -1
  36. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/pattern_test/pattern_test.json +0 -1
  37. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json +0 -1
  38. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/acl_test/acl_test.json +0 -1
  39. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/acl_test/acl_test.py +15 -13
  40. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json +1 -2
  41. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py +6 -8
  42. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json +0 -1
  43. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py +3 -3
  44. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/connection_test/connection_test.json +0 -1
  45. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/connection_test/connection_test.py +13 -6
  46. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/deduplication_test/deduplication_test.json +0 -1
  47. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/deduplication_test/deduplication_test.py +11 -6
  48. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/downlink_test/downlink_test.json +0 -1
  49. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/downlink_test/downlink_test.py +4 -1
  50. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json +0 -1
  51. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py +9 -14
  52. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/reboot_test/reboot_test.json +0 -1
  53. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/reboot_test/reboot_test.py +0 -2
  54. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/registration_test/registration_test.json +0 -1
  55. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py +1 -1
  56. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/stress_test/stress_test.json +0 -1
  57. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/stress_test/stress_test.py +11 -15
  58. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json +0 -1
  59. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py +2 -1
  60. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/uplink_test/uplink_test.json +0 -1
  61. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/uplink_test/uplink_test.py +20 -27
  62. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/aging_test/aging_test.json +0 -1
  63. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/aging_test/aging_test.py +3 -7
  64. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/event_ble5_test/event_ble5_test.json +2 -3
  65. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/event_ble5_test/event_ble5_test.py +13 -7
  66. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/event_test/event_test.json +2 -3
  67. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/event_test/event_test.py +10 -5
  68. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json +1 -2
  69. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py +5 -9
  70. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/output_power_test/output_power_test.json +0 -1
  71. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +0 -1
  72. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +4 -4
  73. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json +0 -1
  74. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pattern_test/pattern_test.json +0 -1
  75. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json +0 -1
  76. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py +5 -5
  77. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +0 -1
  78. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +5 -5
  79. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json +0 -1
  80. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py +8 -10
  81. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +0 -1
  82. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json +0 -1
  83. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +0 -1
  84. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.json +0 -1
  85. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_channel_test/rx_channel_test.json +0 -1
  86. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +0 -1
  87. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +1 -1
  88. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +0 -1
  89. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json +0 -1
  90. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py +0 -3
  91. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/stress_test/stress_test.json +0 -1
  92. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/stress_test/stress_test.py +0 -3
  93. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json +0 -1
  94. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json +0 -1
  95. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json +0 -1
  96. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json +0 -1
  97. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json +0 -1
  98. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json +0 -1
  99. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json +0 -1
  100. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json +0 -1
  101. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json +0 -1
  102. wiliot_certificate-4.5.0a2/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +41 -0
  103. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json +0 -1
  104. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json +0 -1
  105. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/output_power_test/output_power_test.json +0 -1
  106. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/pattern_test/pattern_test.json +0 -1
  107. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +0 -1
  108. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +3 -4
  109. wiliot_certificate-4.5.0a2/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +20 -0
  110. wiliot_certificate-4.5.0a2/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +331 -0
  111. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +0 -1
  112. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +1 -1
  113. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +0 -1
  114. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy_sub1g/pattern_test/pattern_test.json +0 -1
  115. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +0 -1
  116. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json +0 -1
  117. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +9 -4
  118. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/api_validation.py +0 -6
  119. wiliot_certificate-4.5.0a2/src/common/web/templates/generator.html +148 -0
  120. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/web/web_utils.py +56 -78
  121. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/gui_certificate/server.py +78 -283
  122. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/gui_certificate/templates/cert_run.html +113 -179
  123. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/PKG-INFO +22 -7
  124. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/SOURCES.txt +16 -0
  125. wiliot_certificate-4.5.0/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +0 -45
  126. wiliot_certificate-4.5.0/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +0 -20
  127. wiliot_certificate-4.5.0/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +0 -173
  128. wiliot_certificate-4.5.0/src/common/web/templates/generator.html +0 -210
  129. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/LICENSE +0 -0
  130. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/setup.cfg +0 -0
  131. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/__init__.py +0 -0
  132. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/ag/wlt_cmd_if.html +0 -0
  133. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/ag/wlt_types_ag.py +0 -0
  134. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/cert_protobuf.py +0 -0
  135. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/interval_test/interval_test.py +0 -0
  136. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/output_power_test/output_power_test.py +0 -0
  137. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/calibration/pattern_test/pattern_test.py +0 -0
  138. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py +0 -0
  139. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/cloud_connectivity/registration_test/registration_test.py +0 -0
  140. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/output_power_test/output_power_test.py +0 -0
  141. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py +0 -0
  142. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pattern_test/pattern_test.py +0 -0
  143. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +0 -0
  144. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py +0 -0
  145. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +0 -0
  146. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py +0 -0
  147. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_channel_test/rx_channel_test.py +0 -0
  148. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +0 -0
  149. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py +0 -0
  150. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py +0 -0
  151. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py +0 -0
  152. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py +0 -0
  153. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py +0 -0
  154. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py +0 -0
  155. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py +0 -0
  156. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py +0 -0
  157. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py +0 -0
  158. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py +0 -0
  159. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/output_power_test/output_power_test.py +0 -0
  160. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy2400/pattern_test/pattern_test.py +0 -0
  161. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +0 -0
  162. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/energy_sub1g/pattern_test/pattern_test.py +0 -0
  163. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +0 -0
  164. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/certificate/wlt_types.py +0 -0
  165. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/202/data.json +0 -0
  166. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/202/logs.json +0 -0
  167. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/202/status.json +0 -0
  168. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/203/data.json +0 -0
  169. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/203/logs.json +0 -0
  170. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/203/status.json +0 -0
  171. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/204/data.json +0 -0
  172. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/204/logs.json +0 -0
  173. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/204/status.json +0 -0
  174. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/205/data.json +0 -0
  175. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/205/logs.json +0 -0
  176. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/205/status.json +0 -0
  177. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/206/data.json +0 -0
  178. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/206/logs.json +0 -0
  179. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/206/status.json +0 -0
  180. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/api_if/__init__.py +0 -0
  181. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/web/templates/index.html +0 -0
  182. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/web/templates/menu.html +0 -0
  183. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/web/templates/parser.html +0 -0
  184. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/web/templates/wlt_types.html +0 -0
  185. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/wltPb_pb2.py +0 -0
  186. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/wltPb_pb2.pyi +0 -0
  187. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/common/wlt_logo.png +0 -0
  188. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/gui_certificate/__init__.py +0 -0
  189. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/gui_certificate/gui_certificate_cli.py +0 -0
  190. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/dependency_links.txt +0 -0
  191. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/entry_points.txt +0 -0
  192. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/requires.txt +0 -0
  193. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a2}/src/wiliot_certificate.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wiliot_certificate
3
- Version: 4.5.0
3
+ Version: 4.5.0a2
4
4
  Summary: A library for certifying Wiliot-compliant boards
5
5
  Author-email: Wiliot <support@wiliot.com>
6
6
  License-Expression: MIT
@@ -30,7 +30,7 @@ Requires-Dist: reportlab>=4.3.1
30
30
  Requires-Dist: google-api-python-client>=2.162.0
31
31
  Dynamic: license-file
32
32
 
33
- # wiliot-certificate
33
+ # wiliot-certificate Version 4.5.0
34
34
 
35
35
  <!-- Description -->
36
36
  wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
@@ -38,29 +38,32 @@ This python package includes the following tools:
38
38
  - Certification Wizard (`wlt-cert`)
39
39
  - Certificate CLI (`wlt-cert-cli`)
40
40
  - Tester Upgrade (`wlt-cert-tester-upgrade`)
41
- - Registration Certificate Test (`wlt-cert-reg`)
41
+ - Registration Certificate (`wlt-cert-reg`)
42
42
 
43
- # Versioning:
44
- wiliot-certificate versions 4.5.x are compatible with firmware version >=4.4.0 (API VERSION: 12)
43
+ # Version:
44
+ wiliot-certificate versions 4.5.0 are compatible with firmware version >=4.5.0 (API VERSION: 13)
45
45
 
46
46
  ## Installing wiliot-certificate
47
+ Install wiliot-certificate:
47
48
  ````commandline
48
49
  pip install wiliot-certificate
49
50
  ````
50
51
 
51
52
  ## Using wiliot-certificate
52
53
  ### Certification
54
+ In terminal, run:
53
55
  ````commandline
54
56
  wlt-cert
55
57
  ````
56
58
  This tool is the default to test and certify your device.
57
59
  It runs a setup wizard that walks you through the initialization steps before running the tests.
58
- You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema) and a [tester device](https://community.wiliot.com/customers/s/article/Wiliot-Certification).
60
+ You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema), tester device and custom broker json file ([more info here](https://community.wiliot.com/customers/s/article/Wiliot-Gateway-Certification)).
59
61
  Once set up it opens a terminal and tests your device.
60
62
 
61
63
 
62
64
 
63
65
  ### Certificate CLI
66
+ In terminal, run:
64
67
  ````commandline
65
68
  wlt-cert-cli -h
66
69
  ````
@@ -68,6 +71,7 @@ CLI version of the certificate. Use -h for details on the different arguments.
68
71
 
69
72
 
70
73
  ### Tester Upgrade
74
+ In terminal, run:
71
75
  ````commandline
72
76
  wlt-cert-tester-upgrade
73
77
  ````
@@ -75,18 +79,23 @@ Upgrades the firmware of the tester device to the version required for certifica
75
79
 
76
80
 
77
81
  ### Registration Certificate
82
+ In terminal, run:
78
83
  ````commandline
79
84
  wlt-cert-reg
80
85
  ````
81
86
  Certify the gateway registration process to Wiliot platform.
82
87
  The gateway must use Wiliot production MQTT broker, and mustn't be registered to any account on Wiliot platform.
83
- Use -h for details on the arguments (see [Registration](https://community.wiliot.com/customers/s/article/Wiliot-Certification) for more info).
88
+ Use -h for details on the arguments. [More info here](https://community.wiliot.com/customers/s/article/Wiliot-Gateway-Certification)
84
89
 
85
90
 
86
91
  ## The following capabilities are not tested in this version
87
92
  ##### Cloud Connectivity & Misc
88
93
  - Board type registered within the Board Type Management system
89
94
  - Bridge OTA progress reporting
95
+ ##### Power management
96
+ - Functionality of energize and transmit in sleep mode
97
+ ##### Edge management
98
+ - Timing of heartbeat and interface packets
90
99
  ##### Module Energy 2400
91
100
  - Functionality of energy pattern, output power and duty cycle
92
101
  ##### Module Energy SUB1G
@@ -94,6 +103,12 @@ Use -h for details on the arguments (see [Registration](https://community.wiliot
94
103
  ##### Module Datapath
95
104
  - RSSI edge cases: -127 and 0
96
105
  - Functionality of transmission pattern, output power
106
+ - Pacer interval with channel 10 and 500k modulation
107
+ - Pacer interval using GEN3 Pixels
108
+ - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
109
+ - Rx rate feature with extended advertising
110
+ - Functionality of adaptive pacer algorithm
111
+ - Supported Pixels for extended advertising and GEN3
97
112
  ##### Calibration
98
113
  - Functionality of output power and interval calibration
99
114
  - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
@@ -1,4 +1,4 @@
1
- # wiliot-certificate
1
+ # wiliot-certificate Version 4.5.0
2
2
 
3
3
  <!-- Description -->
4
4
  wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
@@ -6,29 +6,32 @@ This python package includes the following tools:
6
6
  - Certification Wizard (`wlt-cert`)
7
7
  - Certificate CLI (`wlt-cert-cli`)
8
8
  - Tester Upgrade (`wlt-cert-tester-upgrade`)
9
- - Registration Certificate Test (`wlt-cert-reg`)
9
+ - Registration Certificate (`wlt-cert-reg`)
10
10
 
11
- # Versioning:
12
- wiliot-certificate versions 4.5.x are compatible with firmware version >=4.4.0 (API VERSION: 12)
11
+ # Version:
12
+ wiliot-certificate versions 4.5.0 are compatible with firmware version >=4.5.0 (API VERSION: 13)
13
13
 
14
14
  ## Installing wiliot-certificate
15
+ Install wiliot-certificate:
15
16
  ````commandline
16
17
  pip install wiliot-certificate
17
18
  ````
18
19
 
19
20
  ## Using wiliot-certificate
20
21
  ### Certification
22
+ In terminal, run:
21
23
  ````commandline
22
24
  wlt-cert
23
25
  ````
24
26
  This tool is the default to test and certify your device.
25
27
  It runs a setup wizard that walks you through the initialization steps before running the tests.
26
- You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema) and a [tester device](https://community.wiliot.com/customers/s/article/Wiliot-Certification).
28
+ You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema), tester device and custom broker json file ([more info here](https://community.wiliot.com/customers/s/article/Wiliot-Gateway-Certification)).
27
29
  Once set up it opens a terminal and tests your device.
28
30
 
29
31
 
30
32
 
31
33
  ### Certificate CLI
34
+ In terminal, run:
32
35
  ````commandline
33
36
  wlt-cert-cli -h
34
37
  ````
@@ -36,6 +39,7 @@ CLI version of the certificate. Use -h for details on the different arguments.
36
39
 
37
40
 
38
41
  ### Tester Upgrade
42
+ In terminal, run:
39
43
  ````commandline
40
44
  wlt-cert-tester-upgrade
41
45
  ````
@@ -43,18 +47,23 @@ Upgrades the firmware of the tester device to the version required for certifica
43
47
 
44
48
 
45
49
  ### Registration Certificate
50
+ In terminal, run:
46
51
  ````commandline
47
52
  wlt-cert-reg
48
53
  ````
49
54
  Certify the gateway registration process to Wiliot platform.
50
55
  The gateway must use Wiliot production MQTT broker, and mustn't be registered to any account on Wiliot platform.
51
- Use -h for details on the arguments (see [Registration](https://community.wiliot.com/customers/s/article/Wiliot-Certification) for more info).
56
+ Use -h for details on the arguments. [More info here](https://community.wiliot.com/customers/s/article/Wiliot-Gateway-Certification)
52
57
 
53
58
 
54
59
  ## The following capabilities are not tested in this version
55
60
  ##### Cloud Connectivity & Misc
56
61
  - Board type registered within the Board Type Management system
57
62
  - Bridge OTA progress reporting
63
+ ##### Power management
64
+ - Functionality of energize and transmit in sleep mode
65
+ ##### Edge management
66
+ - Timing of heartbeat and interface packets
58
67
  ##### Module Energy 2400
59
68
  - Functionality of energy pattern, output power and duty cycle
60
69
  ##### Module Energy SUB1G
@@ -62,6 +71,12 @@ Use -h for details on the arguments (see [Registration](https://community.wiliot
62
71
  ##### Module Datapath
63
72
  - RSSI edge cases: -127 and 0
64
73
  - Functionality of transmission pattern, output power
74
+ - Pacer interval with channel 10 and 500k modulation
75
+ - Pacer interval using GEN3 Pixels
76
+ - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
77
+ - Rx rate feature with extended advertising
78
+ - Functionality of adaptive pacer algorithm
79
+ - Supported Pixels for extended advertising and GEN3
65
80
  ##### Calibration
66
81
  - Functionality of output power and interval calibration
67
82
  - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "wiliot_certificate"
7
- version = "4.5.0"
7
+ version = "4.5.0a2"
8
8
  authors = [
9
9
  { name="Wiliot", email="support@wiliot.com" }
10
10
  ]
@@ -54,8 +54,8 @@ exclude = ["*.ut*"]
54
54
 
55
55
  [tool.setuptools.package-data]
56
56
  common = ["wlt_logo.png", "**/*.html", "**/*.json"]
57
- certificate = ["tests/**/*.json", "*_list.txt", "**/wlt_cmd_if.html"]
57
+ certificate = ["**/*.json", "**/*.md", "*_list.txt", "**/wlt_cmd_if.html", "**/wlt_types.html"]
58
58
  gui_certificate = ["**/*.html"]
59
59
 
60
60
  [tool.setuptools.exclude-package-data]
61
- certificate = ["*ut/*", "config/*"]
61
+ certificate = ["**/mqtt_log_*.json", "mqtt_log_*.json", "*cert_mqtt_log.json", "*_log.txt", "*ut/*", "config/*"]
@@ -0,0 +1,211 @@
1
+ {
2
+ "versions": [
3
+ {
4
+ "version": "13",
5
+ "packetFields": [
6
+ {
7
+ "name": "msgType",
8
+ "byteOffset": 5,
9
+ "byteLength": 1,
10
+ "bitOffset": 0,
11
+ "bitLength": 8,
12
+ "outType": "uint"
13
+ },
14
+ {
15
+ "name": "apiVersion",
16
+ "byteOffset": 6,
17
+ "byteLength": 1,
18
+ "bitOffset": 0,
19
+ "bitLength": 8,
20
+ "outType": "uint"
21
+ },
22
+ {
23
+ "name": "seqId",
24
+ "byteOffset": 7,
25
+ "byteLength": 1,
26
+ "bitOffset": 0,
27
+ "bitLength": 8,
28
+ "outType": "uint"
29
+ },
30
+ {
31
+ "name": "srcBrgMac",
32
+ "byteOffset": 8,
33
+ "byteLength": 6,
34
+ "bitOffset": 0,
35
+ "bitLength": 48,
36
+ "outType": "string"
37
+ },
38
+ {
39
+ "name": "actionId",
40
+ "byteOffset": 14,
41
+ "byteLength": 1,
42
+ "bitOffset": 0,
43
+ "bitLength": 8,
44
+ "outType": "uint"
45
+ },
46
+ {
47
+ "name": "destBrgMac",
48
+ "byteOffset": 15,
49
+ "byteLength": 6,
50
+ "bitOffset": 0,
51
+ "bitLength": 48,
52
+ "outType": "string"
53
+ },
54
+ {
55
+ "name": "app",
56
+ "byteOffset": 21,
57
+ "byteLength": 1,
58
+ "bitOffset": 0,
59
+ "bitLength": 8,
60
+ "outType": "uint"
61
+ },
62
+ {
63
+ "name": "bootloader",
64
+ "byteOffset": 22,
65
+ "byteLength": 1,
66
+ "bitOffset": 0,
67
+ "bitLength": 8,
68
+ "outType": "uint"
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "version": "12",
74
+ "packetFields": [
75
+ {
76
+ "name": "msgType",
77
+ "byteOffset": 5,
78
+ "byteLength": 1,
79
+ "bitOffset": 0,
80
+ "bitLength": 8,
81
+ "outType": "uint"
82
+ },
83
+ {
84
+ "name": "apiVersion",
85
+ "byteOffset": 6,
86
+ "byteLength": 1,
87
+ "bitOffset": 0,
88
+ "bitLength": 8,
89
+ "outType": "uint"
90
+ },
91
+ {
92
+ "name": "seqId",
93
+ "byteOffset": 7,
94
+ "byteLength": 1,
95
+ "bitOffset": 0,
96
+ "bitLength": 8,
97
+ "outType": "uint"
98
+ },
99
+ {
100
+ "name": "srcBrgMac",
101
+ "byteOffset": 8,
102
+ "byteLength": 6,
103
+ "bitOffset": 0,
104
+ "bitLength": 48,
105
+ "outType": "string"
106
+ },
107
+ {
108
+ "name": "actionId",
109
+ "byteOffset": 14,
110
+ "byteLength": 1,
111
+ "bitOffset": 0,
112
+ "bitLength": 8,
113
+ "outType": "uint"
114
+ },
115
+ {
116
+ "name": "destBrgMac",
117
+ "byteOffset": 15,
118
+ "byteLength": 6,
119
+ "bitOffset": 0,
120
+ "bitLength": 48,
121
+ "outType": "string"
122
+ },
123
+ {
124
+ "name": "app",
125
+ "byteOffset": 21,
126
+ "byteLength": 1,
127
+ "bitOffset": 0,
128
+ "bitLength": 8,
129
+ "outType": "uint"
130
+ },
131
+ {
132
+ "name": "bootloader",
133
+ "byteOffset": 22,
134
+ "byteLength": 1,
135
+ "bitOffset": 0,
136
+ "bitLength": 8,
137
+ "outType": "uint"
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "version": "11",
143
+ "packetFields": [
144
+ {
145
+ "name": "msgType",
146
+ "byteOffset": 5,
147
+ "byteLength": 1,
148
+ "bitOffset": 0,
149
+ "bitLength": 8,
150
+ "outType": "uint"
151
+ },
152
+ {
153
+ "name": "apiVersion",
154
+ "byteOffset": 6,
155
+ "byteLength": 1,
156
+ "bitOffset": 0,
157
+ "bitLength": 8,
158
+ "outType": "uint"
159
+ },
160
+ {
161
+ "name": "seqId",
162
+ "byteOffset": 7,
163
+ "byteLength": 1,
164
+ "bitOffset": 0,
165
+ "bitLength": 8,
166
+ "outType": "uint"
167
+ },
168
+ {
169
+ "name": "srcBrgMac",
170
+ "byteOffset": 8,
171
+ "byteLength": 6,
172
+ "bitOffset": 0,
173
+ "bitLength": 48,
174
+ "outType": "string"
175
+ },
176
+ {
177
+ "name": "actionId",
178
+ "byteOffset": 14,
179
+ "byteLength": 1,
180
+ "bitOffset": 0,
181
+ "bitLength": 8,
182
+ "outType": "uint"
183
+ },
184
+ {
185
+ "name": "destBrgMac",
186
+ "byteOffset": 15,
187
+ "byteLength": 6,
188
+ "bitOffset": 0,
189
+ "bitLength": 48,
190
+ "outType": "string"
191
+ },
192
+ {
193
+ "name": "app",
194
+ "byteOffset": 21,
195
+ "byteLength": 1,
196
+ "bitOffset": 0,
197
+ "bitLength": 8,
198
+ "outType": "uint"
199
+ },
200
+ {
201
+ "name": "bootloader",
202
+ "byteOffset": 22,
203
+ "byteLength": 1,
204
+ "bitOffset": 0,
205
+ "bitLength": 8,
206
+ "outType": "uint"
207
+ }
208
+ ]
209
+ }
210
+ ]
211
+ }