Skip to content

Commit 02eafa5

Browse files
os-zhuangclaude
andauthored
test(automation): end-to-end coverage for the #1928 object-schema resolver wiring (#3208)
Adds a kernel-level integration test that boots LiteKernel with a fake objectql service (registry.getObject) + AutomationServicePlugin and proves the plugin bridges the engine's object-schema resolver to the live registry at start(): - the wired resolver returns the object's fields + types; - a flow registered through the running kernel doing arithmetic on a text field emits the tier-4 advisory (captured via process.stdout); - a sound condition stays quiet. Locks in the production integration point that #3190's engine-level unit tests (resolver set by hand) could not exercise. Test-only; no behavior change. Tests: service-automation 319 (+3 e2e); full suite green. Claude-Session: https://claude.ai/code/session_01Hnji7EEYR2mGt6pY53a8Bm Co-authored-by: Claude <noreply@anthropic.com>
1 parent efbcfe1 commit 02eafa5

2 files changed

Lines changed: 124 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"@objectstack/service-automation": patch
3+
---
4+
5+
test(automation): end-to-end coverage for the #1928 object-schema resolver wiring
6+
7+
Adds a kernel-level integration test proving `AutomationServicePlugin` bridges
8+
the engine's object-schema resolver to the live `objectql.registry.getObject` at
9+
`start()` (fields + types resolved from the registry), and that a flow
10+
registered through the running kernel with a text field misused in arithmetic
11+
emits the tier-4 advisory — while a sound condition stays quiet. Locks in the
12+
production integration point that the engine-level unit tests (which set the
13+
resolver by hand) could not exercise. Test-only; no behavior change.
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
2+
3+
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest';
4+
import { LiteKernel } from '@objectstack/core';
5+
import type { Plugin, PluginContext } from '@objectstack/core';
6+
7+
import { AutomationServicePlugin } from './plugin.js';
8+
import type { AutomationEngine } from './engine.js';
9+
10+
/**
11+
* End-to-end coverage for the #1928 production wiring: `AutomationServicePlugin`
12+
* must, at `start()`, bridge the engine's object-schema resolver to the live
13+
* `objectql.registry.getObject`. The engine-level tests set the resolver by
14+
* hand; this proves the PLUGIN actually wires it from a real service and that a
15+
* flow registered through the running kernel gets the schema-aware advisory.
16+
*
17+
* A minimal fake `objectql` plugin supplies `registry.getObject` — the exact
18+
* seam the plugin consumes. Bootstrap runs every `init()` before any `start()`,
19+
* so the service is present when automation's `start()` looks it up.
20+
*/
21+
function fakeObjectqlPlugin(): Plugin {
22+
return {
23+
name: 'fake-objectql',
24+
version: '1.0.0',
25+
async init(ctx: PluginContext) {
26+
(ctx as unknown as { registerService(name: string, svc: unknown): void }).registerService('objectql', {
27+
registry: {
28+
getObject: (name: string) =>
29+
name === 'crm_opportunity'
30+
? {
31+
name,
32+
fields: {
33+
amount: { type: 'currency' },
34+
title: { type: 'text' },
35+
is_active: { type: 'boolean' },
36+
stage: { type: 'select' },
37+
},
38+
}
39+
: undefined,
40+
},
41+
});
42+
},
43+
};
44+
}
45+
46+
const oppFlow = (condition: string) => ({
47+
name: 'opp_flow',
48+
label: 'Opportunity Flow',
49+
type: 'record_change',
50+
nodes: [
51+
{ id: 'start', type: 'start', label: 'Start', config: { objectName: 'crm_opportunity' } },
52+
{ id: 'check', type: 'decision', label: 'Check', config: { condition } },
53+
{ id: 'end', type: 'end', label: 'End' },
54+
],
55+
edges: [
56+
{ id: 'e1', source: 'start', target: 'check' },
57+
{ id: 'e2', source: 'check', target: 'end' },
58+
],
59+
});
60+
61+
describe('AutomationServicePlugin — object-schema resolver wired end-to-end (#1928)', () => {
62+
let kernel: LiteKernel;
63+
let engine: AutomationEngine;
64+
let stdout: string[];
65+
let stdoutSpy: ReturnType<typeof vi.spyOn>;
66+
67+
beforeEach(async () => {
68+
stdout = [];
69+
// `warn` logs go to process.stdout (non-error level); capture without
70+
// forwarding so we can assert on the registration advisory.
71+
stdoutSpy = vi.spyOn(process.stdout, 'write').mockImplementation(((chunk: unknown) => {
72+
stdout.push(String(chunk));
73+
return true;
74+
}) as never);
75+
kernel = new LiteKernel();
76+
kernel.use(fakeObjectqlPlugin());
77+
kernel.use(new AutomationServicePlugin());
78+
await kernel.bootstrap();
79+
engine = kernel.getService('automation') as AutomationEngine;
80+
});
81+
82+
afterEach(async () => {
83+
stdoutSpy.mockRestore();
84+
await kernel.shutdown();
85+
});
86+
87+
it('bridges the resolver to objectql.registry.getObject (fields + types)', () => {
88+
const resolver = (engine as unknown as { objectSchemaResolver: ((n: string) => unknown) | null })
89+
.objectSchemaResolver;
90+
expect(typeof resolver).toBe('function');
91+
const schema = resolver!('crm_opportunity') as { fields: string[]; fieldTypes: Record<string, string> };
92+
expect(schema.fields.slice().sort()).toEqual(['amount', 'is_active', 'stage', 'title']);
93+
expect(schema.fieldTypes).toMatchObject({ amount: 'currency', title: 'text', is_active: 'boolean' });
94+
expect(resolver!('does_not_exist')).toBeUndefined();
95+
});
96+
97+
it('emits a tier-4 advisory when a registered flow does arithmetic on a text field', () => {
98+
stdout.length = 0;
99+
expect(() => engine.registerFlow('opp_flow', oppFlow('title * 2 > 10'))).not.toThrow();
100+
const logged = stdout.join('');
101+
expect(logged).toMatch(/type mismatch/i);
102+
expect(logged).toMatch(/title/);
103+
});
104+
105+
it('emits no schema advisory for a sound flow condition', () => {
106+
stdout.length = 0;
107+
engine.registerFlow('opp_flow_ok', oppFlow('stage == "won" && amount > 1000'));
108+
const logged = stdout.join('');
109+
expect(logged).not.toMatch(/type mismatch|did you mean|unknown field/i);
110+
});
111+
});

0 commit comments

Comments
 (0)