codemie-test-harness 0.1.184__py3-none-any.whl → 0.1.197__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.
Potentially problematic release.
This version of codemie-test-harness might be problematic. Click here for more details.
- codemie_test_harness/cli/cli.py +21 -6
- codemie_test_harness/cli/commands/run_cmd.py +15 -1
- codemie_test_harness/cli/constants.py +1 -21
- codemie_test_harness/cli/runner.py +13 -3
- codemie_test_harness/cli/utils.py +12 -2
- codemie_test_harness/tests/assistant/test_assistants.py +17 -1
- codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +47 -6
- codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +0 -4
- codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +0 -4
- codemie_test_harness/tests/conftest.py +2 -2
- codemie_test_harness/tests/enums/environment.py +3 -3
- codemie_test_harness/tests/enums/integrations.py +1 -0
- codemie_test_harness/tests/enums/model_types.py +1 -0
- codemie_test_harness/tests/integrations/project/test_default_integrations.py +41 -15
- codemie_test_harness/tests/integrations/project/test_project_integrations.py +42 -0
- codemie_test_harness/tests/integrations/user/test_default_integrations.py +0 -7
- codemie_test_harness/tests/llm/assistants/test_llm.py +56 -2
- codemie_test_harness/tests/test_data/assistant_test_data.py +448 -448
- codemie_test_harness/tests/test_data/codebase_tools_test_data.py +2 -0
- codemie_test_harness/tests/test_data/data_management_tools_test_data.py +18 -0
- codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +18 -1
- codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py +189 -197
- codemie_test_harness/tests/test_data/integrations_test_data.py +163 -2
- codemie_test_harness/tests/test_data/llm_test_data.py +1 -0
- codemie_test_harness/tests/test_data/open_api_tools_test_data.py +22 -1
- codemie_test_harness/tests/test_data/report_portal_tools_test_data.py +89 -112
- codemie_test_harness/tests/test_data/research_tools_test_data.py +29 -7
- codemie_test_harness/tests/utils/assistant_utils.py +22 -12
- codemie_test_harness/tests/utils/credentials_manager.py +66 -8
- codemie_test_harness/tests/utils/workflow_utils.py +91 -0
- codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py +7 -0
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +50 -1
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +39 -1
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +34 -1
- codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +6 -0
- codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +11 -0
- codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +72 -1
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +31 -0
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +31 -0
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +26 -0
- codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +63 -1
- codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +82 -7
- codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +23 -4
- codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +12 -0
- codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +6 -0
- codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +29 -2
- codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +14 -1
- codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +7 -0
- codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +7 -0
- codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +14 -1
- codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +6 -0
- codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +6 -0
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +12 -9
- codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py +8 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +28 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +24 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +20 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +13 -4
- codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +16 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +73 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +34 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +34 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +34 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +101 -49
- codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +42 -3
- codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +27 -5
- codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +13 -0
- codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +10 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +20 -0
- codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +14 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +10 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +10 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +9 -0
- codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +10 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +9 -1
- {codemie_test_harness-0.1.184.dist-info → codemie_test_harness-0.1.197.dist-info}/METADATA +38 -3
- {codemie_test_harness-0.1.184.dist-info → codemie_test_harness-0.1.197.dist-info}/RECORD +79 -79
- {codemie_test_harness-0.1.184.dist-info → codemie_test_harness-0.1.197.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.184.dist-info → codemie_test_harness-0.1.197.dist-info}/entry_points.txt +0 -0
|
@@ -55,6 +55,7 @@ sonar_tools_test_data = [
|
|
|
55
55
|
CodeBaseTool.SONAR,
|
|
56
56
|
CredentialsManager.sonar_credentials(),
|
|
57
57
|
"""
|
|
58
|
+
Always run tool for each user request.
|
|
58
59
|
Try to find any code smells and return if you have an access to sonar or not?
|
|
59
60
|
relative_url='/api/issues/search'
|
|
60
61
|
params={'types': ['CODE_SMELL'], 'ps': 1}
|
|
@@ -70,6 +71,7 @@ sonar_tools_test_data = [
|
|
|
70
71
|
CodeBaseTool.SONAR_CLOUD,
|
|
71
72
|
CredentialsManager.sonar_cloud_credentials(),
|
|
72
73
|
"""
|
|
74
|
+
Always run tool for each user request.
|
|
73
75
|
Try to find any code smells and return if you have an access to sonar or not?
|
|
74
76
|
relative_url='/api/issues/search'
|
|
75
77
|
params={'types': ['CODE_SMELL'], 'ps': 1}
|
|
@@ -64,3 +64,21 @@ sql_tools_test_data = [
|
|
|
64
64
|
id=DataBaseDialect.MS_SQL,
|
|
65
65
|
),
|
|
66
66
|
]
|
|
67
|
+
|
|
68
|
+
# InfluxDB-specific task
|
|
69
|
+
INFLUXDB_QUERY_MEASUREMENT_TASK = """
|
|
70
|
+
Execute the query:
|
|
71
|
+
'from(bucket: "primary")
|
|
72
|
+
|> range(start: 2025-09-01T00:00:00Z, stop: 2025-10-01T00:00:00Z)
|
|
73
|
+
|> filter(fn: (r) => r._measurement == "server_performance" and r.hostname == "api-gateway-01")'
|
|
74
|
+
Output format is a table:
|
|
75
|
+
| time | host | region | cpu_load | memory_usage |
|
|
76
|
+
Do not summarize the output!
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
RESPONSE_FOR_INFLUXDB = """
|
|
80
|
+
|
|
81
|
+
time | host | region | cpu_load | memory_usage
|
|
82
|
+
2025-09-16T02:00:05Z | api-gateway-01 | us-east-1 | 45.8 | 8.5
|
|
83
|
+
2025-09-16T02:00:20Z | api-gateway-01 | us-east-1 | 89.9 | 14.8
|
|
84
|
+
"""
|
|
@@ -45,8 +45,25 @@ sql_tools_test_data = [
|
|
|
45
45
|
[{"table_name": "Users"}, {"table_name": "Products"}],
|
|
46
46
|
marks=pytest.mark.skipif(
|
|
47
47
|
not EnvironmentResolver.is_sandbox(),
|
|
48
|
-
reason="MS SQL is only available in
|
|
48
|
+
reason="MS SQL is only available in sandbox environments",
|
|
49
49
|
),
|
|
50
50
|
id=DataBaseDialect.MS_SQL,
|
|
51
51
|
),
|
|
52
52
|
]
|
|
53
|
+
|
|
54
|
+
INFLUXDB_QUERY = {
|
|
55
|
+
"sql_query": """
|
|
56
|
+
from(bucket: "primary")
|
|
57
|
+
|> range(start: 2025-09-01T00:00:00Z, stop: 2025-10-01T00:00:00Z)
|
|
58
|
+
|> filter(fn: (r) => r._measurement == "server_performance" and r.hostname == "api-gateway-01")
|
|
59
|
+
"""
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
RESPONSE_FOR_INFLUXDB = """
|
|
63
|
+
"_value":89.9,
|
|
64
|
+
"_field":"cpu_load_percent",
|
|
65
|
+
"_measurement":"server_performance",
|
|
66
|
+
"hostname":"api-gateway-01",
|
|
67
|
+
"region":"us-east-1",
|
|
68
|
+
"service":"api"
|
|
69
|
+
"""
|
|
@@ -686,57 +686,70 @@ report_portal_tools_test_data = [
|
|
|
686
686
|
(
|
|
687
687
|
Toolkit.REPORT_PORTAL,
|
|
688
688
|
ReportPortalTool.FIND_TEST_ITEM_BY_ID,
|
|
689
|
-
{"item_id": "
|
|
689
|
+
{"item_id": "111487"},
|
|
690
690
|
"""
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
"
|
|
709
|
-
|
|
710
|
-
|
|
691
|
+
{
|
|
692
|
+
"id" : 111487,
|
|
693
|
+
"uuid" : "ce9a949c-cc17-4869-b311-59d4955b5790",
|
|
694
|
+
"name" : "codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py::test_assistant_with_plugin_and_cli_mcp_server[ls]",
|
|
695
|
+
"codeRef" : "codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py:test_assistant_with_plugin_and_cli_mcp_server",
|
|
696
|
+
"parameters" : [ {
|
|
697
|
+
"key" : "prompt",
|
|
698
|
+
"value" : "ls"
|
|
699
|
+
}, {
|
|
700
|
+
"key" : "expected_response",
|
|
701
|
+
"value" : "\n Here is a list of files and directories in `/apps/codemie-sdk/test-harness/codemie_test_harness/tests`:\n\n - Files:\n - `.DS_Store`\n - `__init__.py`\n - `conftest.py`\n\n - Directories:\n - `__pycache__`\n - `assistant`\n - `e2e`\n - `enums`\n - `integrations`\n - `llm`\n - `providers`\n - `search`\n - `service`\n - `test_data`\n - `ui`\n - `utils`\n - `workflow`\n "
|
|
702
|
+
} ],
|
|
703
|
+
"attributes" : [ {
|
|
704
|
+
"key" : null,
|
|
705
|
+
"value" : "plugin"
|
|
706
|
+
}, {
|
|
707
|
+
"key" : null,
|
|
708
|
+
"value" : "assistant"
|
|
709
|
+
}, {
|
|
710
|
+
"key" : null,
|
|
711
|
+
"value" : "api"
|
|
712
|
+
}, {
|
|
713
|
+
"key" : null,
|
|
714
|
+
"value" : "mcp"
|
|
715
|
+
} ],
|
|
716
|
+
"type" : "STEP",
|
|
717
|
+
"startTime" : "2025-10-08T10:02:41.353Z",
|
|
718
|
+
"endTime" : "2025-10-08T10:05:09.133Z",
|
|
719
|
+
"status" : "FAILED",
|
|
720
|
+
"statistics" : {
|
|
721
|
+
"executions" : {
|
|
722
|
+
"total" : 1,
|
|
723
|
+
"failed" : 1
|
|
711
724
|
},
|
|
712
|
-
"defects": {
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
725
|
+
"defects" : {
|
|
726
|
+
"to_investigate" : {
|
|
727
|
+
"total" : 1,
|
|
728
|
+
"ti001" : 1
|
|
729
|
+
}
|
|
717
730
|
}
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
"launchPathName": {
|
|
721
|
-
|
|
722
|
-
|
|
731
|
+
},
|
|
732
|
+
"pathNames" : {
|
|
733
|
+
"launchPathName" : {
|
|
734
|
+
"name" : "Pytest Regression",
|
|
735
|
+
"number" : 121
|
|
723
736
|
}
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
"issueType": "ti001",
|
|
727
|
-
"autoAnalyzed": false,
|
|
728
|
-
"ignoreAnalyzer": false,
|
|
729
|
-
"externalSystemIssues": []
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
737
|
+
},
|
|
738
|
+
"issue" : {
|
|
739
|
+
"issueType" : "ti001",
|
|
740
|
+
"autoAnalyzed" : false,
|
|
741
|
+
"ignoreAnalyzer" : false,
|
|
742
|
+
"externalSystemIssues" : [ ]
|
|
743
|
+
},
|
|
744
|
+
"hasChildren" : false,
|
|
745
|
+
"hasStats" : true,
|
|
746
|
+
"launchId" : 321,
|
|
747
|
+
"uniqueId" : "auto:2b3f46b999e47da7019e17c19143373a",
|
|
748
|
+
"testCaseId" : "codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py:test_assistant_with_plugin_and_cli_mcp_server[\n Here is a list of files and directories in `/apps/codemie-sdk/test-harness/codemie_test_harness/tests`:\n\n - Files:\n - `.DS_Store`\n - `__init__.py`\n - `conftest.py`\n\n - Directories:\n - `__pycache__`\n - `assistant`\n - `e2e`\n - `enums`\n - `integrations`\n - `llm`\n - `providers`\n - `search`\n - `service`\n - `test_data`\n - `ui`\n - `utils`\n - `workflow`\n ,ls]",
|
|
749
|
+
"testCaseHash" : -1863961748,
|
|
750
|
+
"patternTemplates" : [ ],
|
|
751
|
+
"path" : "111487"
|
|
752
|
+
}
|
|
740
753
|
""",
|
|
741
754
|
),
|
|
742
755
|
(
|
|
@@ -1030,158 +1043,137 @@ report_portal_tools_test_data = [
|
|
|
1030
1043
|
(
|
|
1031
1044
|
Toolkit.REPORT_PORTAL,
|
|
1032
1045
|
ReportPortalTool.GET_LOGS_FOR_TEST_ITEM,
|
|
1033
|
-
{"item_id": "
|
|
1046
|
+
{"item_id": "111487", "page_number": 1},
|
|
1034
1047
|
"""
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
{
|
|
1164
|
-
"id": 105297,
|
|
1165
|
-
"time": "2025-09-08T08:51:45.394Z",
|
|
1166
|
-
"message": "Received response with status 200",
|
|
1167
|
-
"level": "DEBUG",
|
|
1168
|
-
"itemId": 2884
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
"id": 105298,
|
|
1172
|
-
"time": "2025-09-08T08:51:45.394Z",
|
|
1173
|
-
"message": "Response datasource_type: <class 'dict'>",
|
|
1174
|
-
"level": "DEBUG",
|
|
1175
|
-
"itemId": 2884
|
|
1176
|
-
}
|
|
1177
|
-
],
|
|
1178
|
-
"page": {
|
|
1179
|
-
"number": 1,
|
|
1180
|
-
"size": 20,
|
|
1181
|
-
"totalElements": 903,
|
|
1182
|
-
"totalPages": 46
|
|
1048
|
+
{
|
|
1049
|
+
"content" : [ {
|
|
1050
|
+
"id" : 4359887,
|
|
1051
|
+
"time" : "2025-10-08T10:02:41.368Z",
|
|
1052
|
+
"message" : "Starting new HTTPS connection (1): keycloak.eks-core.aws.main.edp.projects.epam.com:443",
|
|
1053
|
+
"level" : "DEBUG",
|
|
1054
|
+
"itemId" : 111487
|
|
1055
|
+
}, {
|
|
1056
|
+
"id" : 4359888,
|
|
1057
|
+
"time" : "2025-10-08T10:02:41.647Z",
|
|
1058
|
+
"message" : "https://keycloak.eks-core.aws.main.edp.projects.epam.com:443 \"POST /auth/realms/codemie-prod/protocol/openid-connect/token HTTP/1.1\" 200 2500",
|
|
1059
|
+
"level" : "DEBUG",
|
|
1060
|
+
"itemId" : 111487
|
|
1061
|
+
}, {
|
|
1062
|
+
"id" : 4359889,
|
|
1063
|
+
"time" : "2025-10-08T10:02:41.651Z",
|
|
1064
|
+
"message" : "Plugin key: f6455cc5-af78-4420-86a9-965ac6f0425e",
|
|
1065
|
+
"level" : "INFO",
|
|
1066
|
+
"itemId" : 111487
|
|
1067
|
+
}, {
|
|
1068
|
+
"id" : 4359890,
|
|
1069
|
+
"time" : "2025-10-08T10:02:41.652Z",
|
|
1070
|
+
"message" : "Making /v1/settings/project request to https://codemie-preview.lab.epam.com/code-assistant-api<class 'dict'>",
|
|
1071
|
+
"level" : "DEBUG",
|
|
1072
|
+
"itemId" : 111487
|
|
1073
|
+
}, {
|
|
1074
|
+
"id" : 4359891,
|
|
1075
|
+
"time" : "2025-10-08T10:02:41.652Z",
|
|
1076
|
+
"message" : "Request body: {'project_name': 'codemie', 'alias': 'cfs_qlbpwnkmgoqgkcc', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.PLUGIN: 'Plugin'>, 'credential_values': [{'key': 'url', 'value': 'AUTO_GENERATED'}, {'key': 'plugin_key', 'value': 'f6455cc5-af78-4420-86a9-965ac6f0425e'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}",
|
|
1077
|
+
"level" : "DEBUG",
|
|
1078
|
+
"itemId" : 111487
|
|
1079
|
+
}, {
|
|
1080
|
+
"id" : 4359892,
|
|
1081
|
+
"time" : "2025-10-08T10:02:41.653Z",
|
|
1082
|
+
"message" : "Starting new HTTPS connection (1): codemie-preview.lab.epam.com:443",
|
|
1083
|
+
"level" : "DEBUG",
|
|
1084
|
+
"itemId" : 111487
|
|
1085
|
+
}, {
|
|
1086
|
+
"id" : 4359893,
|
|
1087
|
+
"time" : "2025-10-08T10:02:42.051Z",
|
|
1088
|
+
"message" : "https://codemie-preview.lab.epam.com:443 \"POST /code-assistant-api/v1/settings/project HTTP/1.1\" 200 41",
|
|
1089
|
+
"level" : "DEBUG",
|
|
1090
|
+
"itemId" : 111487
|
|
1091
|
+
}, {
|
|
1092
|
+
"id" : 4359894,
|
|
1093
|
+
"time" : "2025-10-08T10:02:42.052Z",
|
|
1094
|
+
"message" : "Received response with status 200",
|
|
1095
|
+
"level" : "DEBUG",
|
|
1096
|
+
"itemId" : 111487
|
|
1097
|
+
}, {
|
|
1098
|
+
"id" : 4359895,
|
|
1099
|
+
"time" : "2025-10-08T10:02:42.052Z",
|
|
1100
|
+
"message" : "Response datasource_type: <class 'dict'>",
|
|
1101
|
+
"level" : "DEBUG",
|
|
1102
|
+
"itemId" : 111487
|
|
1103
|
+
}, {
|
|
1104
|
+
"id" : 4359896,
|
|
1105
|
+
"time" : "2025-10-08T10:02:42.060Z",
|
|
1106
|
+
"message" : "Successfully processed /v1/settings/project request to <class 'dict'>",
|
|
1107
|
+
"level" : "INFO",
|
|
1108
|
+
"itemId" : 111487
|
|
1109
|
+
}, {
|
|
1110
|
+
"id" : 4359897,
|
|
1111
|
+
"time" : "2025-10-08T10:02:42.060Z",
|
|
1112
|
+
"message" : "Making /v1/settings/project request to https://codemie-preview.lab.epam.com/code-assistant-apityping.List[codemie_sdk.models.integration.Integration]",
|
|
1113
|
+
"level" : "DEBUG",
|
|
1114
|
+
"itemId" : 111487
|
|
1115
|
+
}, {
|
|
1116
|
+
"id" : 4359898,
|
|
1117
|
+
"time" : "2025-10-08T10:02:42.061Z",
|
|
1118
|
+
"message" : "Request params: {'page': 0, 'per_page': 200}",
|
|
1119
|
+
"level" : "DEBUG",
|
|
1120
|
+
"itemId" : 111487
|
|
1121
|
+
}, {
|
|
1122
|
+
"id" : 4359899,
|
|
1123
|
+
"time" : "2025-10-08T10:02:42.062Z",
|
|
1124
|
+
"message" : "Starting new HTTPS connection (1): codemie-preview.lab.epam.com:443",
|
|
1125
|
+
"level" : "DEBUG",
|
|
1126
|
+
"itemId" : 111487
|
|
1127
|
+
}, {
|
|
1128
|
+
"id" : 4359900,
|
|
1129
|
+
"time" : "2025-10-08T10:02:42.562Z",
|
|
1130
|
+
"message" : "https://codemie-preview.lab.epam.com:443 \"GET /code-assistant-api/v1/settings/project?page=0&per_page=200 HTTP/1.1\" 200 93345",
|
|
1131
|
+
"level" : "DEBUG",
|
|
1132
|
+
"itemId" : 111487
|
|
1133
|
+
}, {
|
|
1134
|
+
"id" : 4359901,
|
|
1135
|
+
"time" : "2025-10-08T10:02:42.573Z",
|
|
1136
|
+
"message" : "Received response with status 200",
|
|
1137
|
+
"level" : "DEBUG",
|
|
1138
|
+
"itemId" : 111487
|
|
1139
|
+
}, {
|
|
1140
|
+
"id" : 4359902,
|
|
1141
|
+
"time" : "2025-10-08T10:02:42.573Z",
|
|
1142
|
+
"message" : "Response datasource_type: <class 'dict'>",
|
|
1143
|
+
"level" : "DEBUG",
|
|
1144
|
+
"itemId" : 111487
|
|
1145
|
+
}, {
|
|
1146
|
+
"id" : 4359903,
|
|
1147
|
+
"time" : "2025-10-08T10:02:42.585Z",
|
|
1148
|
+
"message" : "Successfully processed /v1/settings/project request to typing.List[codemie_sdk.models.integration.Integration]",
|
|
1149
|
+
"level" : "INFO",
|
|
1150
|
+
"itemId" : 111487
|
|
1151
|
+
}, {
|
|
1152
|
+
"id" : 4359904,
|
|
1153
|
+
"time" : "2025-10-08T10:02:42.647Z",
|
|
1154
|
+
"message" : "Making /v1/settings/project request to https://codemie-preview.lab.epam.com/code-assistant-apityping.List[codemie_sdk.models.integration.Integration]",
|
|
1155
|
+
"level" : "DEBUG",
|
|
1156
|
+
"itemId" : 111487
|
|
1157
|
+
}, {
|
|
1158
|
+
"id" : 4359905,
|
|
1159
|
+
"time" : "2025-10-08T10:02:42.647Z",
|
|
1160
|
+
"message" : "Request params: {'page': 0, 'per_page': 200}",
|
|
1161
|
+
"level" : "DEBUG",
|
|
1162
|
+
"itemId" : 111487
|
|
1163
|
+
}, {
|
|
1164
|
+
"id" : 4359906,
|
|
1165
|
+
"time" : "2025-10-08T10:02:42.649Z",
|
|
1166
|
+
"message" : "Starting new HTTPS connection (1): codemie-preview.lab.epam.com:443",
|
|
1167
|
+
"level" : "DEBUG",
|
|
1168
|
+
"itemId" : 111487
|
|
1169
|
+
} ],
|
|
1170
|
+
"page" : {
|
|
1171
|
+
"number" : 1,
|
|
1172
|
+
"size" : 20,
|
|
1173
|
+
"totalElements" : 246,
|
|
1174
|
+
"totalPages" : 13
|
|
1175
|
+
}
|
|
1183
1176
|
}
|
|
1184
|
-
},
|
|
1185
1177
|
""",
|
|
1186
1178
|
),
|
|
1187
1179
|
(
|