Files
ansiblings/packages/nopy/tests/executor.execute.test.ts
Benjamin Diedrichsen 587ff2cf47
Publish snapshot / snapshot (push) Failing after 1m58s
Add release pipeline and upgrade toolchain to TypeScript 7
Publishing infrastructure
- Three Gitea workflows: ci.yml (PRs, non-main pushes), publish-snapshot.yml
  (main -> Gitea under dist-tag @main) and release.yml (tags -> Gitea + npmjs)
- Tag-driven releases as <package-dir>-v<version>; the manifest stays the
  source of truth and release.yml refuses to run if tag and manifest disagree
- Every publish is idempotent: each step checks the registry first, so a run
  that fails on the second registry can simply be re-run
- Hard coverage gate (85% branches) shared by CI, the pre-push hook and local
  runs, since the thresholds live in vitest.config.ts rather than a CI flag
- README.PUBLISH.md documents the whole mechanism

Toolchain
- TypeScript 7 native compiler; drop tsgo and ts-node, use tsx for dev runs
- Biome 1.9 -> 2.x, Vitest 1 -> 4, zod 3 -> 4, inquirer 8 -> 14, pnpm 11.17.0
- Replace inquirer-checkbox-plus-prompt, which is peer-capped at inquirer <9,
  with enquirer's AutoComplete; the CubeSelection contract is unchanged
- Stand in for zod 4's removed z.AnyZodObject with a local AnyObjectSchema

Repo hygiene
- Stop tracking dist/; ignore coverage/, *.tsbuildinfo, .npmrc* and release.json
- Drop package-lock.json in favour of pnpm-lock.yaml

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-07-27 15:17:14 +02:00

148 lines
4.6 KiB
TypeScript

/**
* Tests for the executeDeployCalls path of nopy.executor.
*
* execa is mocked so no pyinfra process is ever spawned. Note the shape:
* the module calls execa({ shell: true })(command, opts), so the mock is a
* factory returning the runner.
*/
import { beforeEach, describe, expect, it, vi } from 'vitest';
const runner = vi.fn();
vi.mock('execa', () => ({
execa: vi.fn(() => runner),
}));
import { execa } from 'execa';
import { type DeployCall, executeDeployCalls } from '../src/nopy.executor.js';
const call = (cube: string, host = 'web-1'): DeployCall => ({
cube,
host,
cwd: `/cubes/${cube}`,
command: ['pyinfra', host, '-y', `${cube}.deploy.py`],
env: {},
dependencies: [],
});
beforeEach(() => {
vi.clearAllMocks();
runner.mockResolvedValue({ exitCode: 0 });
});
describe('executeDeployCalls', () => {
it('returns early without spawning anything for an empty list', async () => {
const results = await executeDeployCalls([]);
expect(results).toEqual([]);
expect(runner).not.toHaveBeenCalled();
});
it('prints the plan and skips execution on a dry run', async () => {
const logSpy = vi.spyOn(console, 'log').mockImplementation(() => {});
const results = await executeDeployCalls([call('cube-a')], { dryRun: true });
expect(results).toEqual([]);
expect(runner).not.toHaveBeenCalled();
expect(logSpy.mock.calls.map((c) => c[0]).join('\n')).toContain('Execution Plan');
logSpy.mockRestore();
});
it('runs the joined command in the call cwd with inherited stdio', async () => {
await executeDeployCalls([call('cube-a')]);
expect(execa).toHaveBeenCalledWith({ shell: true });
expect(runner).toHaveBeenCalledWith('pyinfra web-1 -y cube-a.deploy.py', {
cwd: '/cubes/cube-a',
stdio: 'inherit',
});
});
it('reports success with a non-negative duration', async () => {
const [result] = await executeDeployCalls([call('cube-a')]);
expect(result.success).toBe(true);
expect(result.cube).toBe('cube-a');
expect(result.host).toBe('web-1');
expect(result.duration).toBeGreaterThanOrEqual(0);
expect(result.error).toBeUndefined();
});
it('captures a thrown Error as a failed result rather than rejecting', async () => {
runner.mockRejectedValue(new Error('exit code 1'));
const [result] = await executeDeployCalls([call('cube-a')]);
expect(result.success).toBe(false);
expect(result.error).toBeInstanceOf(Error);
expect(result.error?.message).toBe('exit code 1');
});
it('wraps a non-Error rejection into an Error', async () => {
runner.mockRejectedValue('boom');
const [result] = await executeDeployCalls([call('cube-a')]);
expect(result.error).toBeInstanceOf(Error);
expect(result.error?.message).toBe('boom');
});
it('stops after the first failure by default', async () => {
runner.mockRejectedValueOnce(new Error('nope')).mockResolvedValue({ exitCode: 0 });
const results = await executeDeployCalls([call('cube-a'), call('cube-b')]);
expect(results).toHaveLength(1);
expect(results[0].cube).toBe('cube-a');
expect(runner).toHaveBeenCalledTimes(1);
});
it('keeps going past a failure when continueOnError is set', async () => {
runner.mockRejectedValueOnce(new Error('nope')).mockResolvedValue({ exitCode: 0 });
const results = await executeDeployCalls([call('cube-a'), call('cube-b')], {
continueOnError: true,
});
expect(results).toHaveLength(2);
expect(results.map((r) => r.success)).toEqual([false, true]);
});
it('invokes onStart before each call', async () => {
const onStart = vi.fn();
await executeDeployCalls([call('cube-a'), call('cube-b', 'web-2')], { onStart });
expect(onStart.mock.calls).toEqual([
['cube-a', 'web-1'],
['cube-b', 'web-2'],
]);
});
it('invokes onProgress with running completed/total counts', async () => {
const onProgress = vi.fn();
await executeDeployCalls([call('cube-a'), call('cube-b')], { onProgress });
expect(onProgress).toHaveBeenCalledTimes(2);
expect(onProgress.mock.calls[0].slice(1)).toEqual([1, 2]);
expect(onProgress.mock.calls[1].slice(1)).toEqual([2, 2]);
});
it('reports progress for the failing call before stopping', async () => {
const onProgress = vi.fn();
runner.mockRejectedValue(new Error('nope'));
await executeDeployCalls([call('cube-a'), call('cube-b')], { onProgress });
expect(onProgress).toHaveBeenCalledTimes(1);
expect(onProgress.mock.calls[0][0].success).toBe(false);
});
it('works without any callbacks supplied', async () => {
await expect(executeDeployCalls([call('cube-a')])).resolves.toHaveLength(1);
});
});