Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Obs AI Assistant] Serverless API integration tests #192219

Merged
merged 49 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
fa8d99f
config, knowledge base tests, chat tests
neptunian Sep 5, 2024
ec519e1
add connectors tests
neptunian Sep 6, 2024
e23f82a
add conversations tests
neptunian Sep 6, 2024
c9c90ad
skipped kb user instructions tests
neptunian Sep 6, 2024
46a408d
public_complete tests
neptunian Sep 6, 2024
f8abcd4
add complete
neptunian Sep 9, 2024
ed0def8
add BufferFlush as event type
neptunian Sep 9, 2024
373958d
unskip test
neptunian Sep 9, 2024
c7a80fb
Merge branch 'main' into serverless-tests
neptunian Sep 9, 2024
19bc673
add skipped summarize test and helpers
neptunian Sep 9, 2024
6ed95af
fix unskip test
neptunian Sep 9, 2024
1559e5b
add elasticsearch.spec.ts
neptunian Sep 9, 2024
23ac89e
Merge branch 'main' into serverless-tests
neptunian Sep 9, 2024
ff8dc82
fix lint error
neptunian Sep 9, 2024
5f25e28
Merge branch 'serverless-tests' of https://github.com/neptunian/kiban…
neptunian Sep 9, 2024
880e67c
fix ci type error
neptunian Sep 10, 2024
c41142c
Merge branch 'main' into serverless-tests
neptunian Sep 10, 2024
34117fc
use supertest without auth
neptunian Sep 11, 2024
67cf3ba
skip public complete tests
neptunian Sep 11, 2024
2eae7c0
unskip compelete test
neptunian Sep 11, 2024
e57eef9
skip on MKI 'when creating a conversation with the write user'
neptunian Sep 12, 2024
6fbc13f
skip tests using llmproxy
neptunian Sep 12, 2024
94ebcc8
skip conversation test
neptunian Sep 12, 2024
d8b3976
skip tests that depend on config modelId
neptunian Sep 12, 2024
2c39661
Merge branch 'main' into serverless-tests
neptunian Sep 12, 2024
28e523c
Merge branch 'main' into serverless-tests
neptunian Sep 13, 2024
925381e
skip kb test timing out when indexing entries
neptunian Sep 13, 2024
48e7ff7
Merge branch 'main' into serverless-tests
neptunian Sep 13, 2024
c3b32eb
Merge branch 'main' into serverless-tests
neptunian Sep 16, 2024
5bf0f8f
Merge branch 'main' into serverless-tests
neptunian Sep 16, 2024
e0289e3
logger detail and comments
neptunian Sep 16, 2024
2e8ff43
Merge branch 'serverless-tests' of https://github.com/neptunian/kiban…
neptunian Sep 16, 2024
299be68
unskip conversations and don't compare user
neptunian Sep 16, 2024
bf70156
fix conversations not cleaned up in public_complete
neptunian Sep 16, 2024
7bacda2
skip public_complete in mki using llm proxy
neptunian Sep 17, 2024
cdd7901
remove deleting ml indices, update comment
neptunian Sep 17, 2024
5de96ec
update paths for deleteKnowledgeBaseModel, share createKnowledgeBaseM…
neptunian Sep 17, 2024
4af20ab
Merge branch 'main' into serverless-tests
neptunian Sep 17, 2024
7b0ad92
Merge branch 'main' into serverless-tests
neptunian Sep 17, 2024
672ce27
Merge branch 'main' into serverless-tests
neptunian Sep 17, 2024
2d0e54d
update codeowners
neptunian Sep 17, 2024
835af9f
Merge branch 'serverless-tests' of https://github.com/neptunian/kiban…
neptunian Sep 17, 2024
b7a9e64
Merge branch 'main' into serverless-tests
neptunian Sep 17, 2024
4284818
Merge branch 'main' into serverless-tests
neptunian Sep 25, 2024
e63adfc
use optional chaining
neptunian Sep 25, 2024
c518762
fix type from new changes to complete route
neptunian Sep 26, 2024
55df2f2
more type fixes
neptunian Sep 26, 2024
c237b6d
fix type
neptunian Sep 26, 2024
3a6d421
Merge branch 'main' into serverless-tests
neptunian Sep 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .buildkite/ftr_oblt_serverless_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ enabled:
- x-pack/test_serverless/api_integration/test_suites/observability/config.feature_flags.ts
- x-pack/test_serverless/api_integration/test_suites/observability/common_configs/config.group1.ts
- x-pack/test_serverless/api_integration/test_suites/observability/fleet/config.ts
- x-pack/test_serverless/api_integration/test_suites/observability/ai_assistant/config.ts
- x-pack/test_serverless/functional/test_suites/observability/config.ts
- x-pack/test_serverless/functional/test_suites/observability/config.examples.ts
- x-pack/test_serverless/functional/test_suites/observability/config.feature_flags.ts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ export type StreamingChatResponseEvent =
| ConversationUpdateEvent
| MessageAddEvent
| ChatCompletionErrorEvent
| TokenCountEvent;
| TokenCountEvent
| BufferFlushEvent;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but it's intentionally not here to not overcomplicate the StreamingChatResponseEvent type

Copy link
Contributor Author

@neptunian neptunian Sep 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only added it due to causing a type error in complete.spec.ts due to filtering out BufferFlushEvents appearing in the data. Is it okay to leave it?


export type StreamingChatResponseEventWithoutError = Exclude<
StreamingChatResponseEvent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export interface RecalledEntry {
function isModelMissingOrUnavailableError(error: Error) {
return (
error instanceof errors.ResponseError &&
error.body &&
error.body.error &&
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it this a type error?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, if I recall, I was getting some errors in serverless that didn't have these props. I updated it to use optional chaining.

(error.body.error.type === 'resource_not_found_exception' ||
error.body.error.type === 'status_exception')
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import { ToolingLog } from '@kbn/tooling-log';
import type {
InternalRequestHeader,
RoleCredentials,
SupertestWithoutAuthProviderType,
} from '../../../../../shared/services';

export async function deleteActionConnector({
supertest,
connectorId,
log,
roleAuthc,
internalReqHeader,
}: {
supertest: SupertestWithoutAuthProviderType;
connectorId: string;
log: ToolingLog;
roleAuthc: RoleCredentials;
internalReqHeader: InternalRequestHeader;
}) {
try {
await supertest
.delete(`/api/actions/connector/${connectorId}`)
.set(roleAuthc.apiKeyHeader)
.set(internalReqHeader)
Comment on lines +31 to +32
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would it be possible to move the authentication part to a service?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but I will likely be removing them all in favor of cookie auth. See #192711. I am hoping to do it as part of that issue. The cookie auth was made available recently in #192727. We should only be using api keys for public apis. It should also allow us to use different users where as with the api key its always using the same user despite passing different roles.

.expect(204);
} catch (e) {
log.error(`Failed to delete action connector with id ${connectorId} due to: ${e}`);
throw e;
}
}

export async function createProxyActionConnector({
log,
supertest,
port,
roleAuthc,
internalReqHeader,
}: {
log: ToolingLog;
supertest: SupertestWithoutAuthProviderType;
port: number;
roleAuthc: RoleCredentials;
internalReqHeader: InternalRequestHeader;
}) {
try {
const res = await supertest
.post('/api/actions/connector')
.set(roleAuthc.apiKeyHeader)
.set(internalReqHeader)
.send({
name: 'OpenAI Proxy',
connector_type_id: '.gen-ai',
config: {
apiProvider: 'OpenAI',
apiUrl: `http://localhost:${port}`,
},
secrets: {
apiKey: 'my-api-key',
},
})
.expect(200);

const connectorId = res.body.id as string;
return connectorId;
} catch (e) {
log.error(`Failed to create action connector due to: ${e}`);
throw e;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import { GenericFtrProviderContext } from '@kbn/test';
import { InheritedServices, InheritedFtrProviderContext } from '../../../../services';
import { ObservabilityAIAssistantApiClient } from './observability_ai_assistant_api_client';

export type ObservabilityAIAssistantServices = InheritedServices & {
observabilityAIAssistantAPIClient: (
context: InheritedFtrProviderContext
) => Promise<ObservabilityAIAssistantApiClient>;
};

export type FtrProviderContext = GenericFtrProviderContext<ObservabilityAIAssistantServices, {}>;
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import type {
APIReturnType,
ObservabilityAIAssistantAPIClientRequestParamsOf,
ObservabilityAIAssistantAPIEndpoint,
} from '@kbn/observability-ai-assistant-plugin/public';
import { formatRequest } from '@kbn/server-route-repository';
import supertest from 'supertest';
import { Subtract } from 'utility-types';
import { format } from 'url';
import { Config, kbnTestConfig, kibanaTestSuperuserServerless } from '@kbn/test';
import { InheritedFtrProviderContext } from '../../../../services';
import type { InternalRequestHeader, RoleCredentials } from '../../../../../shared/services';

export function getObservabilityAIAssistantApiClient({
svlSharedConfig,
}: {
svlSharedConfig: Config;
}) {
const kibanaServer = svlSharedConfig.get('servers.kibana');
const cAuthorities = svlSharedConfig.get('servers.kibana.certificateAuthorities');

const username = kbnTestConfig.getUrlParts(kibanaTestSuperuserServerless).username;
const password = kbnTestConfig.getUrlParts(kibanaTestSuperuserServerless).password;

const url = format({
...kibanaServer,
auth: `${username}:${password}`,
});

return createObservabilityAIAssistantApiClient(supertest.agent(url, { ca: cAuthorities }));
}

type ObservabilityAIAssistantApiClientKey = 'slsUser';
export type ObservabilityAIAssistantApiClient = Record<
ObservabilityAIAssistantApiClientKey,
Awaited<ReturnType<typeof getObservabilityAIAssistantApiClient>>
>;
export function createObservabilityAIAssistantApiClient(st: supertest.Agent) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any way we can move this out into a separate package that can be shared across environments? I understand there's some serverless-specific stuff in here, but I'd guess there's also a lot of things that can be shared.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yea for sure. I'd like to do that as part of #192718. I've updated it to call this out specifically.

return <TEndpoint extends ObservabilityAIAssistantAPIEndpoint>(
options: {
type?: 'form-data';
endpoint: TEndpoint;
roleAuthc: RoleCredentials;
internalReqHeader: InternalRequestHeader;
} & ObservabilityAIAssistantAPIClientRequestParamsOf<TEndpoint> & {
params?: { query?: { _inspect?: boolean } };
}
): SupertestReturnType<TEndpoint> => {
const { endpoint, type, roleAuthc, internalReqHeader } = options;

const params = 'params' in options ? (options.params as Record<string, any>) : {};

const { method, pathname, version } = formatRequest(endpoint, params.path);
const url = format({ pathname, query: params?.query });

const headers: Record<string, string> = { ...internalReqHeader, ...roleAuthc.apiKeyHeader };

if (version) {
headers['Elastic-Api-Version'] = version;
}

let res: supertest.Test;
if (type === 'form-data') {
const fields: Array<[string, any]> = Object.entries(params.body);
const formDataRequest = st[method](url)
.set(headers)
.set('Content-type', 'multipart/form-data');

for (const field of fields) {
void formDataRequest.field(field[0], field[1]);
}

res = formDataRequest;
} else if (params.body) {
res = st[method](url).send(params.body).set(headers);
} else {
res = st[method](url).set(headers);
}

return res as unknown as SupertestReturnType<TEndpoint>;
};
}

export type ObservabilityAIAssistantAPIClient = ReturnType<
typeof createObservabilityAIAssistantApiClient
>;

type WithoutPromise<T extends Promise<any>> = Subtract<T, Promise<any>>;

// this is a little intense, but without it, method overrides are lost
// e.g., {
// end(one:string)
// end(one:string, two:string)
// }
// would lose the first signature. This keeps up to eight signatures.
type OverloadedParameters<T> = T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
(...args: infer A4): any;
(...args: infer A5): any;
(...args: infer A6): any;
(...args: infer A7): any;
(...args: infer A8): any;
}
? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
(...args: infer A4): any;
(...args: infer A5): any;
(...args: infer A6): any;
(...args: infer A7): any;
}
? A1 | A2 | A3 | A4 | A5 | A6 | A7
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
(...args: infer A4): any;
(...args: infer A5): any;
(...args: infer A6): any;
}
? A1 | A2 | A3 | A4 | A5 | A6
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
(...args: infer A4): any;
(...args: infer A5): any;
}
? A1 | A2 | A3 | A4 | A5
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
(...args: infer A4): any;
}
? A1 | A2 | A3 | A4
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
(...args: infer A3): any;
}
? A1 | A2 | A3
: T extends {
(...args: infer A1): any;
(...args: infer A2): any;
}
? A1 | A2
: T extends (...args: infer A) => any
? A
: any;

type OverrideReturnType<T extends (...args: any[]) => any, TNextReturnType> = (
...args: OverloadedParameters<T>
) => WithoutPromise<ReturnType<T>> & TNextReturnType;

type OverwriteThisMethods<T extends Record<string, any>, TNextReturnType> = TNextReturnType & {
[key in keyof T]: T[key] extends (...args: infer TArgs) => infer TReturnType
? TReturnType extends Promise<any>
? OverrideReturnType<T[key], TNextReturnType>
: (...args: TArgs) => TReturnType
: T[key];
};

export type SupertestReturnType<TEndpoint extends ObservabilityAIAssistantAPIEndpoint> =
OverwriteThisMethods<
WithoutPromise<supertest.Test>,
Promise<{
text: string;
status: number;
body: APIReturnType<TEndpoint>;
}>
>;

export async function getObservabilityAIAssistantApiClientService({
getService,
}: InheritedFtrProviderContext): Promise<ObservabilityAIAssistantApiClient> {
const svlSharedConfig = getService('config');

return {
slsUser: await getObservabilityAIAssistantApiClient({
svlSharedConfig,
}),
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import { SUPPORTED_TRAINED_MODELS } from '@kbn/test-suites-xpack/functional/services/ml/api';
import { createTestConfig } from '../../../config.base';
import { ObservabilityAIAssistantServices } from './common/ftr_provider_context';
import { services as inheritedServices } from '../../../services';
import { getObservabilityAIAssistantApiClientService } from './common/observability_ai_assistant_api_client';

export const services: ObservabilityAIAssistantServices = {
...inheritedServices,
observabilityAIAssistantAPIClient: getObservabilityAIAssistantApiClientService,
};

export default createTestConfig({
serverlessProject: 'oblt',
testFiles: [require.resolve('./tests')],
junit: {
reportName: 'Observability AI Assistant API Integration tests',
},
suiteTags: { exclude: ['skipSvlOblt'] },
services,

// include settings from project controller
// https://github.com/elastic/project-controller/blob/main/internal/project/observability/config/elasticsearch.yml
esServerArgs: ['xpack.ml.dfa.enabled=false'],
kbnServerArgs: [
`--xpack.observabilityAIAssistant.modelId=${SUPPORTED_TRAINED_MODELS.TINY_ELSER.name}`,
],
});
Loading