revengai 1.1.1__py3-none-any.whl → 1.73.0__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 (740) hide show
  1. revengai/__init__.py +41 -20
  2. revengai/api/analyses_comments_api.py +1 -1
  3. revengai/api/analyses_core_api.py +341 -3
  4. revengai/api/analyses_dynamic_execution_api.py +1 -1
  5. revengai/api/analyses_results_metadata_api.py +7 -7
  6. revengai/api/analyses_security_checks_api.py +1 -1
  7. revengai/api/authentication_users_api.py +1 -1
  8. revengai/api/binaries_api.py +1 -1
  9. revengai/api/collections_api.py +1 -1
  10. revengai/api/confidence_api.py +1 -1
  11. revengai/api/external_sources_api.py +1 -1
  12. revengai/api/firmware_api.py +1 -1
  13. revengai/api/functions_ai_decompilation_api.py +1 -1
  14. revengai/api/functions_block_comments_api.py +1 -1
  15. revengai/api/functions_core_api.py +1901 -417
  16. revengai/api/functions_data_types_api.py +13 -13
  17. revengai/api/functions_decompilation_api.py +1 -1
  18. revengai/api/functions_renaming_history_api.py +1 -1
  19. revengai/api/functions_threat_score_api.py +1 -1
  20. revengai/api/models_api.py +1 -1
  21. revengai/api/search_api.py +19 -2
  22. revengai/api_client.py +2 -2
  23. revengai/configuration.py +3 -3
  24. revengai/exceptions.py +1 -1
  25. revengai/models/__init__.py +27 -13
  26. revengai/models/addr.py +1 -1
  27. revengai/models/ai_decompilation_rating.py +1 -1
  28. revengai/models/{function_param_mapping.py → ai_unstrip_request.py} +10 -12
  29. revengai/models/analysis_access_info.py +1 -1
  30. revengai/models/analysis_config.py +1 -1
  31. revengai/models/analysis_create_request.py +4 -4
  32. revengai/models/analysis_create_response.py +1 -1
  33. revengai/models/analysis_detail_response.py +1 -1
  34. revengai/models/analysis_functions.py +1 -1
  35. revengai/models/analysis_record.py +1 -1
  36. revengai/models/analysis_scope.py +1 -1
  37. revengai/models/analysis_strings_response.py +1 -1
  38. revengai/models/{app_api_rest_v2_analyses_responses_analysis_tags.py → analysis_tags.py} +5 -5
  39. revengai/models/analysis_threat_score_data.py +1 -1
  40. revengai/models/analysis_update_request.py +1 -1
  41. revengai/models/analysis_update_tags_request.py +1 -1
  42. revengai/models/analysis_update_tags_response.py +1 -1
  43. revengai/models/ann_function.py +3 -3
  44. revengai/models/app_api_rest_v2_analyses_enums_dynamic_execution_status.py +1 -1
  45. revengai/models/app_api_rest_v2_analyses_enums_order_by.py +1 -1
  46. revengai/models/app_api_rest_v2_analyses_responses_tag_item.py +1 -1
  47. revengai/models/app_api_rest_v2_collections_enums_order_by.py +1 -1
  48. revengai/models/app_api_rest_v2_functions_responses_function.py +1 -1
  49. revengai/models/app_api_rest_v2_functions_types_function.py +1 -1
  50. revengai/models/app_services_binary_ann_schema_tag_item.py +1 -1
  51. revengai/models/app_services_dynamic_execution_schemas_dynamic_execution_status.py +1 -1
  52. revengai/models/argument.py +1 -1
  53. revengai/models/auto_unstrip_by_group_response.py +132 -0
  54. revengai/models/{app_api_rest_v1_analysis_info_schema_function_rename.py → auto_unstrip_request.py} +12 -10
  55. revengai/models/{upload_success.py → auto_unstrip_response.py} +39 -22
  56. revengai/models/base_response.py +1 -1
  57. revengai/models/base_response_analysis_create_response.py +1 -1
  58. revengai/models/base_response_analysis_detail_response.py +1 -1
  59. revengai/models/base_response_analysis_functions.py +1 -1
  60. revengai/models/base_response_analysis_strings_response.py +1 -1
  61. revengai/models/{app_core_responses_base_base_response_analysis_tags1.py → base_response_analysis_tags.py} +8 -8
  62. revengai/models/base_response_analysis_threat_score_data.py +1 -1
  63. revengai/models/base_response_analysis_update_tags_response.py +1 -1
  64. revengai/models/base_response_basic.py +1 -1
  65. revengai/models/base_response_binary_additional_response.py +1 -1
  66. revengai/models/base_response_binary_ann_list_response.py +1 -1
  67. revengai/models/base_response_binary_details_response.py +1 -1
  68. revengai/models/base_response_binary_externals_response.py +1 -1
  69. revengai/models/base_response_binary_search_response.py +1 -1
  70. revengai/models/base_response_block_comments_generation_for_function_response.py +1 -1
  71. revengai/models/base_response_block_comments_overview_generation_response.py +1 -1
  72. revengai/models/base_response_bool.py +1 -1
  73. revengai/models/base_response_box_plot_confidence.py +1 -1
  74. revengai/models/base_response_callees_caller_functions_response.py +1 -1
  75. revengai/models/base_response_capabilities.py +1 -1
  76. revengai/models/base_response_check_security_checks_task_response.py +1 -1
  77. revengai/models/base_response_child_binaries_response.py +1 -1
  78. revengai/models/base_response_collection_binaries_update_response.py +1 -1
  79. revengai/models/base_response_collection_response.py +1 -1
  80. revengai/models/base_response_collection_search_response.py +1 -1
  81. revengai/models/base_response_collection_tags_update_response.py +1 -1
  82. revengai/models/base_response_comment_response.py +1 -1
  83. revengai/models/base_response_communities.py +1 -1
  84. revengai/models/base_response_created.py +1 -1
  85. revengai/models/base_response_decompilation_response.py +1 -1
  86. revengai/models/base_response_dict.py +1 -1
  87. revengai/models/base_response_dynamic_execution_status.py +1 -1
  88. revengai/models/base_response_external_response.py +1 -1
  89. revengai/models/base_response_function_analysis_threat_score_data.py +1 -1
  90. revengai/models/base_response_function_blocks_response.py +1 -1
  91. revengai/models/base_response_function_capability_response.py +1 -1
  92. revengai/models/base_response_function_data_types.py +1 -1
  93. revengai/models/base_response_function_data_types_list.py +1 -1
  94. revengai/models/base_response_function_search_response.py +1 -1
  95. revengai/models/base_response_function_strings_response.py +1 -1
  96. revengai/models/base_response_function_task_response.py +1 -1
  97. revengai/models/base_response_function_threat_score.py +1 -1
  98. revengai/models/base_response_functions_detail_response.py +1 -1
  99. revengai/models/base_response_generate_function_data_types.py +1 -1
  100. revengai/models/base_response_generation_status_list.py +1 -1
  101. revengai/models/base_response_get_ai_decompilation_rating_response.py +1 -1
  102. revengai/models/base_response_get_ai_decompilation_task.py +1 -1
  103. revengai/models/base_response_get_public_user_response.py +1 -1
  104. revengai/models/base_response_get_user_response.py +1 -1
  105. revengai/models/base_response_list_collection_results.py +1 -1
  106. revengai/models/base_response_list_comment_response.py +1 -1
  107. revengai/models/base_response_list_die_match.py +1 -1
  108. revengai/models/base_response_list_function_box_plot_confidence.py +1 -1
  109. revengai/models/base_response_list_function_name_history.py +1 -1
  110. revengai/models/base_response_list_sbom.py +1 -1
  111. revengai/models/base_response_list_similar_functions_response.py +1 -1
  112. revengai/models/base_response_list_tag_origin_box_plot_confidence.py +1 -1
  113. revengai/models/base_response_list_user_activity_response.py +1 -1
  114. revengai/models/base_response_login_response.py +1 -1
  115. revengai/models/base_response_logs.py +1 -1
  116. revengai/models/base_response_models_response.py +1 -1
  117. revengai/models/base_response_nearest_neighbor_analysis.py +1 -1
  118. revengai/models/base_response_network_overview_response.py +1 -1
  119. revengai/models/base_response_params.py +1 -1
  120. revengai/models/base_response_process_dumps.py +1 -1
  121. revengai/models/base_response_process_registry.py +1 -1
  122. revengai/models/base_response_process_tree.py +1 -1
  123. revengai/models/base_response_queued_security_checks_task_response.py +1 -1
  124. revengai/models/base_response_recent.py +1 -1
  125. revengai/models/base_response_security_checks_response.py +1 -1
  126. revengai/models/base_response_status.py +1 -1
  127. revengai/models/base_response_str.py +1 -1
  128. revengai/models/base_response_symbols_info.py +1 -1
  129. revengai/models/base_response_tag_search_response.py +1 -1
  130. revengai/models/base_response_task_response.py +1 -1
  131. revengai/models/base_response_ttps.py +1 -1
  132. revengai/models/{app_core_responses_base_base_response_analysis_tags2.py → base_response_upload_response.py} +8 -8
  133. revengai/models/base_response_vulnerabilities.py +1 -1
  134. revengai/models/basic.py +1 -1
  135. revengai/models/binary_additional_details_data_response.py +1 -1
  136. revengai/models/binary_additional_response.py +1 -1
  137. revengai/models/binary_ann_form.py +1 -1
  138. revengai/models/binary_ann_list_response.py +1 -1
  139. revengai/models/binary_config.py +1 -1
  140. revengai/models/binary_details_response.py +1 -1
  141. revengai/models/binary_externals_response.py +1 -1
  142. revengai/models/binary_search_response.py +1 -1
  143. revengai/models/binary_search_result.py +1 -1
  144. revengai/models/binary_task_status.py +1 -1
  145. revengai/models/block.py +1 -1
  146. revengai/models/block_comments_generation_for_function_response.py +1 -1
  147. revengai/models/boundary.py +1 -1
  148. revengai/models/box_plot_confidence.py +1 -1
  149. revengai/models/callee_function_info.py +1 -1
  150. revengai/models/callees_caller_functions_response.py +1 -1
  151. revengai/models/caller_function_info.py +1 -1
  152. revengai/models/capabilities.py +1 -1
  153. revengai/models/capability.py +1 -1
  154. revengai/models/check_security_checks_task_response.py +1 -1
  155. revengai/models/child_binaries_response.py +1 -1
  156. revengai/models/code_signature_model.py +1 -1
  157. revengai/models/collection_binaries_update_request.py +1 -1
  158. revengai/models/collection_binaries_update_response.py +1 -1
  159. revengai/models/collection_binary_response.py +1 -1
  160. revengai/models/collection_create_request.py +1 -1
  161. revengai/models/collection_list_item.py +1 -1
  162. revengai/models/collection_response.py +1 -1
  163. revengai/models/collection_response_binaries_inner.py +1 -1
  164. revengai/models/collection_scope.py +1 -1
  165. revengai/models/collection_search_response.py +1 -1
  166. revengai/models/collection_search_result.py +1 -1
  167. revengai/models/collection_tags_update_request.py +1 -1
  168. revengai/models/collection_tags_update_response.py +1 -1
  169. revengai/models/collection_update_request.py +1 -1
  170. revengai/models/comment_base.py +1 -1
  171. revengai/models/comment_response.py +1 -1
  172. revengai/models/comment_update_request.py +1 -1
  173. revengai/models/communities.py +1 -1
  174. revengai/models/community_match_percentages.py +1 -1
  175. revengai/models/confidence_type.py +1 -1
  176. revengai/models/context.py +1 -1
  177. revengai/models/created.py +1 -1
  178. revengai/models/decompilation_comment_context.py +1 -1
  179. revengai/models/decompilation_response.py +1 -1
  180. revengai/models/die_match.py +1 -1
  181. revengai/models/dynamic_execution_status_input.py +1 -1
  182. revengai/models/elf_dynamic_entry.py +1 -1
  183. revengai/models/elf_import_model.py +1 -1
  184. revengai/models/elf_model.py +1 -1
  185. revengai/models/elf_relocation.py +1 -1
  186. revengai/models/elf_section.py +1 -1
  187. revengai/models/elf_security.py +1 -1
  188. revengai/models/elf_segment.py +1 -1
  189. revengai/models/elf_symbol.py +1 -1
  190. revengai/models/entrypoint_model.py +1 -1
  191. revengai/models/enumeration.py +1 -1
  192. revengai/models/error_model.py +1 -1
  193. revengai/models/export_model.py +1 -1
  194. revengai/models/exported_binary_ann_result.py +1 -1
  195. revengai/models/external_response.py +1 -1
  196. revengai/models/file_format.py +1 -1
  197. revengai/models/file_hashes.py +1 -1
  198. revengai/models/file_metadata.py +1 -1
  199. revengai/models/filters.py +1 -1
  200. revengai/models/function_analysis_threat_score_data.py +1 -1
  201. revengai/models/function_block_destination_response.py +1 -1
  202. revengai/models/function_block_response.py +1 -1
  203. revengai/models/function_blocks_response.py +1 -1
  204. revengai/models/function_boundary.py +1 -1
  205. revengai/models/function_box_plot_confidence.py +1 -1
  206. revengai/models/function_capability_response.py +1 -1
  207. revengai/models/function_comment_create_request.py +1 -1
  208. revengai/models/function_data_types.py +1 -1
  209. revengai/models/function_data_types_list.py +1 -1
  210. revengai/models/function_data_types_list_item.py +1 -1
  211. revengai/models/function_data_types_params.py +1 -1
  212. revengai/models/function_data_types_status.py +1 -1
  213. revengai/models/function_header.py +1 -1
  214. revengai/models/function_info_input.py +1 -1
  215. revengai/models/function_info_input_func_deps_inner.py +1 -1
  216. revengai/models/function_info_output.py +1 -1
  217. revengai/models/function_local_variable_response.py +1 -1
  218. revengai/models/function_mapping_full.py +1 -1
  219. revengai/models/function_name_confidence_body.py +1 -1
  220. revengai/models/function_name_history.py +1 -1
  221. revengai/models/function_name_input.py +1 -1
  222. revengai/models/function_param_response.py +1 -1
  223. revengai/models/function_rename.py +4 -4
  224. revengai/models/function_rename_map.py +3 -3
  225. revengai/models/function_search_response.py +1 -1
  226. revengai/models/function_search_result.py +1 -1
  227. revengai/models/function_string.py +1 -1
  228. revengai/models/function_strings_response.py +1 -1
  229. revengai/models/function_task_response.py +1 -1
  230. revengai/models/function_task_status.py +1 -1
  231. revengai/models/function_threat_score.py +1 -1
  232. revengai/models/function_type_input.py +1 -1
  233. revengai/models/function_type_output.py +1 -1
  234. revengai/models/functions_detail_response.py +1 -1
  235. revengai/models/functions_list_rename.py +1 -1
  236. revengai/models/generate_function_data_types.py +1 -1
  237. revengai/models/generation_status_list.py +1 -1
  238. revengai/models/get_ai_decompilation_rating_response.py +1 -1
  239. revengai/models/get_ai_decompilation_task.py +1 -1
  240. revengai/models/get_public_user_response.py +1 -1
  241. revengai/models/get_user_response.py +1 -1
  242. revengai/models/global_variable.py +1 -1
  243. revengai/models/icon_model.py +1 -1
  244. revengai/models/import_model.py +1 -1
  245. revengai/models/inverse_function_map_item.py +1 -1
  246. revengai/models/inverse_string_map_item.py +1 -1
  247. revengai/models/inverse_value.py +1 -1
  248. revengai/models/isa.py +1 -1
  249. revengai/models/list_collection_results.py +1 -1
  250. revengai/models/login_request.py +1 -1
  251. revengai/models/login_response.py +1 -1
  252. revengai/models/logs.py +1 -1
  253. revengai/models/{collections_count_form.py → matched_function_group.py} +12 -11
  254. revengai/models/{batch_function_rename_record.py → matched_function_suggestion.py} +18 -12
  255. revengai/models/meta_model.py +1 -1
  256. revengai/models/model_name.py +1 -1
  257. revengai/models/models_response.py +1 -1
  258. revengai/models/nearest_neighbor.py +1 -1
  259. revengai/models/network_overview_dns.py +1 -1
  260. revengai/models/network_overview_dns_answer.py +1 -1
  261. revengai/models/network_overview_metadata.py +1 -1
  262. revengai/models/network_overview_response.py +1 -1
  263. revengai/models/order.py +1 -1
  264. revengai/models/origin.py +1 -1
  265. revengai/models/pagination_model.py +1 -1
  266. revengai/models/params.py +1 -1
  267. revengai/models/pdb_debug_model.py +1 -1
  268. revengai/models/pe_model.py +1 -1
  269. revengai/models/platform.py +1 -1
  270. revengai/models/process.py +1 -1
  271. revengai/models/process_dump.py +1 -1
  272. revengai/models/process_dump_metadata.py +1 -1
  273. revengai/models/process_dumps.py +1 -1
  274. revengai/models/process_dumps_data.py +1 -1
  275. revengai/models/process_registry.py +1 -1
  276. revengai/models/process_tree.py +1 -1
  277. revengai/models/queued_security_checks_task_response.py +1 -1
  278. revengai/models/re_analysis_form.py +1 -1
  279. revengai/models/recent.py +1 -1
  280. revengai/models/registry.py +1 -1
  281. revengai/models/relative_binary_response.py +1 -1
  282. revengai/models/sandbox_options.py +1 -1
  283. revengai/models/sbom.py +1 -1
  284. revengai/models/sbom_package.py +1 -1
  285. revengai/models/scrape_third_party_config.py +1 -1
  286. revengai/models/search_binary_ids.py +1 -1
  287. revengai/models/search_function_ids.py +1 -1
  288. revengai/models/section_model.py +1 -1
  289. revengai/models/security_checks_response.py +1 -1
  290. revengai/models/security_checks_result.py +1 -1
  291. revengai/models/security_model.py +1 -1
  292. revengai/models/severity_type.py +1 -1
  293. revengai/models/similar_functions_response.py +1 -1
  294. revengai/models/single_code_certificate_model.py +1 -1
  295. revengai/models/single_code_signature_model.py +1 -1
  296. revengai/models/single_pdb_entry_model.py +1 -1
  297. revengai/models/single_section_model.py +1 -1
  298. revengai/models/stack_variable.py +1 -1
  299. revengai/models/status_input.py +1 -1
  300. revengai/models/status_output.py +1 -1
  301. revengai/models/string_functions.py +1 -1
  302. revengai/models/structure.py +1 -1
  303. revengai/models/structure_member.py +1 -1
  304. revengai/models/symbols.py +1 -1
  305. revengai/models/symbols_info.py +1 -1
  306. revengai/models/{tag_input.py → tag.py} +5 -5
  307. revengai/models/tag_confidence_body.py +1 -1
  308. revengai/models/tag_origin_box_plot_confidence.py +1 -1
  309. revengai/models/tag_response.py +1 -1
  310. revengai/models/tag_search_response.py +1 -1
  311. revengai/models/tag_search_result.py +1 -1
  312. revengai/models/tags.py +1 -1
  313. revengai/models/task_response.py +1 -1
  314. revengai/models/task_status.py +1 -1
  315. revengai/models/threat_score_function_body.py +1 -1
  316. revengai/models/timestamp_model.py +1 -1
  317. revengai/models/ttps.py +1 -1
  318. revengai/models/ttps_attack.py +1 -1
  319. revengai/models/ttps_data.py +1 -1
  320. revengai/models/ttps_element.py +1 -1
  321. revengai/models/ttps_occurance.py +1 -1
  322. revengai/models/type_definition.py +1 -1
  323. revengai/models/{search_form.py → unstrip_request.py} +15 -20
  324. revengai/models/update_function_data_types.py +1 -1
  325. revengai/models/{scope.py → upload_file_type.py} +8 -8
  326. revengai/models/{user_boundaries.py → upload_response.py} +14 -13
  327. revengai/models/upsert_ai_decomplation_rating_request.py +1 -1
  328. revengai/models/user_activity_response.py +1 -1
  329. revengai/models/vulnerabilities.py +1 -1
  330. revengai/models/vulnerability.py +1 -1
  331. revengai/models/vulnerability_type.py +1 -1
  332. revengai/models/workspace.py +1 -1
  333. revengai/rest.py +1 -1
  334. {revengai-1.1.1.dist-info → revengai-1.73.0.dist-info}/METADATA +20 -7
  335. revengai-1.73.0.dist-info/RECORD +339 -0
  336. revengai/api/v1_api.py +0 -6373
  337. revengai/models/analyse_created.py +0 -99
  338. revengai/models/analysis_form.py +0 -138
  339. revengai/models/analysis_status.py +0 -94
  340. revengai/models/ann_input.py +0 -108
  341. revengai/models/app_api_rest_v1_analyse_schema_model_name.py +0 -44
  342. revengai/models/app_api_rest_v1_analyse_schema_status.py +0 -40
  343. revengai/models/app_api_rest_v1_analyse_schema_symbols.py +0 -97
  344. revengai/models/app_api_rest_v1_analysis_info_responses_logs.py +0 -99
  345. revengai/models/app_api_rest_v1_ann_schema_ann_function.py +0 -135
  346. revengai/models/app_api_rest_v2_analyses_enums_model_name.py +0 -43
  347. revengai/models/app_api_rest_v2_analyses_enums_status.py +0 -41
  348. revengai/models/app_api_rest_v2_analyses_responses_logs.py +0 -87
  349. revengai/models/app_api_rest_v2_analyses_schemas_symbols.py +0 -97
  350. revengai/models/app_api_rest_v2_functions_rename_schema_function_rename.py +0 -94
  351. revengai/models/app_api_rest_v2_info_responses_analysis_tags.py +0 -104
  352. revengai/models/app_api_rest_v2_similarity_schema_ann_function.py +0 -121
  353. revengai/models/batch_ann.py +0 -106
  354. revengai/models/batch_function_rename.py +0 -95
  355. revengai/models/collection_count.py +0 -99
  356. revengai/models/config_settings.py +0 -101
  357. revengai/models/create_ai_decompilation_request.py +0 -87
  358. revengai/models/deleted_analysis.py +0 -99
  359. revengai/models/file_options.py +0 -41
  360. revengai/models/function_batch_ann.py +0 -106
  361. revengai/models/function_dump.py +0 -106
  362. revengai/models/function_list.py +0 -87
  363. revengai/models/function_list_basic.py +0 -99
  364. revengai/models/function_params.py +0 -95
  365. revengai/models/isa_options.py +0 -39
  366. revengai/models/model_list.py +0 -99
  367. revengai/models/platform_options.py +0 -40
  368. revengai/models/quick_search.py +0 -99
  369. revengai/models/recent_analysis.py +0 -99
  370. revengai/models/recent_analysis_form.py +0 -92
  371. revengai/models/rename.py +0 -99
  372. revengai/models/search_query.py +0 -99
  373. revengai/models/tag_output.py +0 -89
  374. revengai/test/__init__.py +0 -0
  375. revengai/test/test_addr.py +0 -50
  376. revengai/test/test_ai_decompilation_rating.py +0 -33
  377. revengai/test/test_analyse_created.py +0 -53
  378. revengai/test/test_analyses_comments_api.py +0 -59
  379. revengai/test/test_analyses_core_api.py +0 -136
  380. revengai/test/test_analyses_dynamic_execution_api.py +0 -80
  381. revengai/test/test_analyses_results_metadata_api.py +0 -143
  382. revengai/test/test_analyses_security_checks_api.py +0 -52
  383. revengai/test/test_analysis_access_info.py +0 -54
  384. revengai/test/test_analysis_config.py +0 -60
  385. revengai/test/test_analysis_create_request.py +0 -83
  386. revengai/test/test_analysis_create_response.py +0 -54
  387. revengai/test/test_analysis_detail_response.py +0 -83
  388. revengai/test/test_analysis_form.py +0 -81
  389. revengai/test/test_analysis_functions.py +0 -78
  390. revengai/test/test_analysis_record.py +0 -74
  391. revengai/test/test_analysis_scope.py +0 -33
  392. revengai/test/test_analysis_status.py +0 -53
  393. revengai/test/test_analysis_strings_response.py +0 -70
  394. revengai/test/test_analysis_threat_score_data.py +0 -64
  395. revengai/test/test_analysis_update_request.py +0 -52
  396. revengai/test/test_analysis_update_tags_request.py +0 -56
  397. revengai/test/test_analysis_update_tags_response.py +0 -60
  398. revengai/test/test_ann_function.py +0 -61
  399. revengai/test/test_ann_input.py +0 -56
  400. revengai/test/test_app_api_rest_v1_analyse_schema_model_name.py +0 -33
  401. revengai/test/test_app_api_rest_v1_analyse_schema_status.py +0 -33
  402. revengai/test/test_app_api_rest_v1_analyse_schema_symbols.py +0 -57
  403. revengai/test/test_app_api_rest_v1_analysis_info_responses_logs.py +0 -53
  404. revengai/test/test_app_api_rest_v1_analysis_info_schema_function_rename.py +0 -52
  405. revengai/test/test_app_api_rest_v1_ann_schema_ann_function.py +0 -74
  406. revengai/test/test_app_api_rest_v2_analyses_enums_dynamic_execution_status.py +0 -33
  407. revengai/test/test_app_api_rest_v2_analyses_enums_model_name.py +0 -33
  408. revengai/test/test_app_api_rest_v2_analyses_enums_order_by.py +0 -33
  409. revengai/test/test_app_api_rest_v2_analyses_enums_status.py +0 -33
  410. revengai/test/test_app_api_rest_v2_analyses_responses_analysis_tags.py +0 -74
  411. revengai/test/test_app_api_rest_v2_analyses_responses_logs.py +0 -52
  412. revengai/test/test_app_api_rest_v2_analyses_responses_tag_item.py +0 -55
  413. revengai/test/test_app_api_rest_v2_analyses_schemas_symbols.py +0 -57
  414. revengai/test/test_app_api_rest_v2_collections_enums_order_by.py +0 -33
  415. revengai/test/test_app_api_rest_v2_functions_rename_schema_function_rename.py +0 -52
  416. revengai/test/test_app_api_rest_v2_functions_responses_function.py +0 -54
  417. revengai/test/test_app_api_rest_v2_functions_types_function.py +0 -72
  418. revengai/test/test_app_api_rest_v2_info_responses_analysis_tags.py +0 -70
  419. revengai/test/test_app_api_rest_v2_similarity_schema_ann_function.py +0 -61
  420. revengai/test/test_app_core_responses_base_base_response_analysis_tags1.py +0 -73
  421. revengai/test/test_app_core_responses_base_base_response_analysis_tags2.py +0 -75
  422. revengai/test/test_app_services_binary_ann_schema_tag_item.py +0 -52
  423. revengai/test/test_app_services_dynamic_execution_schemas_dynamic_execution_status.py +0 -52
  424. revengai/test/test_argument.py +0 -59
  425. revengai/test/test_authentication_users_api.py +0 -66
  426. revengai/test/test_base_response.py +0 -63
  427. revengai/test/test_base_response_analysis_create_response.py +0 -65
  428. revengai/test/test_base_response_analysis_detail_response.py +0 -81
  429. revengai/test/test_base_response_analysis_functions.py +0 -77
  430. revengai/test/test_base_response_analysis_strings_response.py +0 -73
  431. revengai/test/test_base_response_analysis_threat_score_data.py +0 -70
  432. revengai/test/test_base_response_analysis_update_tags_response.py +0 -68
  433. revengai/test/test_base_response_basic.py +0 -74
  434. revengai/test/test_base_response_binary_additional_response.py +0 -259
  435. revengai/test/test_base_response_binary_ann_list_response.py +0 -83
  436. revengai/test/test_base_response_binary_details_response.py +0 -83
  437. revengai/test/test_base_response_binary_externals_response.py +0 -72
  438. revengai/test/test_base_response_binary_search_response.py +0 -77
  439. revengai/test/test_base_response_block_comments_generation_for_function_response.py +0 -64
  440. revengai/test/test_base_response_block_comments_overview_generation_response.py +0 -63
  441. revengai/test/test_base_response_bool.py +0 -63
  442. revengai/test/test_base_response_box_plot_confidence.py +0 -70
  443. revengai/test/test_base_response_callees_caller_functions_response.py +0 -82
  444. revengai/test/test_base_response_capabilities.py +0 -71
  445. revengai/test/test_base_response_check_security_checks_task_response.py +0 -64
  446. revengai/test/test_base_response_child_binaries_response.py +0 -73
  447. revengai/test/test_base_response_collection_binaries_update_response.py +0 -72
  448. revengai/test/test_base_response_collection_response.py +0 -78
  449. revengai/test/test_base_response_collection_search_response.py +0 -80
  450. revengai/test/test_base_response_collection_tags_update_response.py +0 -66
  451. revengai/test/test_base_response_comment_response.py +0 -71
  452. revengai/test/test_base_response_communities.py +0 -77
  453. revengai/test/test_base_response_created.py +0 -66
  454. revengai/test/test_base_response_decompilation_response.py +0 -66
  455. revengai/test/test_base_response_dict.py +0 -65
  456. revengai/test/test_base_response_dynamic_execution_status.py +0 -64
  457. revengai/test/test_base_response_external_response.py +0 -68
  458. revengai/test/test_base_response_function_analysis_threat_score_data.py +0 -70
  459. revengai/test/test_base_response_function_blocks_response.py +0 -96
  460. revengai/test/test_base_response_function_capability_response.py +0 -66
  461. revengai/test/test_base_response_function_data_types.py +0 -99
  462. revengai/test/test_base_response_function_data_types_list.py +0 -105
  463. revengai/test/test_base_response_function_search_response.py +0 -73
  464. revengai/test/test_base_response_function_strings_response.py +0 -69
  465. revengai/test/test_base_response_function_task_response.py +0 -65
  466. revengai/test/test_base_response_function_threat_score.py +0 -73
  467. revengai/test/test_base_response_functions_detail_response.py +0 -78
  468. revengai/test/test_base_response_generate_function_data_types.py +0 -74
  469. revengai/test/test_base_response_generation_status_list.py +0 -71
  470. revengai/test/test_base_response_get_ai_decompilation_rating_response.py +0 -64
  471. revengai/test/test_base_response_get_ai_decompilation_task.py +0 -118
  472. revengai/test/test_base_response_get_public_user_response.py +0 -65
  473. revengai/test/test_base_response_get_user_response.py +0 -70
  474. revengai/test/test_base_response_list_collection_results.py +0 -79
  475. revengai/test/test_base_response_list_comment_response.py +0 -73
  476. revengai/test/test_base_response_list_die_match.py +0 -69
  477. revengai/test/test_base_response_list_function_box_plot_confidence.py +0 -74
  478. revengai/test/test_base_response_list_function_name_history.py +0 -71
  479. revengai/test/test_base_response_list_sbom.py +0 -73
  480. revengai/test/test_base_response_list_similar_functions_response.py +0 -77
  481. revengai/test/test_base_response_list_tag_origin_box_plot_confidence.py +0 -76
  482. revengai/test/test_base_response_list_user_activity_response.py +0 -71
  483. revengai/test/test_base_response_login_response.py +0 -64
  484. revengai/test/test_base_response_logs.py +0 -64
  485. revengai/test/test_base_response_models_response.py +0 -66
  486. revengai/test/test_base_response_nearest_neighbor_analysis.py +0 -75
  487. revengai/test/test_base_response_network_overview_response.py +0 -80
  488. revengai/test/test_base_response_params.py +0 -70
  489. revengai/test/test_base_response_process_dumps.py +0 -76
  490. revengai/test/test_base_response_process_registry.py +0 -73
  491. revengai/test/test_base_response_process_tree.py +0 -78
  492. revengai/test/test_base_response_queued_security_checks_task_response.py +0 -64
  493. revengai/test/test_base_response_recent.py +0 -79
  494. revengai/test/test_base_response_security_checks_response.py +0 -76
  495. revengai/test/test_base_response_status.py +0 -65
  496. revengai/test/test_base_response_str.py +0 -63
  497. revengai/test/test_base_response_symbols_info.py +0 -68
  498. revengai/test/test_base_response_tag_search_response.py +0 -68
  499. revengai/test/test_base_response_task_response.py +0 -65
  500. revengai/test/test_base_response_ttps.py +0 -81
  501. revengai/test/test_base_response_vulnerabilities.py +0 -77
  502. revengai/test/test_basic.py +0 -72
  503. revengai/test/test_batch_ann.py +0 -55
  504. revengai/test/test_batch_function_rename.py +0 -60
  505. revengai/test/test_batch_function_rename_record.py +0 -54
  506. revengai/test/test_binaries_api.py +0 -73
  507. revengai/test/test_binary_additional_details_data_response.py +0 -256
  508. revengai/test/test_binary_additional_response.py +0 -441
  509. revengai/test/test_binary_ann_form.py +0 -58
  510. revengai/test/test_binary_ann_list_response.py +0 -90
  511. revengai/test/test_binary_config.py +0 -53
  512. revengai/test/test_binary_details_response.py +0 -90
  513. revengai/test/test_binary_externals_response.py +0 -68
  514. revengai/test/test_binary_search_response.py +0 -78
  515. revengai/test/test_binary_search_result.py +0 -72
  516. revengai/test/test_binary_task_status.py +0 -33
  517. revengai/test/test_block.py +0 -52
  518. revengai/test/test_block_comments_generation_for_function_response.py +0 -52
  519. revengai/test/test_boundary.py +0 -56
  520. revengai/test/test_box_plot_confidence.py +0 -64
  521. revengai/test/test_callee_function_info.py +0 -61
  522. revengai/test/test_callees_caller_functions_response.py +0 -87
  523. revengai/test/test_caller_function_info.py +0 -61
  524. revengai/test/test_capabilities.py +0 -66
  525. revengai/test/test_capability.py +0 -60
  526. revengai/test/test_check_security_checks_task_response.py +0 -52
  527. revengai/test/test_child_binaries_response.py +0 -66
  528. revengai/test/test_code_signature_model.py +0 -80
  529. revengai/test/test_collection_binaries_update_request.py +0 -56
  530. revengai/test/test_collection_binaries_update_response.py +0 -68
  531. revengai/test/test_collection_binary_response.py +0 -62
  532. revengai/test/test_collection_count.py +0 -53
  533. revengai/test/test_collection_create_request.py +0 -63
  534. revengai/test/test_collection_list_item.py +0 -72
  535. revengai/test/test_collection_response.py +0 -73
  536. revengai/test/test_collection_response_binaries_inner.py +0 -62
  537. revengai/test/test_collection_scope.py +0 -33
  538. revengai/test/test_collection_search_response.py +0 -84
  539. revengai/test/test_collection_search_result.py +0 -73
  540. revengai/test/test_collection_tags_update_request.py +0 -56
  541. revengai/test/test_collection_tags_update_response.py +0 -56
  542. revengai/test/test_collection_update_request.py +0 -53
  543. revengai/test/test_collections_api.py +0 -80
  544. revengai/test/test_collections_count_form.py +0 -52
  545. revengai/test/test_comment_base.py +0 -52
  546. revengai/test/test_comment_response.py +0 -65
  547. revengai/test/test_comment_update_request.py +0 -52
  548. revengai/test/test_communities.py +0 -78
  549. revengai/test/test_community_match_percentages.py +0 -58
  550. revengai/test/test_confidence_api.py +0 -59
  551. revengai/test/test_confidence_type.py +0 -33
  552. revengai/test/test_config_settings.py +0 -70
  553. revengai/test/test_context.py +0 -54
  554. revengai/test/test_create_ai_decompilation_request.py +0 -52
  555. revengai/test/test_created.py +0 -56
  556. revengai/test/test_decompilation_comment_context.py +0 -54
  557. revengai/test/test_decompilation_response.py +0 -56
  558. revengai/test/test_deleted_analysis.py +0 -52
  559. revengai/test/test_die_match.py +0 -58
  560. revengai/test/test_dynamic_execution_status_input.py +0 -33
  561. revengai/test/test_elf_dynamic_entry.py +0 -54
  562. revengai/test/test_elf_import_model.py +0 -58
  563. revengai/test/test_elf_model.py +0 -236
  564. revengai/test/test_elf_relocation.py +0 -64
  565. revengai/test/test_elf_section.py +0 -70
  566. revengai/test/test_elf_security.py +0 -60
  567. revengai/test/test_elf_segment.py +0 -68
  568. revengai/test/test_elf_symbol.py +0 -64
  569. revengai/test/test_entrypoint_model.py +0 -54
  570. revengai/test/test_enumeration.py +0 -60
  571. revengai/test/test_error_model.py +0 -54
  572. revengai/test/test_export_model.py +0 -62
  573. revengai/test/test_exported_binary_ann_result.py +0 -79
  574. revengai/test/test_external_response.py +0 -60
  575. revengai/test/test_external_sources_api.py +0 -73
  576. revengai/test/test_file_format.py +0 -33
  577. revengai/test/test_file_hashes.py +0 -66
  578. revengai/test/test_file_metadata.py +0 -74
  579. revengai/test/test_file_options.py +0 -33
  580. revengai/test/test_filters.py +0 -33
  581. revengai/test/test_firmware_api.py +0 -45
  582. revengai/test/test_function_analysis_threat_score_data.py +0 -64
  583. revengai/test/test_function_batch_ann.py +0 -55
  584. revengai/test/test_function_block_destination_response.py +0 -56
  585. revengai/test/test_function_block_response.py +0 -75
  586. revengai/test/test_function_blocks_response.py +0 -116
  587. revengai/test/test_function_boundary.py +0 -56
  588. revengai/test/test_function_box_plot_confidence.py +0 -68
  589. revengai/test/test_function_capability_response.py +0 -56
  590. revengai/test/test_function_comment_create_request.py +0 -55
  591. revengai/test/test_function_data_types.py +0 -88
  592. revengai/test/test_function_data_types_list.py +0 -132
  593. revengai/test/test_function_data_types_list_item.py +0 -90
  594. revengai/test/test_function_data_types_params.py +0 -56
  595. revengai/test/test_function_data_types_status.py +0 -56
  596. revengai/test/test_function_dump.py +0 -55
  597. revengai/test/test_function_header.py +0 -73
  598. revengai/test/test_function_info_input.py +0 -85
  599. revengai/test/test_function_info_input_func_deps_inner.py +0 -66
  600. revengai/test/test_function_info_output.py +0 -85
  601. revengai/test/test_function_list.py +0 -56
  602. revengai/test/test_function_list_basic.py +0 -53
  603. revengai/test/test_function_local_variable_response.py +0 -60
  604. revengai/test/test_function_mapping_full.py +0 -148
  605. revengai/test/test_function_name_confidence_body.py +0 -56
  606. revengai/test/test_function_name_history.py +0 -62
  607. revengai/test/test_function_name_input.py +0 -54
  608. revengai/test/test_function_param_mapping.py +0 -54
  609. revengai/test/test_function_param_response.py +0 -60
  610. revengai/test/test_function_params.py +0 -60
  611. revengai/test/test_function_rename.py +0 -52
  612. revengai/test/test_function_rename_map.py +0 -55
  613. revengai/test/test_function_search_response.py +0 -70
  614. revengai/test/test_function_search_result.py +0 -64
  615. revengai/test/test_function_string.py +0 -54
  616. revengai/test/test_function_strings_response.py +0 -62
  617. revengai/test/test_function_task_response.py +0 -52
  618. revengai/test/test_function_task_status.py +0 -33
  619. revengai/test/test_function_threat_score.py +0 -70
  620. revengai/test/test_function_type_input.py +0 -95
  621. revengai/test/test_function_type_output.py +0 -95
  622. revengai/test/test_functions_ai_decompilation_api.py +0 -108
  623. revengai/test/test_functions_block_comments_api.py +0 -73
  624. revengai/test/test_functions_core_api.py +0 -87
  625. revengai/test/test_functions_data_types_api.py +0 -101
  626. revengai/test/test_functions_decompilation_api.py +0 -80
  627. revengai/test/test_functions_detail_response.py +0 -74
  628. revengai/test/test_functions_list_rename.py +0 -62
  629. revengai/test/test_functions_renaming_history_api.py +0 -59
  630. revengai/test/test_functions_threat_score_api.py +0 -59
  631. revengai/test/test_generate_function_data_types.py +0 -72
  632. revengai/test/test_generation_status_list.py +0 -64
  633. revengai/test/test_get_ai_decompilation_rating_response.py +0 -52
  634. revengai/test/test_get_ai_decompilation_task.py +0 -157
  635. revengai/test/test_get_public_user_response.py +0 -54
  636. revengai/test/test_get_user_response.py +0 -64
  637. revengai/test/test_global_variable.py +0 -60
  638. revengai/test/test_icon_model.py +0 -52
  639. revengai/test/test_import_model.py +0 -66
  640. revengai/test/test_inverse_function_map_item.py +0 -55
  641. revengai/test/test_inverse_string_map_item.py +0 -54
  642. revengai/test/test_inverse_value.py +0 -52
  643. revengai/test/test_isa.py +0 -33
  644. revengai/test/test_isa_options.py +0 -33
  645. revengai/test/test_list_collection_results.py +0 -82
  646. revengai/test/test_login_request.py +0 -54
  647. revengai/test/test_login_response.py +0 -52
  648. revengai/test/test_logs.py +0 -52
  649. revengai/test/test_meta_model.py +0 -54
  650. revengai/test/test_model_list.py +0 -53
  651. revengai/test/test_model_name.py +0 -33
  652. revengai/test/test_models_api.py +0 -38
  653. revengai/test/test_models_response.py +0 -56
  654. revengai/test/test_nearest_neighbor.py +0 -66
  655. revengai/test/test_network_overview_dns.py +0 -64
  656. revengai/test/test_network_overview_dns_answer.py +0 -54
  657. revengai/test/test_network_overview_metadata.py +0 -58
  658. revengai/test/test_network_overview_response.py +0 -84
  659. revengai/test/test_order.py +0 -33
  660. revengai/test/test_origin.py +0 -33
  661. revengai/test/test_pagination_model.py +0 -56
  662. revengai/test/test_params.py +0 -64
  663. revengai/test/test_pdb_debug_model.py +0 -62
  664. revengai/test/test_pe_model.py +0 -220
  665. revengai/test/test_platform.py +0 -33
  666. revengai/test/test_platform_options.py +0 -33
  667. revengai/test/test_process.py +0 -72
  668. revengai/test/test_process_dump.py +0 -64
  669. revengai/test/test_process_dump_metadata.py +0 -56
  670. revengai/test/test_process_dumps.py +0 -76
  671. revengai/test/test_process_dumps_data.py +0 -72
  672. revengai/test/test_process_registry.py +0 -70
  673. revengai/test/test_process_tree.py +0 -80
  674. revengai/test/test_queued_security_checks_task_response.py +0 -52
  675. revengai/test/test_quick_search.py +0 -53
  676. revengai/test/test_re_analysis_form.py +0 -58
  677. revengai/test/test_recent.py +0 -82
  678. revengai/test/test_recent_analysis.py +0 -53
  679. revengai/test/test_recent_analysis_form.py +0 -53
  680. revengai/test/test_registry.py +0 -58
  681. revengai/test/test_relative_binary_response.py +0 -56
  682. revengai/test/test_rename.py +0 -53
  683. revengai/test/test_sandbox_options.py +0 -52
  684. revengai/test/test_sbom.py +0 -66
  685. revengai/test/test_sbom_package.py +0 -54
  686. revengai/test/test_scope.py +0 -33
  687. revengai/test/test_scrape_third_party_config.py +0 -51
  688. revengai/test/test_search_api.py +0 -59
  689. revengai/test/test_search_binary_ids.py +0 -50
  690. revengai/test/test_search_form.py +0 -56
  691. revengai/test/test_search_function_ids.py +0 -50
  692. revengai/test/test_search_query.py +0 -52
  693. revengai/test/test_section_model.py +0 -72
  694. revengai/test/test_security_checks_response.py +0 -76
  695. revengai/test/test_security_checks_result.py +0 -66
  696. revengai/test/test_security_model.py +0 -72
  697. revengai/test/test_severity_type.py +0 -33
  698. revengai/test/test_similar_functions_response.py +0 -74
  699. revengai/test/test_single_code_certificate_model.py +0 -62
  700. revengai/test/test_single_code_signature_model.py +0 -70
  701. revengai/test/test_single_pdb_entry_model.py +0 -56
  702. revengai/test/test_single_section_model.py +0 -64
  703. revengai/test/test_stack_variable.py +0 -61
  704. revengai/test/test_status_input.py +0 -33
  705. revengai/test/test_status_output.py +0 -54
  706. revengai/test/test_string_functions.py +0 -62
  707. revengai/test/test_structure.py +0 -71
  708. revengai/test/test_structure_member.py +0 -59
  709. revengai/test/test_symbols.py +0 -57
  710. revengai/test/test_symbols_info.py +0 -55
  711. revengai/test/test_tag_confidence_body.py +0 -60
  712. revengai/test/test_tag_input.py +0 -52
  713. revengai/test/test_tag_origin_box_plot_confidence.py +0 -72
  714. revengai/test/test_tag_output.py +0 -54
  715. revengai/test/test_tag_response.py +0 -54
  716. revengai/test/test_tag_search_response.py +0 -60
  717. revengai/test/test_tag_search_result.py +0 -54
  718. revengai/test/test_tags.py +0 -54
  719. revengai/test/test_task_response.py +0 -52
  720. revengai/test/test_task_status.py +0 -33
  721. revengai/test/test_threat_score_function_body.py +0 -53
  722. revengai/test/test_timestamp_model.py +0 -56
  723. revengai/test/test_ttps.py +0 -86
  724. revengai/test/test_ttps_attack.py +0 -54
  725. revengai/test/test_ttps_data.py +0 -82
  726. revengai/test/test_ttps_element.py +0 -74
  727. revengai/test/test_ttps_occurance.py +0 -54
  728. revengai/test/test_type_definition.py +0 -56
  729. revengai/test/test_update_function_data_types.py +0 -118
  730. revengai/test/test_upload_success.py +0 -54
  731. revengai/test/test_upsert_ai_decomplation_rating_request.py +0 -52
  732. revengai/test/test_user_activity_response.py +0 -62
  733. revengai/test/test_user_boundaries.py +0 -56
  734. revengai/test/test_v1_api.py +0 -185
  735. revengai/test/test_vulnerabilities.py +0 -78
  736. revengai/test/test_vulnerability.py +0 -71
  737. revengai/test/test_vulnerability_type.py +0 -33
  738. revengai/test/test_workspace.py +0 -33
  739. revengai-1.1.1.dist-info/RECORD +0 -741
  740. {revengai-1.1.1.dist-info → revengai-1.73.0.dist-info}/WHEEL +0 -0
@@ -1,59 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.api.functions_renaming_history_api import FunctionsRenamingHistoryApi
18
-
19
-
20
- class TestFunctionsRenamingHistoryApi(unittest.TestCase):
21
- """FunctionsRenamingHistoryApi unit test stubs"""
22
-
23
- def setUp(self) -> None:
24
- self.api = FunctionsRenamingHistoryApi()
25
-
26
- def tearDown(self) -> None:
27
- pass
28
-
29
- def test_batch_rename_function_v2_functions_rename_batch_post(self) -> None:
30
- """Test case for batch_rename_function_v2_functions_rename_batch_post
31
-
32
- Batch Rename Functions
33
- """
34
- pass
35
-
36
- def test_rename_function_id_v2_functions_history_function_id_get(self) -> None:
37
- """Test case for rename_function_id_v2_functions_history_function_id_get
38
-
39
- Get Function Name History
40
- """
41
- pass
42
-
43
- def test_rename_function_id_v2_functions_rename_function_id_post(self) -> None:
44
- """Test case for rename_function_id_v2_functions_rename_function_id_post
45
-
46
- Rename Function
47
- """
48
- pass
49
-
50
- def test_revert_function_name_v2_functions_history_function_id_history_id_post(self) -> None:
51
- """Test case for revert_function_name_v2_functions_history_function_id_history_id_post
52
-
53
- Revert the function name
54
- """
55
- pass
56
-
57
-
58
- if __name__ == '__main__':
59
- unittest.main()
@@ -1,59 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.api.functions_threat_score_api import FunctionsThreatScoreApi
18
-
19
-
20
- class TestFunctionsThreatScoreApi(unittest.TestCase):
21
- """FunctionsThreatScoreApi unit test stubs"""
22
-
23
- def setUp(self) -> None:
24
- self.api = FunctionsThreatScoreApi()
25
-
26
- def tearDown(self) -> None:
27
- pass
28
-
29
- def test_get_function_threat_score_v2_analyses_analysis_id_functions_threat_score_get(self) -> None:
30
- """Test case for get_function_threat_score_v2_analyses_analysis_id_functions_threat_score_get
31
-
32
- Gets the threat score for all functions
33
- """
34
- pass
35
-
36
- def test_get_function_threat_score_v2_analyses_analysis_id_info_functions_threat_score_get(self) -> None:
37
- """Test case for get_function_threat_score_v2_analyses_analysis_id_info_functions_threat_score_get
38
-
39
- Gets the threat score for all functions
40
- """
41
- pass
42
-
43
- def test_get_individual_function_threat_score_v2_analyses_analysis_id_functions_function_id_threat_score_get(self) -> None:
44
- """Test case for get_individual_function_threat_score_v2_analyses_analysis_id_functions_function_id_threat_score_get
45
-
46
- Gets the threat score analysis
47
- """
48
- pass
49
-
50
- def test_get_individual_function_threat_score_v2_analyses_analysis_id_info_functions_function_id_threat_score_get(self) -> None:
51
- """Test case for get_individual_function_threat_score_v2_analyses_analysis_id_info_functions_function_id_threat_score_get
52
-
53
- Gets the threat score analysis
54
- """
55
- pass
56
-
57
-
58
- if __name__ == '__main__':
59
- unittest.main()
@@ -1,72 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.generate_function_data_types import GenerateFunctionDataTypes
18
-
19
- class TestGenerateFunctionDataTypes(unittest.TestCase):
20
- """GenerateFunctionDataTypes unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GenerateFunctionDataTypes:
29
- """Test GenerateFunctionDataTypes
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GenerateFunctionDataTypes`
34
- """
35
- model = GenerateFunctionDataTypes()
36
- if include_optional:
37
- return GenerateFunctionDataTypes(
38
- queued = True,
39
- reference = '',
40
- data_types_list = revengai.models.generation_status_list.GenerationStatusList(
41
- total_count = 56,
42
- total_data_types_count = 56,
43
- items = [
44
- revengai.models.function_data_types_status.FunctionDataTypesStatus(
45
- function_id = 56,
46
- completed = True,
47
- status = '', )
48
- ], )
49
- )
50
- else:
51
- return GenerateFunctionDataTypes(
52
- queued = True,
53
- reference = '',
54
- data_types_list = revengai.models.generation_status_list.GenerationStatusList(
55
- total_count = 56,
56
- total_data_types_count = 56,
57
- items = [
58
- revengai.models.function_data_types_status.FunctionDataTypesStatus(
59
- function_id = 56,
60
- completed = True,
61
- status = '', )
62
- ], ),
63
- )
64
- """
65
-
66
- def testGenerateFunctionDataTypes(self):
67
- """Test GenerateFunctionDataTypes"""
68
- # inst_req_only = self.make_instance(include_optional=False)
69
- # inst_req_and_optional = self.make_instance(include_optional=True)
70
-
71
- if __name__ == '__main__':
72
- unittest.main()
@@ -1,64 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.generation_status_list import GenerationStatusList
18
-
19
- class TestGenerationStatusList(unittest.TestCase):
20
- """GenerationStatusList unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GenerationStatusList:
29
- """Test GenerationStatusList
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GenerationStatusList`
34
- """
35
- model = GenerationStatusList()
36
- if include_optional:
37
- return GenerationStatusList(
38
- total_count = 56,
39
- total_data_types_count = 56,
40
- items = [
41
- revengai.models.function_data_types_status.FunctionDataTypesStatus(
42
- function_id = 56,
43
- completed = True,
44
- status = '', )
45
- ]
46
- )
47
- else:
48
- return GenerationStatusList(
49
- items = [
50
- revengai.models.function_data_types_status.FunctionDataTypesStatus(
51
- function_id = 56,
52
- completed = True,
53
- status = '', )
54
- ],
55
- )
56
- """
57
-
58
- def testGenerationStatusList(self):
59
- """Test GenerationStatusList"""
60
- # inst_req_only = self.make_instance(include_optional=False)
61
- # inst_req_and_optional = self.make_instance(include_optional=True)
62
-
63
- if __name__ == '__main__':
64
- unittest.main()
@@ -1,52 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.get_ai_decompilation_rating_response import GetAiDecompilationRatingResponse
18
-
19
- class TestGetAiDecompilationRatingResponse(unittest.TestCase):
20
- """GetAiDecompilationRatingResponse unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GetAiDecompilationRatingResponse:
29
- """Test GetAiDecompilationRatingResponse
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GetAiDecompilationRatingResponse`
34
- """
35
- model = GetAiDecompilationRatingResponse()
36
- if include_optional:
37
- return GetAiDecompilationRatingResponse(
38
- rating = 'POSITIVE'
39
- )
40
- else:
41
- return GetAiDecompilationRatingResponse(
42
- rating = 'POSITIVE',
43
- )
44
- """
45
-
46
- def testGetAiDecompilationRatingResponse(self):
47
- """Test GetAiDecompilationRatingResponse"""
48
- # inst_req_only = self.make_instance(include_optional=False)
49
- # inst_req_and_optional = self.make_instance(include_optional=True)
50
-
51
- if __name__ == '__main__':
52
- unittest.main()
@@ -1,157 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.get_ai_decompilation_task import GetAiDecompilationTask
18
-
19
- class TestGetAiDecompilationTask(unittest.TestCase):
20
- """GetAiDecompilationTask unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GetAiDecompilationTask:
29
- """Test GetAiDecompilationTask
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GetAiDecompilationTask`
34
- """
35
- model = GetAiDecompilationTask()
36
- if include_optional:
37
- return GetAiDecompilationTask(
38
- status = '',
39
- decompilation = '',
40
- raw_decompilation = '',
41
- function_mapping = {
42
- 'key' : revengai.models.inverse_function_map_item.InverseFunctionMapItem(
43
- name = '',
44
- addr = null,
45
- is_external = True, )
46
- },
47
- function_mapping_full = revengai.models.function_mapping_full.FunctionMappingFull(
48
- inverse_string_map = {
49
- 'key' : revengai.models.inverse_string_map_item.InverseStringMapItem(
50
- string = '',
51
- addr = 56, )
52
- },
53
- inverse_function_map = {
54
- 'key' : revengai.models.inverse_function_map_item.InverseFunctionMapItem(
55
- name = '',
56
- addr = null,
57
- is_external = True, )
58
- },
59
- unmatched_functions = {
60
- 'key' : revengai.models.inverse_value.InverseValue(
61
- value = '', )
62
- },
63
- unmatched_external_vars = {
64
- 'key' : revengai.models.inverse_value.InverseValue(
65
- value = '', )
66
- },
67
- unmatched_custom_types = {
68
- 'key' :
69
- },
70
- unmatched_strings = {
71
- 'key' :
72
- },
73
- unmatched_vars = {
74
- 'key' :
75
- },
76
- unmatched_go_to_labels = {
77
- 'key' :
78
- },
79
- unmatched_custom_function_pointers = {
80
- 'key' :
81
- },
82
- unmatched_variadic_lists = {
83
- 'key' :
84
- },
85
- fields = {
86
- 'key' : {
87
- 'key' :
88
- }
89
- }, ),
90
- summary = '',
91
- ai_summary = '',
92
- raw_ai_summary = ''
93
- )
94
- else:
95
- return GetAiDecompilationTask(
96
- status = '',
97
- decompilation = '',
98
- raw_decompilation = '',
99
- function_mapping = {
100
- 'key' : revengai.models.inverse_function_map_item.InverseFunctionMapItem(
101
- name = '',
102
- addr = null,
103
- is_external = True, )
104
- },
105
- function_mapping_full = revengai.models.function_mapping_full.FunctionMappingFull(
106
- inverse_string_map = {
107
- 'key' : revengai.models.inverse_string_map_item.InverseStringMapItem(
108
- string = '',
109
- addr = 56, )
110
- },
111
- inverse_function_map = {
112
- 'key' : revengai.models.inverse_function_map_item.InverseFunctionMapItem(
113
- name = '',
114
- addr = null,
115
- is_external = True, )
116
- },
117
- unmatched_functions = {
118
- 'key' : revengai.models.inverse_value.InverseValue(
119
- value = '', )
120
- },
121
- unmatched_external_vars = {
122
- 'key' : revengai.models.inverse_value.InverseValue(
123
- value = '', )
124
- },
125
- unmatched_custom_types = {
126
- 'key' :
127
- },
128
- unmatched_strings = {
129
- 'key' :
130
- },
131
- unmatched_vars = {
132
- 'key' :
133
- },
134
- unmatched_go_to_labels = {
135
- 'key' :
136
- },
137
- unmatched_custom_function_pointers = {
138
- 'key' :
139
- },
140
- unmatched_variadic_lists = {
141
- 'key' :
142
- },
143
- fields = {
144
- 'key' : {
145
- 'key' :
146
- }
147
- }, ),
148
- )
149
- """
150
-
151
- def testGetAiDecompilationTask(self):
152
- """Test GetAiDecompilationTask"""
153
- # inst_req_only = self.make_instance(include_optional=False)
154
- # inst_req_and_optional = self.make_instance(include_optional=True)
155
-
156
- if __name__ == '__main__':
157
- unittest.main()
@@ -1,54 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.get_public_user_response import GetPublicUserResponse
18
-
19
- class TestGetPublicUserResponse(unittest.TestCase):
20
- """GetPublicUserResponse unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GetPublicUserResponse:
29
- """Test GetPublicUserResponse
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GetPublicUserResponse`
34
- """
35
- model = GetPublicUserResponse()
36
- if include_optional:
37
- return GetPublicUserResponse(
38
- username = '',
39
- user_id = 56
40
- )
41
- else:
42
- return GetPublicUserResponse(
43
- username = '',
44
- user_id = 56,
45
- )
46
- """
47
-
48
- def testGetPublicUserResponse(self):
49
- """Test GetPublicUserResponse"""
50
- # inst_req_only = self.make_instance(include_optional=False)
51
- # inst_req_and_optional = self.make_instance(include_optional=True)
52
-
53
- if __name__ == '__main__':
54
- unittest.main()
@@ -1,64 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.get_user_response import GetUserResponse
18
-
19
- class TestGetUserResponse(unittest.TestCase):
20
- """GetUserResponse unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GetUserResponse:
29
- """Test GetUserResponse
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GetUserResponse`
34
- """
35
- model = GetUserResponse()
36
- if include_optional:
37
- return GetUserResponse(
38
- username = '',
39
- user_id = 56,
40
- first_name = '',
41
- last_name = '',
42
- email = '',
43
- creation = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
44
- tutorial_seen = True
45
- )
46
- else:
47
- return GetUserResponse(
48
- username = '',
49
- user_id = 56,
50
- first_name = '',
51
- last_name = '',
52
- email = '',
53
- creation = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
54
- tutorial_seen = True,
55
- )
56
- """
57
-
58
- def testGetUserResponse(self):
59
- """Test GetUserResponse"""
60
- # inst_req_only = self.make_instance(include_optional=False)
61
- # inst_req_and_optional = self.make_instance(include_optional=True)
62
-
63
- if __name__ == '__main__':
64
- unittest.main()
@@ -1,60 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- RevEng.AI API
5
-
6
- RevEng.AI is Similarity Search Engine for executable binaries
7
-
8
- The version of the OpenAPI document: 0.0.1
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from revengai.models.global_variable import GlobalVariable
18
-
19
- class TestGlobalVariable(unittest.TestCase):
20
- """GlobalVariable unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> GlobalVariable:
29
- """Test GlobalVariable
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `GlobalVariable`
34
- """
35
- model = GlobalVariable()
36
- if include_optional:
37
- return GlobalVariable(
38
- last_change = '',
39
- addr = 56,
40
- name = '',
41
- type = '',
42
- size = 56,
43
- artifact_type = ''
44
- )
45
- else:
46
- return GlobalVariable(
47
- addr = 56,
48
- name = '',
49
- type = '',
50
- size = 56,
51
- )
52
- """
53
-
54
- def testGlobalVariable(self):
55
- """Test GlobalVariable"""
56
- # inst_req_only = self.make_instance(include_optional=False)
57
- # inst_req_and_optional = self.make_instance(include_optional=True)
58
-
59
- if __name__ == '__main__':
60
- unittest.main()