diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.plugin.setup.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.plugin.setup.md
index a0c9b38792825..1ed6059c23062 100644
--- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.plugin.setup.md
+++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.plugin.setup.md
@@ -7,7 +7,7 @@
Signature:
```typescript
-setup(core: CoreSetup, { expressions, uiActions, usageCollection }: DataSetupDependencies): DataPublicPluginSetup;
+setup(core: CoreSetup, { bfetch, expressions, uiActions, usageCollection }: DataSetupDependencies): DataPublicPluginSetup;
```
## Parameters
@@ -15,7 +15,7 @@ setup(core: CoreSetup, { expressio
| Parameter | Type | Description |
| --- | --- | --- |
| core | CoreSetup<DataStartDependencies, DataPublicPluginStart>
| |
-| { expressions, uiActions, usageCollection } | DataSetupDependencies
| |
+| { bfetch, expressions, uiActions, usageCollection } | DataSetupDependencies
| |
Returns:
diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.bfetch.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.bfetch.md
new file mode 100644
index 0000000000000..5b7c635c71529
--- /dev/null
+++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.bfetch.md
@@ -0,0 +1,11 @@
+
+
+[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [SearchInterceptorDeps](./kibana-plugin-plugins-data-public.searchinterceptordeps.md) > [bfetch](./kibana-plugin-plugins-data-public.searchinterceptordeps.bfetch.md)
+
+## SearchInterceptorDeps.bfetch property
+
+Signature:
+
+```typescript
+bfetch: BfetchPublicSetup;
+```
diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.md
index 3653394d28b92..543566b783c23 100644
--- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.md
+++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchinterceptordeps.md
@@ -14,6 +14,7 @@ export interface SearchInterceptorDeps
| Property | Type | Description |
| --- | --- | --- |
+| [bfetch](./kibana-plugin-plugins-data-public.searchinterceptordeps.bfetch.md) | BfetchPublicSetup
| |
| [http](./kibana-plugin-plugins-data-public.searchinterceptordeps.http.md) | CoreSetup['http']
| |
| [session](./kibana-plugin-plugins-data-public.searchinterceptordeps.session.md) | ISessionService
| |
| [startServices](./kibana-plugin-plugins-data-public.searchinterceptordeps.startservices.md) | Promise<[CoreStart, any, unknown]>
| |
diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.plugin.setup.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.plugin.setup.md
index 43129891c5412..b90018c3d9cdd 100644
--- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.plugin.setup.md
+++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.plugin.setup.md
@@ -7,7 +7,7 @@
Signature:
```typescript
-setup(core: CoreSetup, { expressions, usageCollection }: DataPluginSetupDependencies): {
+setup(core: CoreSetup, { bfetch, expressions, usageCollection }: DataPluginSetupDependencies): {
__enhance: (enhancements: DataEnhancements) => void;
search: ISearchSetup;
fieldFormats: {
@@ -21,7 +21,7 @@ setup(core: CoreSetup, { expressio
| Parameter | Type | Description |
| --- | --- | --- |
| core | CoreSetup<DataPluginStartDependencies, DataPluginStart>
| |
-| { expressions, usageCollection } | DataPluginSetupDependencies
| |
+| { bfetch, expressions, usageCollection } | DataPluginSetupDependencies
| |
Returns:
diff --git a/src/plugins/bfetch/public/batching/create_streaming_batched_function.test.ts b/src/plugins/bfetch/public/batching/create_streaming_batched_function.test.ts
index da6c940c48d0a..57a7d7fc4f8cb 100644
--- a/src/plugins/bfetch/public/batching/create_streaming_batched_function.test.ts
+++ b/src/plugins/bfetch/public/batching/create_streaming_batched_function.test.ts
@@ -19,7 +19,7 @@
import { createStreamingBatchedFunction } from './create_streaming_batched_function';
import { fetchStreaming as fetchStreamingReal } from '../streaming/fetch_streaming';
-import { defer, of } from '../../../kibana_utils/public';
+import { AbortError, defer, of } from '../../../kibana_utils/public';
import { Subject } from 'rxjs';
const getPromiseState = (promise: Promise): Promise<'resolved' | 'rejected' | 'pending'> =>
@@ -168,6 +168,28 @@ describe('createStreamingBatchedFunction()', () => {
expect(fetchStreaming).toHaveBeenCalledTimes(1);
});
+ test('ignores a request with an aborted signal', async () => {
+ const { fetchStreaming } = setup();
+ const fn = createStreamingBatchedFunction({
+ url: '/test',
+ fetchStreaming,
+ maxItemAge: 5,
+ flushOnMaxItems: 3,
+ });
+
+ const abortController = new AbortController();
+ abortController.abort();
+
+ of(fn({ foo: 'bar' }, abortController.signal));
+ fn({ baz: 'quix' });
+
+ await new Promise((r) => setTimeout(r, 6));
+ const { body } = fetchStreaming.mock.calls[0][0];
+ expect(JSON.parse(body)).toEqual({
+ batch: [{ baz: 'quix' }],
+ });
+ });
+
test('sends POST request to correct endpoint with items in array batched sorted in call order', async () => {
const { fetchStreaming } = setup();
const fn = createStreamingBatchedFunction({
@@ -423,6 +445,73 @@ describe('createStreamingBatchedFunction()', () => {
expect(result3).toEqual({ b: '3' });
});
+ describe('when requests are aborted', () => {
+ test('aborts stream when all are aborted', async () => {
+ const { fetchStreaming } = setup();
+ const fn = createStreamingBatchedFunction({
+ url: '/test',
+ fetchStreaming,
+ maxItemAge: 5,
+ flushOnMaxItems: 3,
+ });
+
+ const abortController = new AbortController();
+ const promise = fn({ a: '1' }, abortController.signal);
+ const promise2 = fn({ a: '2' }, abortController.signal);
+ await new Promise((r) => setTimeout(r, 6));
+
+ expect(await isPending(promise)).toBe(true);
+ expect(await isPending(promise2)).toBe(true);
+
+ abortController.abort();
+ await new Promise((r) => setTimeout(r, 6));
+
+ expect(await isPending(promise)).toBe(false);
+ expect(await isPending(promise2)).toBe(false);
+ const [, error] = await of(promise);
+ const [, error2] = await of(promise2);
+ expect(error).toBeInstanceOf(AbortError);
+ expect(error2).toBeInstanceOf(AbortError);
+ expect(fetchStreaming.mock.calls[0][0].signal.aborted).toBeTruthy();
+ });
+
+ test('rejects promise on abort and lets others continue', async () => {
+ const { fetchStreaming, stream } = setup();
+ const fn = createStreamingBatchedFunction({
+ url: '/test',
+ fetchStreaming,
+ maxItemAge: 5,
+ flushOnMaxItems: 3,
+ });
+
+ const abortController = new AbortController();
+ const promise = fn({ a: '1' }, abortController.signal);
+ const promise2 = fn({ a: '2' });
+ await new Promise((r) => setTimeout(r, 6));
+
+ expect(await isPending(promise)).toBe(true);
+
+ abortController.abort();
+ await new Promise((r) => setTimeout(r, 6));
+
+ expect(await isPending(promise)).toBe(false);
+ const [, error] = await of(promise);
+ expect(error).toBeInstanceOf(AbortError);
+
+ stream.next(
+ JSON.stringify({
+ id: 1,
+ result: { b: '2' },
+ }) + '\n'
+ );
+
+ await new Promise((r) => setTimeout(r, 1));
+
+ const [result2] = await of(promise2);
+ expect(result2).toEqual({ b: '2' });
+ });
+ });
+
describe('when stream closes prematurely', () => {
test('rejects pending promises with CONNECTION error code', async () => {
const { fetchStreaming, stream } = setup();
diff --git a/src/plugins/bfetch/public/batching/create_streaming_batched_function.ts b/src/plugins/bfetch/public/batching/create_streaming_batched_function.ts
index 89793fff6b325..4ff12dda1f98e 100644
--- a/src/plugins/bfetch/public/batching/create_streaming_batched_function.ts
+++ b/src/plugins/bfetch/public/batching/create_streaming_batched_function.ts
@@ -17,7 +17,7 @@
* under the License.
*/
-import { defer, Defer } from '../../../kibana_utils/public';
+import { AbortError, abortSignalToPromise, defer } from '../../../kibana_utils/public';
import {
ItemBufferParams,
TimedItemBufferParams,
@@ -27,13 +27,7 @@ import {
} from '../../common';
import { fetchStreaming, split } from '../streaming';
import { normalizeError } from '../../common';
-
-export interface BatchItem {
- payload: Payload;
- future: Defer;
-}
-
-export type BatchedFunc = (payload: Payload) => Promise;
+import { BatchedFunc, BatchItem } from './types';
export interface BatchedFunctionProtocolError extends ErrorLike {
code: string;
@@ -82,32 +76,67 @@ export const createStreamingBatchedFunction = (
flushOnMaxItems = 25,
maxItemAge = 10,
} = params;
- const [fn] = createBatchedFunction, BatchItem>({
- onCall: (payload: Payload) => {
+ const [fn] = createBatchedFunction({
+ onCall: (payload: Payload, signal?: AbortSignal) => {
const future = defer();
const entry: BatchItem = {
payload,
future,
+ signal,
};
return [future.promise, entry];
},
onBatch: async (items) => {
try {
- let responsesReceived = 0;
- const batch = items.map(({ payload }) => payload);
+ // Filter out any items whose signal is already aborted
+ items = items.filter((item) => {
+ if (item.signal?.aborted) item.future.reject(new AbortError());
+ return !item.signal?.aborted;
+ });
+
+ const donePromises: Array> = items.map((item) => {
+ return new Promise((resolve) => {
+ const { promise: abortPromise, cleanup } = item.signal
+ ? abortSignalToPromise(item.signal)
+ : {
+ promise: undefined,
+ cleanup: () => {},
+ };
+
+ const onDone = () => {
+ resolve();
+ cleanup();
+ };
+ if (abortPromise)
+ abortPromise.catch(() => {
+ item.future.reject(new AbortError());
+ onDone();
+ });
+ item.future.promise.then(onDone, onDone);
+ });
+ });
+
+ // abort when all items were either resolved, rejected or aborted
+ const abortController = new AbortController();
+ let isBatchDone = false;
+ Promise.all(donePromises).then(() => {
+ isBatchDone = true;
+ abortController.abort();
+ });
+ const batch = items.map((item) => item.payload);
+
const { stream } = fetchStreamingInjected({
url,
body: JSON.stringify({ batch }),
method: 'POST',
+ signal: abortController.signal,
});
stream.pipe(split('\n')).subscribe({
next: (json: string) => {
const response = JSON.parse(json) as BatchResponseItem;
if (response.error) {
- responsesReceived++;
items[response.id].future.reject(response.error);
} else if (response.result !== undefined) {
- responsesReceived++;
items[response.id].future.resolve(response.result);
}
},
@@ -117,8 +146,7 @@ export const createStreamingBatchedFunction = (
for (const { future } of items) future.reject(normalizedError);
},
complete: () => {
- const streamTerminatedPrematurely = responsesReceived !== items.length;
- if (streamTerminatedPrematurely) {
+ if (!isBatchDone) {
const error: BatchedFunctionProtocolError = {
message: 'Connection terminated prematurely.',
code: 'CONNECTION',
diff --git a/src/plugins/bfetch/public/batching/types.ts b/src/plugins/bfetch/public/batching/types.ts
new file mode 100644
index 0000000000000..68860c5d9eedf
--- /dev/null
+++ b/src/plugins/bfetch/public/batching/types.ts
@@ -0,0 +1,31 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { Defer } from '../../../kibana_utils/public';
+
+export interface BatchItem {
+ payload: Payload;
+ future: Defer;
+ signal?: AbortSignal;
+}
+
+export type BatchedFunc = (
+ payload: Payload,
+ signal?: AbortSignal
+) => Promise;
diff --git a/src/plugins/bfetch/public/index.ts b/src/plugins/bfetch/public/index.ts
index 8707e5a438159..7ff110105faa0 100644
--- a/src/plugins/bfetch/public/index.ts
+++ b/src/plugins/bfetch/public/index.ts
@@ -23,6 +23,8 @@ import { BfetchPublicPlugin } from './plugin';
export { BfetchPublicSetup, BfetchPublicStart, BfetchPublicContract } from './plugin';
export { split } from './streaming';
+export { BatchedFunc } from './batching/types';
+
export function plugin(initializerContext: PluginInitializerContext) {
return new BfetchPublicPlugin(initializerContext);
}
diff --git a/src/plugins/bfetch/public/plugin.ts b/src/plugins/bfetch/public/plugin.ts
index 5f01957c0908e..72aaa862b0ad2 100644
--- a/src/plugins/bfetch/public/plugin.ts
+++ b/src/plugins/bfetch/public/plugin.ts
@@ -22,9 +22,9 @@ import { fetchStreaming as fetchStreamingStatic, FetchStreamingParams } from './
import { removeLeadingSlash } from '../common';
import {
createStreamingBatchedFunction,
- BatchedFunc,
StreamingBatchedFunctionParams,
} from './batching/create_streaming_batched_function';
+import { BatchedFunc } from './batching/types';
// eslint-disable-next-line
export interface BfetchPublicSetupDependencies {}
diff --git a/src/plugins/bfetch/public/streaming/fetch_streaming.test.ts b/src/plugins/bfetch/public/streaming/fetch_streaming.test.ts
index 27adc6dc8b549..7a6827b8fee8e 100644
--- a/src/plugins/bfetch/public/streaming/fetch_streaming.test.ts
+++ b/src/plugins/bfetch/public/streaming/fetch_streaming.test.ts
@@ -132,6 +132,33 @@ test('completes stream observable when request finishes', async () => {
expect(spy).toHaveBeenCalledTimes(1);
});
+test('completes stream observable when aborted', async () => {
+ const env = setup();
+ const abort = new AbortController();
+ const { stream } = fetchStreaming({
+ url: 'http://example.com',
+ signal: abort.signal,
+ });
+
+ const spy = jest.fn();
+ stream.subscribe({
+ complete: spy,
+ });
+
+ expect(spy).toHaveBeenCalledTimes(0);
+
+ (env.xhr as any).responseText = 'foo';
+ env.xhr.onprogress!({} as any);
+
+ abort.abort();
+
+ (env.xhr as any).readyState = 4;
+ (env.xhr as any).status = 200;
+ env.xhr.onreadystatechange!({} as any);
+
+ expect(spy).toHaveBeenCalledTimes(1);
+});
+
test('promise throws when request errors', async () => {
const env = setup();
const { stream } = fetchStreaming({
diff --git a/src/plugins/bfetch/public/streaming/fetch_streaming.ts b/src/plugins/bfetch/public/streaming/fetch_streaming.ts
index 899e8a1824a41..3deee0cf66add 100644
--- a/src/plugins/bfetch/public/streaming/fetch_streaming.ts
+++ b/src/plugins/bfetch/public/streaming/fetch_streaming.ts
@@ -24,6 +24,7 @@ export interface FetchStreamingParams {
headers?: Record;
method?: 'GET' | 'POST';
body?: string;
+ signal?: AbortSignal;
}
/**
@@ -35,6 +36,7 @@ export function fetchStreaming({
headers = {},
method = 'POST',
body = '',
+ signal,
}: FetchStreamingParams) {
const xhr = new window.XMLHttpRequest();
@@ -45,7 +47,7 @@ export function fetchStreaming({
// Set the HTTP headers
Object.entries(headers).forEach(([k, v]) => xhr.setRequestHeader(k, v));
- const stream = fromStreamingXhr(xhr);
+ const stream = fromStreamingXhr(xhr, signal);
// Send the payload to the server
xhr.send(body);
diff --git a/src/plugins/bfetch/public/streaming/from_streaming_xhr.test.ts b/src/plugins/bfetch/public/streaming/from_streaming_xhr.test.ts
index 40eb3d5e2556b..b15bf9bdfbbb0 100644
--- a/src/plugins/bfetch/public/streaming/from_streaming_xhr.test.ts
+++ b/src/plugins/bfetch/public/streaming/from_streaming_xhr.test.ts
@@ -21,6 +21,7 @@ import { fromStreamingXhr } from './from_streaming_xhr';
const createXhr = (): XMLHttpRequest =>
(({
+ abort: () => {},
onprogress: () => {},
onreadystatechange: () => {},
readyState: 0,
@@ -100,6 +101,39 @@ test('completes observable when request reaches end state', () => {
expect(complete).toHaveBeenCalledTimes(1);
});
+test('completes observable when aborted', () => {
+ const xhr = createXhr();
+ const abortController = new AbortController();
+ const observable = fromStreamingXhr(xhr, abortController.signal);
+
+ const next = jest.fn();
+ const complete = jest.fn();
+ observable.subscribe({
+ next,
+ complete,
+ });
+
+ (xhr as any).responseText = '1';
+ xhr.onprogress!({} as any);
+
+ (xhr as any).responseText = '2';
+ xhr.onprogress!({} as any);
+
+ expect(complete).toHaveBeenCalledTimes(0);
+
+ (xhr as any).readyState = 2;
+ abortController.abort();
+
+ expect(complete).toHaveBeenCalledTimes(1);
+
+ // Shouldn't trigger additional events
+ (xhr as any).readyState = 4;
+ (xhr as any).status = 200;
+ xhr.onreadystatechange!({} as any);
+
+ expect(complete).toHaveBeenCalledTimes(1);
+});
+
test('errors observable if request returns with error', () => {
const xhr = createXhr();
const observable = fromStreamingXhr(xhr);
diff --git a/src/plugins/bfetch/public/streaming/from_streaming_xhr.ts b/src/plugins/bfetch/public/streaming/from_streaming_xhr.ts
index bba8151958492..5df1f5258cb2d 100644
--- a/src/plugins/bfetch/public/streaming/from_streaming_xhr.ts
+++ b/src/plugins/bfetch/public/streaming/from_streaming_xhr.ts
@@ -26,13 +26,17 @@ import { Observable, Subject } from 'rxjs';
export const fromStreamingXhr = (
xhr: Pick<
XMLHttpRequest,
- 'onprogress' | 'onreadystatechange' | 'readyState' | 'status' | 'responseText'
- >
+ 'onprogress' | 'onreadystatechange' | 'readyState' | 'status' | 'responseText' | 'abort'
+ >,
+ signal?: AbortSignal
): Observable => {
const subject = new Subject();
let index = 0;
+ let aborted = false;
const processBatch = () => {
+ if (aborted) return;
+
const { responseText } = xhr;
if (index >= responseText.length) return;
subject.next(responseText.substr(index));
@@ -41,7 +45,19 @@ export const fromStreamingXhr = (
xhr.onprogress = processBatch;
+ const onBatchAbort = () => {
+ if (xhr.readyState !== 4) {
+ aborted = true;
+ xhr.abort();
+ subject.complete();
+ if (signal) signal.removeEventListener('abort', onBatchAbort);
+ }
+ };
+
+ if (signal) signal.addEventListener('abort', onBatchAbort);
+
xhr.onreadystatechange = () => {
+ if (aborted) return;
// Older browsers don't support onprogress, so we need
// to call this here, too. It's safe to call this multiple
// times even for the same progress event.
@@ -49,6 +65,8 @@ export const fromStreamingXhr = (
// 4 is the magic number that means the request is done
if (xhr.readyState === 4) {
+ if (signal) signal.removeEventListener('abort', onBatchAbort);
+
// 0 indicates a network failure. 400+ messages are considered server errors
if (xhr.status === 0 || xhr.status >= 400) {
subject.error(new Error(`Batch request failed with status ${xhr.status}`));
diff --git a/src/plugins/data/kibana.json b/src/plugins/data/kibana.json
index d6f2534bd5e3b..3e4d08c8faa1b 100644
--- a/src/plugins/data/kibana.json
+++ b/src/plugins/data/kibana.json
@@ -4,6 +4,7 @@
"server": true,
"ui": true,
"requiredPlugins": [
+ "bfetch",
"expressions",
"uiActions"
],
diff --git a/src/plugins/data/public/plugin.ts b/src/plugins/data/public/plugin.ts
index 4334774300698..0e2920668236f 100644
--- a/src/plugins/data/public/plugin.ts
+++ b/src/plugins/data/public/plugin.ts
@@ -106,7 +106,7 @@ export class DataPublicPlugin
public setup(
core: CoreSetup,
- { expressions, uiActions, usageCollection }: DataSetupDependencies
+ { bfetch, expressions, uiActions, usageCollection }: DataSetupDependencies
): DataPublicPluginSetup {
const startServices = createStartServicesGetter(core.getStartServices);
@@ -153,6 +153,7 @@ export class DataPublicPlugin
);
const searchService = this.searchService.setup(core, {
+ bfetch,
usageCollection,
expressions,
});
diff --git a/src/plugins/data/public/public.api.md b/src/plugins/data/public/public.api.md
index 8b32e37511ef6..11f7210b8e619 100644
--- a/src/plugins/data/public/public.api.md
+++ b/src/plugins/data/public/public.api.md
@@ -12,6 +12,7 @@ import { ApiResponse as ApiResponse_2 } from '@elastic/elasticsearch/lib/Transpo
import { ApplicationStart } from 'kibana/public';
import { Assign } from '@kbn/utility-types';
import { BehaviorSubject } from 'rxjs';
+import { BfetchPublicSetup } from 'src/plugins/bfetch/public';
import Boom from '@hapi/boom';
import { CoreSetup } from 'src/core/public';
import { CoreSetup as CoreSetup_2 } from 'kibana/public';
@@ -1734,7 +1735,7 @@ export class Plugin implements Plugin_2);
// (undocumented)
- setup(core: CoreSetup, { expressions, uiActions, usageCollection }: DataSetupDependencies): DataPublicPluginSetup;
+ setup(core: CoreSetup, { bfetch, expressions, uiActions, usageCollection }: DataSetupDependencies): DataPublicPluginSetup;
// (undocumented)
start(core: CoreStart_2, { uiActions }: DataStartDependencies): DataPublicPluginStart;
// (undocumented)
@@ -2109,6 +2110,8 @@ export class SearchInterceptor {
//
// @public (undocumented)
export interface SearchInterceptorDeps {
+ // (undocumented)
+ bfetch: BfetchPublicSetup;
// (undocumented)
http: CoreSetup_2['http'];
// (undocumented)
diff --git a/src/plugins/data/public/search/search_interceptor.test.ts b/src/plugins/data/public/search/search_interceptor.test.ts
index 60274261da25f..bb5d3f58e6c1e 100644
--- a/src/plugins/data/public/search/search_interceptor.test.ts
+++ b/src/plugins/data/public/search/search_interceptor.test.ts
@@ -25,9 +25,13 @@ import { AbortError } from '../../../kibana_utils/public';
import { SearchTimeoutError, PainlessError, TimeoutErrorMode } from './errors';
import { searchServiceMock } from './mocks';
import { ISearchStart } from '.';
+import { bfetchPluginMock } from '../../../bfetch/public/mocks';
+import { BfetchPublicSetup } from 'src/plugins/bfetch/public';
let searchInterceptor: SearchInterceptor;
let mockCoreSetup: MockedKeys;
+let bfetchSetup: jest.Mocked;
+let fetchMock: jest.Mock;
const flushPromises = () => new Promise((resolve) => setImmediate(resolve));
jest.useFakeTimers();
@@ -39,7 +43,11 @@ describe('SearchInterceptor', () => {
mockCoreSetup = coreMock.createSetup();
mockCoreStart = coreMock.createStart();
searchMock = searchServiceMock.createStartContract();
+ fetchMock = jest.fn();
+ bfetchSetup = bfetchPluginMock.createSetupContract();
+ bfetchSetup.batchedFunction.mockReturnValue(fetchMock);
searchInterceptor = new SearchInterceptor({
+ bfetch: bfetchSetup,
toasts: mockCoreSetup.notifications.toasts,
startServices: new Promise((resolve) => {
resolve([mockCoreStart, {}, {}]);
@@ -94,7 +102,7 @@ describe('SearchInterceptor', () => {
describe('search', () => {
test('Observable should resolve if fetch is successful', async () => {
const mockResponse: any = { result: 200 };
- mockCoreSetup.http.fetch.mockResolvedValueOnce(mockResponse);
+ fetchMock.mockResolvedValueOnce(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -105,7 +113,7 @@ describe('SearchInterceptor', () => {
describe('Should throw typed errors', () => {
test('Observable should fail if fetch has an internal error', async () => {
const mockResponse: any = new Error('Internal Error');
- mockCoreSetup.http.fetch.mockRejectedValue(mockResponse);
+ fetchMock.mockRejectedValue(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -121,7 +129,7 @@ describe('SearchInterceptor', () => {
message: 'Request timed out',
},
};
- mockCoreSetup.http.fetch.mockRejectedValueOnce(mockResponse);
+ fetchMock.mockRejectedValueOnce(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -137,7 +145,7 @@ describe('SearchInterceptor', () => {
message: 'Request timed out',
},
};
- mockCoreSetup.http.fetch.mockRejectedValue(mockResponse);
+ fetchMock.mockRejectedValue(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -158,7 +166,7 @@ describe('SearchInterceptor', () => {
message: 'Request timed out',
},
};
- mockCoreSetup.http.fetch.mockRejectedValue(mockResponse);
+ fetchMock.mockRejectedValue(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -179,7 +187,7 @@ describe('SearchInterceptor', () => {
message: 'Request timed out',
},
};
- mockCoreSetup.http.fetch.mockRejectedValue(mockResponse);
+ fetchMock.mockRejectedValue(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -212,7 +220,7 @@ describe('SearchInterceptor', () => {
},
},
};
- mockCoreSetup.http.fetch.mockRejectedValueOnce(mockResponse);
+ fetchMock.mockRejectedValueOnce(mockResponse);
const mockRequest: IEsSearchRequest = {
params: {},
};
@@ -222,7 +230,7 @@ describe('SearchInterceptor', () => {
test('Observable should fail if user aborts (test merged signal)', async () => {
const abortController = new AbortController();
- mockCoreSetup.http.fetch.mockImplementationOnce((options: any) => {
+ fetchMock.mockImplementationOnce((options: any) => {
return new Promise((resolve, reject) => {
options.signal.addEventListener('abort', () => {
reject(new AbortError());
@@ -260,7 +268,7 @@ describe('SearchInterceptor', () => {
const error = (e: any) => {
expect(e).toBeInstanceOf(AbortError);
- expect(mockCoreSetup.http.fetch).not.toBeCalled();
+ expect(fetchMock).not.toBeCalled();
done();
};
response.subscribe({ error });
diff --git a/src/plugins/data/public/search/search_interceptor.ts b/src/plugins/data/public/search/search_interceptor.ts
index 3fadb723b27cd..ab43a48c7ec77 100644
--- a/src/plugins/data/public/search/search_interceptor.ts
+++ b/src/plugins/data/public/search/search_interceptor.ts
@@ -17,17 +17,17 @@
* under the License.
*/
-import { get, memoize, trimEnd } from 'lodash';
+import { get, memoize } from 'lodash';
import { BehaviorSubject, throwError, timer, defer, from, Observable, NEVER } from 'rxjs';
import { catchError, finalize } from 'rxjs/operators';
import { PublicMethodsOf } from '@kbn/utility-types';
import { CoreStart, CoreSetup, ToastsSetup } from 'kibana/public';
import { i18n } from '@kbn/i18n';
+import { BatchedFunc, BfetchPublicSetup } from 'src/plugins/bfetch/public';
import {
IKibanaSearchRequest,
IKibanaSearchResponse,
ISearchOptions,
- ES_SEARCH_STRATEGY,
ISessionService,
} from '../../common';
import { SearchUsageCollector } from './collectors';
@@ -44,6 +44,7 @@ import { toMountPoint } from '../../../kibana_react/public';
import { AbortError, getCombinedAbortSignal } from '../../../kibana_utils/public';
export interface SearchInterceptorDeps {
+ bfetch: BfetchPublicSetup;
http: CoreSetup['http'];
uiSettings: CoreSetup['uiSettings'];
startServices: Promise<[CoreStart, any, unknown]>;
@@ -69,6 +70,10 @@ export class SearchInterceptor {
* @internal
*/
protected application!: CoreStart['application'];
+ private batchedFetch!: BatchedFunc<
+ { request: IKibanaSearchRequest; options: ISearchOptions },
+ IKibanaSearchResponse
+ >;
/*
* @internal
@@ -79,6 +84,10 @@ export class SearchInterceptor {
this.deps.startServices.then(([coreStart]) => {
this.application = coreStart.application;
});
+
+ this.batchedFetch = deps.bfetch.batchedFunction({
+ url: '/internal/bsearch',
+ });
}
/*
@@ -128,24 +137,14 @@ export class SearchInterceptor {
request: IKibanaSearchRequest,
options?: ISearchOptions
): Promise {
- const { id, ...searchRequest } = request;
- const path = trimEnd(
- `/internal/search/${options?.strategy ?? ES_SEARCH_STRATEGY}/${id ?? ''}`,
- '/'
+ const { abortSignal, ...requestOptions } = options || {};
+ return this.batchedFetch(
+ {
+ request,
+ options: requestOptions,
+ },
+ abortSignal
);
- const body = JSON.stringify({
- sessionId: options?.sessionId,
- isStored: options?.isStored,
- isRestore: options?.isRestore,
- ...searchRequest,
- });
-
- return this.deps.http.fetch({
- method: 'POST',
- path,
- body,
- signal: options?.abortSignal,
- });
}
/**
diff --git a/src/plugins/data/public/search/search_service.test.ts b/src/plugins/data/public/search/search_service.test.ts
index 20041a02067d9..3179da4d03a1a 100644
--- a/src/plugins/data/public/search/search_service.test.ts
+++ b/src/plugins/data/public/search/search_service.test.ts
@@ -21,6 +21,7 @@ import { coreMock } from '../../../../core/public/mocks';
import { CoreSetup, CoreStart } from '../../../../core/public';
import { SearchService, SearchServiceSetupDependencies } from './search_service';
+import { bfetchPluginMock } from '../../../bfetch/public/mocks';
describe('Search service', () => {
let searchService: SearchService;
@@ -39,8 +40,10 @@ describe('Search service', () => {
describe('setup()', () => {
it('exposes proper contract', async () => {
+ const bfetch = bfetchPluginMock.createSetupContract();
const setup = searchService.setup(mockCoreSetup, ({
packageInfo: { version: '8' },
+ bfetch,
expressions: { registerFunction: jest.fn(), registerType: jest.fn() },
} as unknown) as SearchServiceSetupDependencies);
expect(setup).toHaveProperty('aggs');
diff --git a/src/plugins/data/public/search/search_service.ts b/src/plugins/data/public/search/search_service.ts
index 96fb3f91ea85f..b76b5846d3d93 100644
--- a/src/plugins/data/public/search/search_service.ts
+++ b/src/plugins/data/public/search/search_service.ts
@@ -19,6 +19,7 @@
import { Plugin, CoreSetup, CoreStart, PluginInitializerContext } from 'src/core/public';
import { BehaviorSubject } from 'rxjs';
+import { BfetchPublicSetup } from 'src/plugins/bfetch/public';
import { ISearchSetup, ISearchStart, SearchEnhancements } from './types';
import { handleResponse } from './fetch';
@@ -49,6 +50,7 @@ import { aggShardDelay } from '../../common/search/aggs/buckets/shard_delay_fn';
/** @internal */
export interface SearchServiceSetupDependencies {
+ bfetch: BfetchPublicSetup;
expressions: ExpressionsSetup;
usageCollection?: UsageCollectionSetup;
}
@@ -70,7 +72,7 @@ export class SearchService implements Plugin {
public setup(
{ http, getStartServices, notifications, uiSettings }: CoreSetup,
- { expressions, usageCollection }: SearchServiceSetupDependencies
+ { bfetch, expressions, usageCollection }: SearchServiceSetupDependencies
): ISearchSetup {
this.usageCollector = createUsageCollector(getStartServices, usageCollection);
@@ -80,6 +82,7 @@ export class SearchService implements Plugin {
* all pending search requests, as well as getting the number of pending search requests.
*/
this.searchInterceptor = new SearchInterceptor({
+ bfetch,
toasts: notifications.toasts,
http,
uiSettings,
diff --git a/src/plugins/data/public/types.ts b/src/plugins/data/public/types.ts
index 21a03a49fe058..4082fbe55094c 100644
--- a/src/plugins/data/public/types.ts
+++ b/src/plugins/data/public/types.ts
@@ -19,6 +19,7 @@
import React from 'react';
import { CoreStart } from 'src/core/public';
+import { BfetchPublicSetup } from 'src/plugins/bfetch/public';
import { IStorageWrapper } from 'src/plugins/kibana_utils/public';
import { ExpressionsSetup } from 'src/plugins/expressions/public';
import { UiActionsSetup, UiActionsStart } from 'src/plugins/ui_actions/public';
@@ -36,6 +37,7 @@ export interface DataPublicPluginEnhancements {
}
export interface DataSetupDependencies {
+ bfetch: BfetchPublicSetup;
expressions: ExpressionsSetup;
uiActions: UiActionsSetup;
usageCollection?: UsageCollectionSetup;
diff --git a/src/plugins/data/server/plugin.ts b/src/plugins/data/server/plugin.ts
index 3ec4e7e64e382..bba2c368ff7d1 100644
--- a/src/plugins/data/server/plugin.ts
+++ b/src/plugins/data/server/plugin.ts
@@ -19,6 +19,7 @@
import { PluginInitializerContext, CoreSetup, CoreStart, Plugin, Logger } from 'src/core/server';
import { ExpressionsServerSetup } from 'src/plugins/expressions/server';
+import { BfetchServerSetup } from 'src/plugins/bfetch/server';
import { ConfigSchema } from '../config';
import { IndexPatternsService, IndexPatternsServiceStart } from './index_patterns';
import { ISearchSetup, ISearchStart, SearchEnhancements } from './search';
@@ -51,6 +52,7 @@ export interface DataPluginStart {
}
export interface DataPluginSetupDependencies {
+ bfetch: BfetchServerSetup;
expressions: ExpressionsServerSetup;
usageCollection?: UsageCollectionSetup;
}
@@ -85,7 +87,7 @@ export class DataServerPlugin
public setup(
core: CoreSetup,
- { expressions, usageCollection }: DataPluginSetupDependencies
+ { bfetch, expressions, usageCollection }: DataPluginSetupDependencies
) {
this.indexPatterns.setup(core);
this.scriptsService.setup(core);
@@ -96,6 +98,7 @@ export class DataServerPlugin
core.uiSettings.register(getUiSettings());
const searchSetup = this.searchService.setup(core, {
+ bfetch,
expressions,
usageCollection,
});
diff --git a/src/plugins/data/server/search/es_search/es_search_strategy.ts b/src/plugins/data/server/search/es_search/es_search_strategy.ts
index 3e2d415eac16f..1671990f77d92 100644
--- a/src/plugins/data/server/search/es_search/es_search_strategy.ts
+++ b/src/plugins/data/server/search/es_search/es_search_strategy.ts
@@ -17,7 +17,7 @@
* under the License.
*/
import { Observable } from 'rxjs';
-import { first } from 'rxjs/operators';
+import { first, map } from 'rxjs/operators';
import type { Logger } from 'kibana/server';
import type { ApiResponse } from '@elastic/elasticsearch';
@@ -30,6 +30,7 @@ import { getDefaultSearchParams, getShardTimeout } from '../es_search';
import type { ISearchStrategy } from '../types';
import type { SearchUsage } from '../collectors/usage';
import type { IEsRawSearchResponse } from '../../../common';
+import { shimHitsTotal } from '..';
export const esSearchStrategyProvider = (
config$: Observable,
@@ -54,6 +55,10 @@ export const esSearchStrategyProvider = (
return esClient.asCurrentUser.search(params);
}, abortSignal).pipe(
toKibanaSearchResponse(),
+ map((response) => ({
+ ...response,
+ rawResponse: shimHitsTotal(response.rawResponse),
+ })),
trackSearchStatus(logger, usage),
includeTotalLoaded()
);
diff --git a/src/plugins/data/server/search/search_service.test.ts b/src/plugins/data/server/search/search_service.test.ts
index 0700afd8d6c83..8a52d1d415f9b 100644
--- a/src/plugins/data/server/search/search_service.test.ts
+++ b/src/plugins/data/server/search/search_service.test.ts
@@ -25,6 +25,8 @@ import { createFieldFormatsStartMock } from '../field_formats/mocks';
import { createIndexPatternsStartMock } from '../index_patterns/mocks';
import { SearchService, SearchServiceSetupDependencies } from './search_service';
+import { bfetchPluginMock } from '../../../bfetch/server/mocks';
+import { of } from 'rxjs';
describe('Search service', () => {
let plugin: SearchService;
@@ -35,15 +37,29 @@ describe('Search service', () => {
const mockLogger: any = {
debug: () => {},
};
- plugin = new SearchService(coreMock.createPluginInitializerContext({}), mockLogger);
+ const context = coreMock.createPluginInitializerContext({});
+ context.config.create = jest.fn().mockImplementation(() => {
+ return of({
+ search: {
+ aggs: {
+ shardDelay: {
+ enabled: true,
+ },
+ },
+ },
+ });
+ });
+ plugin = new SearchService(context, mockLogger);
mockCoreSetup = coreMock.createSetup();
mockCoreStart = coreMock.createStart();
});
describe('setup()', () => {
it('exposes proper contract', async () => {
+ const bfetch = bfetchPluginMock.createSetupContract();
const setup = plugin.setup(mockCoreSetup, ({
packageInfo: { version: '8' },
+ bfetch,
expressions: {
registerFunction: jest.fn(),
registerType: jest.fn(),
diff --git a/src/plugins/data/server/search/search_service.ts b/src/plugins/data/server/search/search_service.ts
index b44980164d097..b8ffd0645055c 100644
--- a/src/plugins/data/server/search/search_service.ts
+++ b/src/plugins/data/server/search/search_service.ts
@@ -29,7 +29,8 @@ import {
SharedGlobalConfig,
StartServicesAccessor,
} from 'src/core/server';
-import { first, switchMap } from 'rxjs/operators';
+import { catchError, first, switchMap } from 'rxjs/operators';
+import { BfetchServerSetup } from 'src/plugins/bfetch/server';
import { ExpressionsServerSetup } from 'src/plugins/expressions/server';
import {
ISearchSetup,
@@ -85,6 +86,7 @@ type StrategyMap = Record>;
/** @internal */
export interface SearchServiceSetupDependencies {
+ bfetch: BfetchServerSetup;
expressions: ExpressionsServerSetup;
usageCollection?: UsageCollectionSetup;
}
@@ -106,6 +108,7 @@ export class SearchService implements Plugin {
private readonly searchSourceService = new SearchSourceService();
private defaultSearchStrategyName: string = ES_SEARCH_STRATEGY;
private searchStrategies: StrategyMap = {};
+ private coreStart?: CoreStart;
private sessionService: BackgroundSessionService = new BackgroundSessionService();
constructor(
@@ -115,7 +118,7 @@ export class SearchService implements Plugin {
public setup(
core: CoreSetup<{}, DataPluginStart>,
- { expressions, usageCollection }: SearchServiceSetupDependencies
+ { bfetch, expressions, usageCollection }: SearchServiceSetupDependencies
): ISearchSetup {
const usage = usageCollection ? usageProvider(core) : undefined;
@@ -128,10 +131,13 @@ export class SearchService implements Plugin {
registerMsearchRoute(router, routeDependencies);
registerSessionRoutes(router);
+ core.getStartServices().then(([coreStart]) => {
+ this.coreStart = coreStart;
+ });
+
core.http.registerRouteHandlerContext('search', async (context, request) => {
- const [coreStart] = await core.getStartServices();
- const search = this.asScopedProvider(coreStart)(request);
- const session = this.sessionService.asScopedProvider(coreStart)(request);
+ const search = this.asScopedProvider(this.coreStart!)(request);
+ const session = this.sessionService.asScopedProvider(this.coreStart!)(request);
return { ...search, session };
});
@@ -146,6 +152,36 @@ export class SearchService implements Plugin {
)
);
+ bfetch.addBatchProcessingRoute<{ request: any; options?: ISearchOptions }, any>(
+ '/internal/bsearch',
+ (request) => {
+ const search = this.asScopedProvider(this.coreStart!)(request);
+
+ return {
+ onBatchItem: async ({ request: requestData, options }) => {
+ return search
+ .search(requestData, options)
+ .pipe(
+ first(),
+ catchError((err) => {
+ // eslint-disable-next-line no-throw-literal
+ throw {
+ statusCode: err.statusCode || 500,
+ body: {
+ message: err.message,
+ attributes: {
+ error: err.body?.error || err.message,
+ },
+ },
+ };
+ })
+ )
+ .toPromise();
+ },
+ };
+ }
+ );
+
core.savedObjects.registerType(searchTelemetry);
if (usageCollection) {
registerUsageCollector(usageCollection, this.initializerContext);
diff --git a/src/plugins/data/server/server.api.md b/src/plugins/data/server/server.api.md
index feced957ddac4..f63565b21aafb 100644
--- a/src/plugins/data/server/server.api.md
+++ b/src/plugins/data/server/server.api.md
@@ -9,6 +9,7 @@ import { Adapters } from 'src/plugins/inspector/common';
import { ApiResponse } from '@elastic/elasticsearch';
import { Assign } from '@kbn/utility-types';
import { BehaviorSubject } from 'rxjs';
+import { BfetchServerSetup } from 'src/plugins/bfetch/server';
import { ConfigDeprecationProvider } from '@kbn/config';
import { CoreSetup } from 'src/core/server';
import { CoreSetup as CoreSetup_2 } from 'kibana/server';
@@ -958,7 +959,7 @@ export function parseInterval(interval: string): moment.Duration | null;
export class Plugin implements Plugin_2 {
constructor(initializerContext: PluginInitializerContext_2);
// (undocumented)
- setup(core: CoreSetup, { expressions, usageCollection }: DataPluginSetupDependencies): {
+ setup(core: CoreSetup, { bfetch, expressions, usageCollection }: DataPluginSetupDependencies): {
__enhance: (enhancements: DataEnhancements) => void;
search: ISearchSetup;
fieldFormats: {
@@ -1256,7 +1257,7 @@ export function usageProvider(core: CoreSetup_2): SearchUsage;
// src/plugins/data/server/index.ts:284:1 - (ae-forgotten-export) The symbol "propFilter" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/index.ts:287:1 - (ae-forgotten-export) The symbol "toAbsoluteDates" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/index_patterns/index_patterns_service.ts:58:14 - (ae-forgotten-export) The symbol "IndexPatternsService" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/plugin.ts:88:66 - (ae-forgotten-export) The symbol "DataEnhancements" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/plugin.ts:90:74 - (ae-forgotten-export) The symbol "DataEnhancements" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/search/types.ts:104:5 - (ae-forgotten-export) The symbol "ISearchStartSearchSource" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
diff --git a/src/plugins/data/server/ui_settings.ts b/src/plugins/data/server/ui_settings.ts
index 9393700a0e771..f5360f626ac66 100644
--- a/src/plugins/data/server/ui_settings.ts
+++ b/src/plugins/data/server/ui_settings.ts
@@ -267,14 +267,13 @@ export function getUiSettings(): Record> {
},
[UI_SETTINGS.COURIER_BATCH_SEARCHES]: {
name: i18n.translate('data.advancedSettings.courier.batchSearchesTitle', {
- defaultMessage: 'Batch concurrent searches',
+ defaultMessage: 'Use legacy search',
}),
value: false,
type: 'boolean',
description: i18n.translate('data.advancedSettings.courier.batchSearchesText', {
- defaultMessage: `When disabled, dashboard panels will load individually, and search requests will terminate when users navigate
- away or update the query. When enabled, dashboard panels will load together when all of the data is loaded, and
- searches will not terminate.`,
+ defaultMessage: `Kibana uses a new search and batching infrastructure.
+ Enable this option if you prefer to fallback to the legacy synchronous behavior`,
}),
deprecation: {
message: i18n.translate('data.advancedSettings.courier.batchSearchesTextDeprecation', {
diff --git a/src/plugins/embeddable/public/public.api.md b/src/plugins/embeddable/public/public.api.md
index f3f3682404e32..023cb3d19b632 100644
--- a/src/plugins/embeddable/public/public.api.md
+++ b/src/plugins/embeddable/public/public.api.md
@@ -12,6 +12,7 @@ import { ApiResponse as ApiResponse_2 } from '@elastic/elasticsearch';
import { ApplicationStart as ApplicationStart_2 } from 'kibana/public';
import { Assign } from '@kbn/utility-types';
import { BehaviorSubject } from 'rxjs';
+import { BfetchPublicSetup } from 'src/plugins/bfetch/public';
import Boom from '@hapi/boom';
import { CoreSetup as CoreSetup_2 } from 'src/core/public';
import { CoreSetup as CoreSetup_3 } from 'kibana/public';
diff --git a/x-pack/plugins/data_enhanced/kibana.json b/x-pack/plugins/data_enhanced/kibana.json
index bc7c8410d3df1..eea0101ec4ed7 100644
--- a/x-pack/plugins/data_enhanced/kibana.json
+++ b/x-pack/plugins/data_enhanced/kibana.json
@@ -6,6 +6,7 @@
"xpack", "data_enhanced"
],
"requiredPlugins": [
+ "bfetch",
"data",
"features"
],
diff --git a/x-pack/plugins/data_enhanced/public/plugin.ts b/x-pack/plugins/data_enhanced/public/plugin.ts
index 948858a5ed4c1..fa3206446f9fc 100644
--- a/x-pack/plugins/data_enhanced/public/plugin.ts
+++ b/x-pack/plugins/data_enhanced/public/plugin.ts
@@ -7,6 +7,7 @@
import React from 'react';
import { CoreSetup, CoreStart, Plugin, PluginInitializerContext } from 'src/core/public';
import { DataPublicPluginSetup, DataPublicPluginStart } from '../../../../src/plugins/data/public';
+import { BfetchPublicSetup } from '../../../../src/plugins/bfetch/public';
import { setAutocompleteService } from './services';
import { setupKqlQuerySuggestionProvider, KUERY_LANGUAGE_NAME } from './autocomplete';
@@ -16,6 +17,7 @@ import { createConnectedBackgroundSessionIndicator } from './search';
import { ConfigSchema } from '../config';
export interface DataEnhancedSetupDependencies {
+ bfetch: BfetchPublicSetup;
data: DataPublicPluginSetup;
}
export interface DataEnhancedStartDependencies {
@@ -33,7 +35,7 @@ export class DataEnhancedPlugin
public setup(
core: CoreSetup,
- { data }: DataEnhancedSetupDependencies
+ { bfetch, data }: DataEnhancedSetupDependencies
) {
data.autocomplete.addQuerySuggestionProvider(
KUERY_LANGUAGE_NAME,
@@ -41,6 +43,7 @@ export class DataEnhancedPlugin
);
this.enhancedSearchInterceptor = new EnhancedSearchInterceptor({
+ bfetch,
toasts: core.notifications.toasts,
http: core.http,
uiSettings: core.uiSettings,
diff --git a/x-pack/plugins/data_enhanced/public/search/search_interceptor.test.ts b/x-pack/plugins/data_enhanced/public/search/search_interceptor.test.ts
index 044489d58eb0e..3659c1a04b2b4 100644
--- a/x-pack/plugins/data_enhanced/public/search/search_interceptor.test.ts
+++ b/x-pack/plugins/data_enhanced/public/search/search_interceptor.test.ts
@@ -11,6 +11,7 @@ import { UI_SETTINGS } from '../../../../../src/plugins/data/common';
import { AbortError } from '../../../../../src/plugins/kibana_utils/public';
import { SearchTimeoutError } from 'src/plugins/data/public';
import { dataPluginMock } from '../../../../../src/plugins/data/public/mocks';
+import { bfetchPluginMock } from '../../../../../src/plugins/bfetch/public/mocks';
const timeTravel = (msToRun = 0) => {
jest.advanceTimersByTime(msToRun);
@@ -24,12 +25,13 @@ const complete = jest.fn();
let searchInterceptor: EnhancedSearchInterceptor;
let mockCoreSetup: MockedKeys;
let mockCoreStart: MockedKeys;
+let fetchMock: jest.Mock;
jest.useFakeTimers();
function mockFetchImplementation(responses: any[]) {
let i = 0;
- mockCoreSetup.http.fetch.mockImplementation(() => {
+ fetchMock.mockImplementation(() => {
const { time = 0, value = {}, isError = false } = responses[i++];
return new Promise((resolve, reject) =>
setTimeout(() => {
@@ -46,6 +48,7 @@ describe('EnhancedSearchInterceptor', () => {
mockCoreSetup = coreMock.createSetup();
mockCoreStart = coreMock.createStart();
const dataPluginMockStart = dataPluginMock.createStartContract();
+ fetchMock = jest.fn();
mockCoreSetup.uiSettings.get.mockImplementation((name: string) => {
switch (name) {
@@ -74,7 +77,11 @@ describe('EnhancedSearchInterceptor', () => {
]);
});
+ const bfetchMock = bfetchPluginMock.createSetupContract();
+ bfetchMock.batchedFunction.mockReturnValue(fetchMock);
+
searchInterceptor = new EnhancedSearchInterceptor({
+ bfetch: bfetchMock,
toasts: mockCoreSetup.notifications.toasts,
startServices: mockPromise as any,
http: mockCoreSetup.http,
@@ -247,7 +254,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(error).toHaveBeenCalled();
expect(error.mock.calls[0][0]).toBeInstanceOf(AbortError);
- expect(mockCoreSetup.http.fetch).toHaveBeenCalledTimes(2);
+ expect(fetchMock).toHaveBeenCalledTimes(2);
expect(mockCoreSetup.http.delete).toHaveBeenCalled();
});
@@ -271,7 +278,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(error).toHaveBeenCalled();
expect(error.mock.calls[0][0]).toBeInstanceOf(SearchTimeoutError);
- expect(mockCoreSetup.http.fetch).toHaveBeenCalled();
+ expect(fetchMock).toHaveBeenCalled();
expect(mockCoreSetup.http.delete).not.toHaveBeenCalled();
});
@@ -303,7 +310,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(next).toHaveBeenCalled();
expect(error).not.toHaveBeenCalled();
- expect(mockCoreSetup.http.fetch).toHaveBeenCalled();
+ expect(fetchMock).toHaveBeenCalled();
expect(mockCoreSetup.http.delete).not.toHaveBeenCalled();
// Long enough to reach the timeout but not long enough to reach the next response
@@ -311,7 +318,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(error).toHaveBeenCalled();
expect(error.mock.calls[0][0]).toBeInstanceOf(SearchTimeoutError);
- expect(mockCoreSetup.http.fetch).toHaveBeenCalledTimes(2);
+ expect(fetchMock).toHaveBeenCalledTimes(2);
expect(mockCoreSetup.http.delete).toHaveBeenCalled();
});
@@ -345,7 +352,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(next).toHaveBeenCalled();
expect(error).not.toHaveBeenCalled();
- expect(mockCoreSetup.http.fetch).toHaveBeenCalled();
+ expect(fetchMock).toHaveBeenCalled();
expect(mockCoreSetup.http.delete).not.toHaveBeenCalled();
// Long enough to reach the timeout but not long enough to reach the next response
@@ -353,7 +360,7 @@ describe('EnhancedSearchInterceptor', () => {
expect(error).toHaveBeenCalled();
expect(error.mock.calls[0][0]).toBe(responses[1].value);
- expect(mockCoreSetup.http.fetch).toHaveBeenCalledTimes(2);
+ expect(fetchMock).toHaveBeenCalledTimes(2);
expect(mockCoreSetup.http.delete).toHaveBeenCalled();
});
});
@@ -385,9 +392,7 @@ describe('EnhancedSearchInterceptor', () => {
await timeTravel();
- const areAllRequestsAborted = mockCoreSetup.http.fetch.mock.calls.every(
- ([{ signal }]) => signal?.aborted
- );
+ const areAllRequestsAborted = fetchMock.mock.calls.every(([_, signal]) => signal?.aborted);
expect(areAllRequestsAborted).toBe(true);
expect(mockUsageCollector.trackQueriesCancelled).toBeCalledTimes(1);
});