|
| 1 | +import { promiseError } from '@kwsites/promise-result'; |
| 2 | +import { |
| 3 | + assertExecutedTasksCount, |
| 4 | + assertGitError, |
| 5 | + createAbortController, |
| 6 | + newSimpleGit, |
| 7 | + wait, |
| 8 | +} from './__fixtures__'; |
| 9 | +import { GitPluginError } from '../..'; |
| 10 | + |
| 11 | +describe('plugin.abort', function () { |
| 12 | + it('aborts an active child process', async () => { |
| 13 | + const { controller, abort } = createAbortController(); |
| 14 | + const git = newSimpleGit({ abort }); |
| 15 | + |
| 16 | + const queue = promiseError(git.raw('foo')); |
| 17 | + await wait(); |
| 18 | + |
| 19 | + assertExecutedTasksCount(1); |
| 20 | + controller.abort(); |
| 21 | + |
| 22 | + assertGitError(await queue, 'Abort signal received', GitPluginError); |
| 23 | + }); |
| 24 | + |
| 25 | + it('aborts all active promises', async () => { |
| 26 | + const { controller, abort } = createAbortController(); |
| 27 | + const git = newSimpleGit({ abort }); |
| 28 | + const all = Promise.all([ |
| 29 | + git.raw('a').catch((e) => e), |
| 30 | + git.raw('b').catch((e) => e), |
| 31 | + git.raw('c').catch((e) => e), |
| 32 | + ]); |
| 33 | + |
| 34 | + await wait(); |
| 35 | + assertExecutedTasksCount(3); |
| 36 | + controller.abort(); |
| 37 | + |
| 38 | + expect(await all).toEqual([ |
| 39 | + expect.any(GitPluginError), |
| 40 | + expect.any(GitPluginError), |
| 41 | + expect.any(GitPluginError), |
| 42 | + ]); |
| 43 | + }); |
| 44 | + |
| 45 | + it('aborts all steps in chained promises', async () => { |
| 46 | + const { controller, abort } = createAbortController(); |
| 47 | + const git = newSimpleGit({ abort }); |
| 48 | + const a = git.raw('a'); |
| 49 | + const b = a.raw('b'); |
| 50 | + const c = b.raw('c'); |
| 51 | + |
| 52 | + const all = Promise.all([a.catch((e) => e), b.catch((e) => e), c.catch((e) => e)]); |
| 53 | + |
| 54 | + await wait(); |
| 55 | + assertExecutedTasksCount(1); |
| 56 | + controller.abort(); |
| 57 | + |
| 58 | + expect(await all).toEqual([ |
| 59 | + expect.any(GitPluginError), |
| 60 | + expect.any(GitPluginError), |
| 61 | + expect.any(GitPluginError), |
| 62 | + ]); |
| 63 | + assertExecutedTasksCount(1); |
| 64 | + }); |
| 65 | + |
| 66 | + it('aborts before attempting to spawn', async () => { |
| 67 | + const { controller, abort } = createAbortController(); |
| 68 | + controller.abort(); |
| 69 | + |
| 70 | + const git = newSimpleGit({ abort }); |
| 71 | + assertGitError(await promiseError(git.raw('a')), 'Abort already signaled', GitPluginError); |
| 72 | + assertExecutedTasksCount(0); |
| 73 | + }); |
| 74 | +}); |
0 commit comments