Skip to content

Commit

Permalink
[6.8] [core.http] Cleanup catch-all route for paths with trailing sla…
Browse files Browse the repository at this point in the history
…shes. (#96889) (#97056)
  • Loading branch information
lukeelmers committed Apr 20, 2021
1 parent e924509 commit 720bc4c
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default async function (kbnServer, server, config) {
path: '/{p*}',
handler: function (req, h) {
const path = req.path;
if (path === '/' || path.charAt(path.length - 1) !== '/') {
if (path === '/' || path.charAt(path.length - 1) !== '/' || path.charAt(0) === '/') {
throw Boom.notFound();
}

Expand Down
56 changes: 56 additions & 0 deletions src/server/http/integration_tests/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* 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 * as kbnTestServer from '../../../test_utils/kbn_server';

describe('Core app routes', () => {
let root;

beforeAll(async () => {
root = kbnTestServer.createRoot({
plugins: { initialize: false },
server: {
basePath: '/base-path',
},
});

await root.start();
}, 30000);

afterAll(async function () {
await root.shutdown();
});

describe('`/{path*}` route', () => {
it('does not redirect if the path starts with `//`', async () => {
await kbnTestServer.request.get(root, '//some-path/').expect(404);
});

it('does not redirect if the path does not end with `/`', async () => {
await kbnTestServer.request.get(root, '/some-path').expect(404);
});
});

describe('`/` route', () => {
it('prevails on the `/{path*}` route', async () => {
const response = await kbnTestServer.request.get(root, '/').expect(302);
expect(response.get('location')).toEqual('/base-path/app/kibana');
});
});
});

0 comments on commit 720bc4c

Please sign in to comment.