Skip to content

Commit

Permalink
[dev-utils/withProcRunner] fix test that swallows promise rejection (#…
Browse files Browse the repository at this point in the history
…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
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 45 deletions.
3 changes: 0 additions & 3 deletions packages/kbn-dev-utils/src/proc_runner/__tests__/proc.sh

This file was deleted.

This file was deleted.

79 changes: 79 additions & 0 deletions packages/kbn-dev-utils/src/proc_runner/with_proc_runner.test.js
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();
});

0 comments on commit 2700654

Please sign in to comment.