-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathcommands.js
More file actions
423 lines (393 loc) · 13.4 KB
/
Copy pathcommands.js
File metadata and controls
423 lines (393 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
import { get } from 'lodash';
import chatFlowTemplateJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/chat.json';
import t2vJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/text2vega.json';
import t2vInstructionsJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/text2vega-with-instructions.json';
import queryAssistPPLJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/query-assist-ppl.json';
import data2summaryJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/data2summary.json';
import suggestADJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/suggest-ad.json';
import summaryJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/summary.json';
import summaryWithLogPatternJSON from '../../../fixtures/plugins/dashboards-assistant/flow-templates/summary_with_log_pattern.json';
import { BACKEND_BASE_PATH, BASE_PATH } from '../../constants';
import {
ML_COMMONS_API,
ASSISTANT_API,
FLOW_FRAMEWORK_API,
ASSISTANT_AGENT_NAME,
} from './constants';
import clusterSettings from '../../../fixtures/plugins/dashboards-assistant/cluster_settings.json';
import { apiRequest } from '../../helpers';
import {
certPrivateKeyContent,
certPublicKeyContent,
} from '../../../fixtures/plugins/dashboards-assistant/security-cert';
Cypress.Commands.add('addAssistantRequiredSettings', () => {
cy.request('PUT', `${BACKEND_BASE_PATH}/_cluster/settings`, clusterSettings);
});
const provisionedWorkflows = [];
const agents = [
{
type: 'os_chat_root_agent',
agentName: ASSISTANT_AGENT_NAME.CHAT,
flowTemplateJSON: chatFlowTemplateJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.TEXT2VEGA,
flowTemplateJSON: t2vJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.TEXT2VEGA_WITH_INSTRUCTIONS,
flowTemplateJSON: t2vInstructionsJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.QUERY_ASSISTANT_PPL,
flowTemplateJSON: queryAssistPPLJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.DATA2SUMMARY,
flowTemplateJSON: data2summaryJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.SUGGEST_AD,
flowTemplateJSON: suggestADJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.SUMMARY,
flowTemplateJSON: summaryJSON,
},
{
type: 'os_assistant_agent',
agentName: ASSISTANT_AGENT_NAME.SUMMARY_WITH_LOG_PATTERN,
flowTemplateJSON: summaryWithLogPatternJSON,
},
];
Cypress.Commands.add('prepareAssistantAgents', () => {
agents.forEach((agent) => {
cy.readOrRegisterRootAgent(agent);
});
});
Cypress.Commands.add(
'readOrRegisterRootAgent',
({ type, agentName, flowTemplateJSON }) =>
cy
.request({
url: `${BACKEND_BASE_PATH}${ML_COMMONS_API.AGENT_CONFIG.replace(
'<agent_name>',
agentName
)}`,
method: 'GET',
failOnStatusCode: false,
})
.then((resp) => {
const agentId = get(resp, 'body.configuration.agent_id');
if (agentId) {
cy.log(
`Already initialized agent: ${agentId}, skip the initialize step`
);
} else {
cy.log(`Agent id not initialized yet, set up agent`);
return cy.registerAgent({
flowTemplateJSON,
agentName,
type,
});
}
})
);
Cypress.Commands.add(
'requestPollUntil',
(requestConfig, predicate, options = {}) => {
const { timeout = 30000, interval = 1000 } = options;
const startTime = Date.now();
const attempt = () => {
// Check if we've exceeded timeout
if (Date.now() - startTime > timeout) {
throw new Error(
`Timed out after ${timeout}ms waiting for condition to be true`
);
}
return cy.request(requestConfig).then((response) => {
// If predicate returns true, we're done
if (predicate(response)) {
return response;
}
// Otherwise wait and try again
cy.wait(interval);
return attempt();
});
};
return attempt();
}
);
Cypress.Commands.add(
'registerAgent',
({ flowTemplateJSON, agentName, type }) => {
cy.request(
'POST',
`${BACKEND_BASE_PATH}${FLOW_FRAMEWORK_API.ROOT}`,
flowTemplateJSON
)
.then((resp) => {
return cy
.request(
'POST',
`${BACKEND_BASE_PATH}${FLOW_FRAMEWORK_API.PROVISION.replace(
'<workflow_id>',
resp.body.workflow_id
)}`
)
.then((resp) => {
const workflowId = resp.body.workflow_id;
provisionedWorkflows.push({ workflowId });
return workflowId;
});
})
.then((workflowId) =>
cy
.requestPollUntil(
{
method: 'GET',
url: `${BACKEND_BASE_PATH}${FLOW_FRAMEWORK_API.STATUS.replace(
'<workflow_id>',
workflowId
)}?all=true`,
},
(resp) => {
const { state, provisioning_progress: provisioningProgress } =
resp.body;
return state === 'COMPLETED' && provisioningProgress === 'DONE';
}
)
.then((resp) => {
const { resources_created: resourcesCreated } = resp.body;
const agentResource = resourcesCreated.find(
({
workflow_step_id: workflowStepId,
resource_type: resourceType,
}) => resourceType === 'agent_id' && workflowStepId === agentName
);
if (!agentResource) {
return new Error(
`Unable to find agent for ${agentName} in workflow ${workflowId}`
);
}
const agentId = agentResource.resource_id;
provisionedWorkflows
.filter((workflow) => workflow.workflowId === workflowId)
.forEach((workflow) => {
workflow.agentName = agentName;
});
return agentId;
})
)
.then((agentId) => cy.putAgentIdConfig({ type, agentName, agentId }));
}
);
Cypress.Commands.add('putAgentIdConfig', ({ type, agentName, agentId }) => {
const endpoint = `${BACKEND_BASE_PATH}${ML_COMMONS_API.ML_CONFIG_DOC.replace(
'<agent_name>',
agentName
)}`;
// When enabling the DATASOURCE-MANAGEment-ENABLED flag, we need to config the root agent ID in a no auth data source.
if (
Cypress.env('SECURITY_ENABLED') &&
!Cypress.env('DATASOURCE_MANAGEMENT_ENABLED')
) {
// The .plugins-ml-config index is a system index and need to call the API by using certificate file
if (Cypress.platform === 'win32') {
return cy.exec(
`bash -c "curl -k --cert '${Cypress.env(
'SECURITY_CERT_PATH'
)}' --key '${Cypress.env(
'SECURITY_KEY_PATH'
)}' -XPUT '${endpoint}' -H 'Content-Type: application/json' -d '{\\"type\\":\\"os_chat_root_agent\\",\\"configuration\\":{\\"agent_id\\":\\"${agentId}\\"}}'"`,
{ timeout: 30000 }
);
} else {
return cy.exec(
`curl -k --cert <(cat <<EOF \n${certPublicKeyContent}\nEOF\n) --key <(cat <<EOF\n${certPrivateKeyContent}\nEOF\n) -XPUT '${endpoint}' -H 'Content-Type: application/json' -d '{"type":"os_chat_root_agent","configuration":{"agent_id":"${agentId}"}}'`
);
}
} else {
return cy.request('PUT', endpoint, {
type,
configuration: {
agent_id: agentId,
},
});
}
});
Cypress.Commands.add('deleteAgentConfig', ({ agentName }) => {
const endpoint = `${BACKEND_BASE_PATH}${ML_COMMONS_API.ML_CONFIG_DOC.replace(
'<agent_name>',
agentName
)}`;
// When enabling the DATASOURCE-MANAGEment-ENABLED flag, we need to config the root agent ID in a no auth data source.
if (
Cypress.env('SECURITY_ENABLED') &&
!Cypress.env('DATASOURCE_MANAGEMENT_ENABLED')
) {
// The .plugins-ml-config index is a system index and need to call the API by using certificate file
if (Cypress.platform === 'win32') {
return cy.exec(
`bash -c "curl -k --cert '${Cypress.env(
'SECURITY_CERT_PATH'
)}' --key '${Cypress.env(
'SECURITY_KEY_PATH'
)}' -XDELETE '${endpoint}' -H 'Content-Type: application/json'"`,
{ timeout: 30000, failOnNonZeroExit: false }
);
} else {
return cy.exec(
`curl -k --cert <(cat <<EOF \n${certPublicKeyContent}\nEOF\n) --key <(cat <<EOF\n${certPrivateKeyContent}\nEOF\n) -XDELETE '${endpoint}' -H 'Content-Type: application/json'`
);
}
} else {
return cy.request({
method: 'DELETE',
url: endpoint,
failOnStatusCode: false,
});
}
});
Cypress.Commands.add('cleanProvisionedAgents', () => {
for (let i = 0; i < provisionedWorkflows.length; i++) {
const workflow = provisionedWorkflows[i];
cy.request(
'POST',
`${BACKEND_BASE_PATH}${FLOW_FRAMEWORK_API.DEPROVISION.replace(
'<workflow_id>',
workflow.workflowId
)}`
);
if (workflow.agentName) {
cy.deleteAgentConfig({
agentName: workflow.agentName,
});
}
}
/**
* wait for 2s
*/
cy.wait(2000);
});
Cypress.Commands.add('startDummyServer', () => {
// Not a good practice to start a server inside Cypress https://docs.cypress.io/guides/references/best-practices#Web-Servers
// But in out case, we need to reuse release e2e template and let's make it a tradeoff.
const isWindows = Cypress.platform === 'win32';
if (isWindows) {
cy.exec(
'bash -c "nohup yarn start-assistant-dummy-llm-server > /tmp/assistant-llm.log 2>&1 & echo $(cat /proc/$!/winpid) > /tmp/assistant-llm.winpid && sleep 1"',
{ timeout: 10000 }
);
} else {
cy.exec(
"nohup yarn start-assistant-dummy-llm-server > /tmp/assistant-llm.log 2>&1 & sleep 1 && ps -ef | grep [a]ssistant-dummy-llm.js | head -n 1 | awk '{print $2}' > /tmp/assistant-llm.pid",
{ timeout: 10000 }
);
}
// Wait for server to start and verify it's running
cy.wait(3000);
cy.exec(
'curl -s -o /dev/null -w "%{http_code}" http://localhost:3000 || echo "failed"',
{
failOnNonZeroExit: false,
}
).then((result) => {
cy.log(`Dummy LLM server status: ${result.stdout}`);
});
});
Cypress.Commands.add('stopDummyServer', () => {
const isWindows = Cypress.platform === 'win32';
if (isWindows) {
cy.exec(
'bash -c "pid=$(cat /tmp/assistant-llm.winpid); while child=$(wmic process where \\"ParentProcessId=$pid\\" get ProcessId 2>/dev/null | tail -2 | head -1 | tr -d \' \\r\') && [ -n \\"$child\\" ]; do pid=$child; done; taskkill //F //PID $pid"',
{ failOnNonZeroExit: false }
);
} else {
cy.exec('kill -9 $(cat /tmp/assistant-llm.pid) || true', {
failOnNonZeroExit: false,
});
}
});
Cypress.Commands.add('sendAssistantMessage', (body, dataSourceId) => {
const url = `${BASE_PATH}${ASSISTANT_API.SEND_MESSAGE}`;
const qs = { dataSourceId: dataSourceId };
apiRequest(url, 'POST', body, qs);
});
Cypress.Commands.add('deleteConversation', (conversationId, dataSourceId) => {
const url = `${BASE_PATH}${ASSISTANT_API.CONVERSATION}/${conversationId}`;
const qs = { dataSourceId: dataSourceId };
apiRequest(url, 'DELETE', undefined, qs);
});
Cypress.Commands.add('setDefaultDataSourceForAssistant', () => {
if (Cypress.env('DATASOURCE_MANAGEMENT_ENABLED')) {
cy.deleteAllDataSources();
// create data source
cy.createDataSourceNoAuth().then((result) => {
const dataSourceId = result[0];
// set default data source
cy.setDefaultDataSource(dataSourceId);
return cy.wrap(dataSourceId);
});
}
});
Cypress.Commands.add('clearDataSourceForAssistant', () => {
if (Cypress.env('DATASOURCE_MANAGEMENT_ENABLED')) {
cy.deleteAllDataSources();
}
});
Cypress.Commands.add('openAssistantChatbot', () => {
const maxAttempts = 5;
let attempts = 0;
function attemptOpen() {
if (attempts >= maxAttempts) {
throw new Error(`Failed to open chatbot after ${maxAttempts} attempts`);
}
attempts++;
// Wait for header to stabilize after potential re-renders
cy.wait(1000);
cy.get('button[aria-label="toggle chat flyout icon"]', { timeout: 60000 })
.should('exist')
.and('be.visible')
.click({ force: true });
cy.wait(500); // Wait for if flyout disappear
cy.get('body').then(($body) => {
if (!$body.find('.llm-chat-flyout').is(':visible')) {
cy.wait(1000); // Wait before trying again
attemptOpen();
}
});
}
attemptOpen();
cy.get('.llm-chat-flyout').should('exist').and('be.visible');
});
Cypress.Commands.add('startNewAssistantConversation', () => {
// Create a new conversation
cy.get('[aria-label="toggle chat context menu"]')
.should('be.visible')
.and('be.enabled')
.click();
cy.get('.euiContextMenuItem')
.contains('New conversation')
.should('be.visible')
.click({ force: true });
// Confirm the current conversation is new
cy.get('.llm-chat-flyout-body').within(() => {
cy.get('[aria-label="chat message bubble"]')
.should('have.length', 1)
.first()
.within(() => {
cy.get('[aria-label="chat welcome message"]').should('exist');
});
});
});