Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,177 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/

import { RequestHandlerContext } from 'kibana/server';
import { mockRouter, RouterMock } from '../../../../../../src/core/server/http/router/router.mock';
import { httpServerMock } from '../../../../../../src/core/server/http/http_server.mocks';
import { RouteValidatorConfig } from '../../../../../../src/core/server/http/router/validator';

import { registerEnginesRoute } from './engines';
import { ObjectType } from '@kbn/config-schema';

jest.mock('node-fetch');
const fetch = jest.requireActual('node-fetch');
const { Response } = fetch;
const fetchMock = require('node-fetch') as jest.Mocked<typeof fetch>;

describe('engine routes', () => {
describe('GET /api/app_search/engines', () => {
const APP_SEARCH_HOST_CONFIG = 'http://localhost:3002';
const AUTH_HEADER = 'Basic 123';
const PAGE_INDEX = 1;
const TYPE = 'indexed';

let router: RouterMock;
const mockResponseFactory = httpServerMock.createResponseFactory();

const AppSearchAPI = {
shouldBeCalledWith(expectedUrl: string, expectedParams: object) {
return {
andReturnRedirect() {
fetchMock.mockImplementation((url: string, params: object) => {
expect(url).toEqual(expectedUrl);
expect(params).toEqual(expectedParams);

return Promise.resolve(
new Response('{}', {
url: '/login',
})
);
});
},
andReturn(response: object) {
fetchMock.mockImplementation((url: string, params: object) => {
expect(url).toEqual(expectedUrl);
expect(params).toEqual(expectedParams);

return Promise.resolve(new Response(JSON.stringify(response)));
});
},
};
},
};

function expectResponseToBe200With(response: object) {
expect(mockResponseFactory.ok).toHaveBeenCalledWith(response);
}

async function callThisRoute(
request = {
headers: {
authorization: AUTH_HEADER,
},
query: {
type: TYPE,
pageIndex: PAGE_INDEX,
},
}
) {
const [_, handler] = router.get.mock.calls[0];

const context = {} as jest.Mocked<RequestHandlerContext>;
await handler(context, httpServerMock.createKibanaRequest(request), mockResponseFactory);
}

function executeRouteValidation(data: { query: object }) {
const [config] = router.get.mock.calls[0];
const validate = config.validate as RouteValidatorConfig<{}, {}, {}>;
const query = validate.query as ObjectType;
query.validate(data.query);
}

beforeEach(() => {
jest.resetAllMocks();
router = mockRouter.create();
registerEnginesRoute({
router,
config: {
host: APP_SEARCH_HOST_CONFIG,
},
});
});

describe('when the underlying App Search API returns a 200', () => {
const appSearchEnginesResponse = { name: 'engine1' };

beforeEach(() => {
AppSearchAPI.shouldBeCalledWith(
`${APP_SEARCH_HOST_CONFIG}/as/engines/collection?type=${TYPE}&page[current]=${PAGE_INDEX}&page[size]=10`,
{
headers: { Authorization: AUTH_HEADER },
}
).andReturn(appSearchEnginesResponse);
});

it('should return 200 with a list of engines from the App Search API', async () => {
await callThisRoute();

expectResponseToBe200With({
body: appSearchEnginesResponse,
headers: { 'content-type': 'application/json' },
});
});
});

describe('when the underlying App Search API redirects to /login', () => {
beforeEach(() => {
AppSearchAPI.shouldBeCalledWith(
`${APP_SEARCH_HOST_CONFIG}/as/engines/collection?type=${TYPE}&page[current]=${PAGE_INDEX}&page[size]=10`,
{
headers: { Authorization: AUTH_HEADER },
}
).andReturnRedirect();
});

it('should return 200 with a message', async () => {
await callThisRoute();

expectResponseToBe200With({
body: { message: 'no-as-account' },
headers: { 'content-type': 'application/json' },
});
});
});

describe('validation', () => {
function itShouldValidate(request: { query: object }) {
it('should be validate', async () => {
expect(() => executeRouteValidation(request)).not.toThrow();
});
}

function itShouldThrow(request: { query: object }) {
it('should throw', async () => {
expect(() => executeRouteValidation(request)).toThrow();
});
}

describe('when query is valid', () => {
const request = { query: { type: 'indexed', pageIndex: 1 } };
itShouldValidate(request);
});

describe('pageIndex is wrong type', () => {
const request = { query: { type: 'indexed', pageIndex: 'indexed' } };
itShouldThrow(request);
});

describe('type is wrong type', () => {
const request = { query: { type: 1, pageIndex: 1 } };
itShouldThrow(request);
});

describe('pageIndex is missing', () => {
const request = { query: { type: 'indexed' } };
itShouldThrow(request);
});

describe('type is missing', () => {
const request = { query: { pageIndex: 1 } };
itShouldThrow(request);
});
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ export function registerEnginesRoute({ router, config }) {
});

if (enginesResponse.url.endsWith('/login')) {
return response.custom({
statusCode: 200,
return response.ok({
body: { message: 'no-as-account' },
headers: { 'content-type': 'application/json' },
});
Expand Down