-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into refresh-uptime-app-after-data-added
- Loading branch information
Showing
196 changed files
with
5,406 additions
and
35,393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
export { isConfigSchema } from './is_config_schema'; |
56 changes: 56 additions & 0 deletions
56
packages/kbn-config-schema/src/typeguards/is_config_schema.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { schema } from '..'; | ||
import { isConfigSchema } from './is_config_schema'; | ||
|
||
describe('isConfigSchema', () => { | ||
it('returns true for every sub classes of `Type`', () => { | ||
expect(isConfigSchema(schema.any())).toBe(true); | ||
expect(isConfigSchema(schema.arrayOf(schema.string()))).toBe(true); | ||
expect(isConfigSchema(schema.boolean())).toBe(true); | ||
expect(isConfigSchema(schema.buffer())).toBe(true); | ||
expect(isConfigSchema(schema.byteSize())).toBe(true); | ||
expect(isConfigSchema(schema.duration())).toBe(true); | ||
expect(isConfigSchema(schema.literal(''))).toBe(true); | ||
expect(isConfigSchema(schema.mapOf(schema.string(), schema.number()))).toBe(true); | ||
expect(isConfigSchema(schema.nullable(schema.string()))).toBe(true); | ||
expect(isConfigSchema(schema.number())).toBe(true); | ||
expect(isConfigSchema(schema.object({}))).toBe(true); | ||
expect(isConfigSchema(schema.oneOf([schema.string()]))).toBe(true); | ||
expect(isConfigSchema(schema.recordOf(schema.string(), schema.object({})))).toBe(true); | ||
expect(isConfigSchema(schema.string())).toBe(true); | ||
expect(isConfigSchema(schema.stream())).toBe(true); | ||
}); | ||
|
||
it('returns false for every javascript data type', () => { | ||
expect(isConfigSchema('foo')).toBe(false); | ||
expect(isConfigSchema(42)).toBe(false); | ||
expect(isConfigSchema(new Date())).toBe(false); | ||
expect(isConfigSchema(null)).toBe(false); | ||
expect(isConfigSchema(undefined)).toBe(false); | ||
expect(isConfigSchema([1, 2, 3])).toBe(false); | ||
expect(isConfigSchema({ foo: 'bar' })).toBe(false); | ||
expect(isConfigSchema(function() {})).toBe(false); | ||
}); | ||
|
||
it('returns true as long as `__isKbnConfigSchemaType` is true', () => { | ||
expect(isConfigSchema({ __isKbnConfigSchemaType: true })).toBe(true); | ||
}); | ||
}); |
24 changes: 24 additions & 0 deletions
24
packages/kbn-config-schema/src/typeguards/is_config_schema.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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 { Type } from '../types'; | ||
|
||
export function isConfigSchema(obj: any): obj is Type<any> { | ||
return obj ? obj.__isKbnConfigSchemaType === true : false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
src/plugins/console/server/__tests__/proxy_route/proxy_fallback.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* 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 { duration } from 'moment'; | ||
import { getProxyRouteHandlerDeps } from './mocks'; | ||
|
||
import { kibanaResponseFactory } from '../../../../../core/server'; | ||
import { createHandler } from '../../routes/api/console/proxy/create_handler'; | ||
import * as requestModule from '../../lib/proxy_request'; | ||
|
||
describe('Console Proxy Route', () => { | ||
afterEach(async () => { | ||
jest.resetAllMocks(); | ||
}); | ||
|
||
describe('fallback behaviour', () => { | ||
it('falls back to all configured endpoints regardless of error', async () => { | ||
// Describe a situation where all three configured nodes reject | ||
(requestModule.proxyRequest as jest.Mock).mockRejectedValueOnce(new Error('ECONNREFUSED')); | ||
(requestModule.proxyRequest as jest.Mock).mockRejectedValueOnce(new Error('EHOSTUNREACH')); | ||
(requestModule.proxyRequest as jest.Mock).mockRejectedValueOnce(new Error('ESOCKETTIMEDOUT')); | ||
|
||
const handler = createHandler( | ||
getProxyRouteHandlerDeps({ | ||
readLegacyESConfig: () => ({ | ||
requestTimeout: duration(30000), | ||
customHeaders: {}, | ||
requestHeadersWhitelist: [], | ||
hosts: ['http://localhost:9201', 'http://localhost:9202', 'http://localhost:9203'], | ||
}), | ||
}) | ||
); | ||
|
||
const response = await handler( | ||
{} as any, | ||
{ | ||
headers: {}, | ||
query: { method: 'get', path: 'test' }, | ||
} as any, | ||
kibanaResponseFactory | ||
); | ||
|
||
expect(response.status).toBe(502); | ||
// Return the message from the ES node we attempted last. | ||
expect(response.payload.message).toBe('ESOCKETTIMEDOUT'); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.