forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NP] Add lifecycle timeout (elastic#54129) (elastic#54346)
* add promise timeout decorator * crash Kibana if lifecycle takes > 30sec Co-authored-by: Elastic Machine <[email protected]> Co-authored-by: Elastic Machine <[email protected]>
- Loading branch information
1 parent
40ca870
commit 1697f21
Showing
7 changed files
with
237 additions
and
20 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
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,63 @@ | ||
/* | ||
* 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 { withTimeout } from './promise'; | ||
|
||
const delay = (ms: number, resolveValue?: any) => | ||
new Promise(resolve => setTimeout(resolve, ms, resolveValue)); | ||
|
||
describe('withTimeout', () => { | ||
it('resolves with a promise value if resolved in given timeout', async () => { | ||
await expect( | ||
withTimeout({ | ||
promise: delay(10, 'value'), | ||
timeout: 200, | ||
errorMessage: 'error-message', | ||
}) | ||
).resolves.toBe('value'); | ||
}); | ||
|
||
it('rejects with errorMessage if not resolved in given time', async () => { | ||
await expect( | ||
withTimeout({ | ||
promise: delay(200, 'value'), | ||
timeout: 10, | ||
errorMessage: 'error-message', | ||
}) | ||
).rejects.toMatchInlineSnapshot(`[Error: error-message]`); | ||
|
||
await expect( | ||
withTimeout({ | ||
promise: new Promise(i => i), | ||
timeout: 10, | ||
errorMessage: 'error-message', | ||
}) | ||
).rejects.toMatchInlineSnapshot(`[Error: error-message]`); | ||
}); | ||
|
||
it('does not swallow promise error', async () => { | ||
await expect( | ||
withTimeout({ | ||
promise: Promise.reject(new Error('from-promise')), | ||
timeout: 10, | ||
errorMessage: 'error-message', | ||
}) | ||
).rejects.toMatchInlineSnapshot(`[Error: from-promise]`); | ||
}); | ||
}); |
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,33 @@ | ||
/* | ||
* 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 function withTimeout<T>({ | ||
promise, | ||
timeout, | ||
errorMessage, | ||
}: { | ||
promise: Promise<T>; | ||
timeout: number; | ||
errorMessage: string; | ||
}) { | ||
return Promise.race([ | ||
promise, | ||
new Promise((resolve, reject) => setTimeout(() => reject(new Error(errorMessage)), timeout)), | ||
]) as Promise<T>; | ||
} |