-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dev-utils/withProcRunner] fix test that swallows promise rejection (#…
…22342) * [dev-utils/withProcRunner] fix tests that can silently fail * test async/sync withProcRunner functions
- Loading branch information
Spencer
authored
Aug 28, 2018
1 parent
c7d451c
commit 2700654
Showing
3 changed files
with
79 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
packages/kbn-dev-utils/src/proc_runner/__tests__/with_proc_runner.js
This file was deleted.
Oops, something went wrong.
79 changes: 79 additions & 0 deletions
79
packages/kbn-dev-utils/src/proc_runner/with_proc_runner.test.js
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,79 @@ | ||
/* | ||
* 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 { ToolingLog } from '../tooling_log'; | ||
import { withProcRunner } from './with_proc_runner'; | ||
import { ProcRunner } from './proc_runner'; | ||
|
||
it('passes proc runner to a function', async () => { | ||
await withProcRunner(new ToolingLog(), proc => { | ||
expect(proc).toBeInstanceOf(ProcRunner); | ||
}); | ||
}); | ||
|
||
it('calls procRunner.teardown() if function returns synchronously', async () => { | ||
let teardownSpy; | ||
await withProcRunner(new ToolingLog(), proc => { | ||
teardownSpy = jest.spyOn(proc, 'teardown'); | ||
}); | ||
|
||
expect(teardownSpy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('calls procRunner.teardown() if function throw synchronous error, and rejects with the error', async () => { | ||
const error = new Error('foo'); | ||
let teardownSpy; | ||
|
||
await expect( | ||
withProcRunner(new ToolingLog(), proc => { | ||
teardownSpy = jest.spyOn(proc, 'teardown'); | ||
throw error; | ||
}) | ||
).rejects.toThrowError(error); | ||
|
||
expect(teardownSpy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('waits for promise to resolve before tearing down proc', async () => { | ||
let teardownSpy; | ||
|
||
await withProcRunner(new ToolingLog(), async proc => { | ||
await new Promise(resolve => setTimeout(resolve, 500)); | ||
teardownSpy = jest.spyOn(proc, 'teardown'); | ||
}); | ||
|
||
expect(teardownSpy).not.toBe(undefined); | ||
expect(teardownSpy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('waits for promise to reject before tearing down proc and rejecting with the error', async () => { | ||
const error = new Error('foo'); | ||
let teardownSpy; | ||
|
||
await expect( | ||
withProcRunner(new ToolingLog(), async proc => { | ||
await new Promise(resolve => setTimeout(resolve, 500)); | ||
teardownSpy = jest.spyOn(proc, 'teardown'); | ||
throw error; | ||
}) | ||
).rejects.toThrowError(error); | ||
|
||
expect(teardownSpy).not.toBe(undefined); | ||
expect(teardownSpy).toHaveBeenCalled(); | ||
}); |