-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspawn-invoke-json.test.ts
39 lines (30 loc) · 1.05 KB
/
spawn-invoke-json.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import spawn, { SpawnSystem } from '../src/spawn'
import { createJsonActor } from './stubs/actors'
import { describe, beforeAll, afterAll, test, expect } from 'bun:test'
describe('testing invoke', () => {
let system: SpawnSystem
beforeAll(async () => {
system = spawn.createSystem('SpawnSysTest')
createJsonActor(system)
const registered = await system.register()
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
})
afterAll(async () => {
await system.destroy()
})
test('using default proxy function "getState" to get the current state in json_actor01', async () => {
const { sum } = await spawn.invoke('json_actor01', {
action: 'getState',
system: 'SpawnSysTest'
})
expect(sum).toBeGreaterThanOrEqual(0)
})
test('invoking plusOne in json_actor01', async () => {
const { sum } = await spawn.invoke('json_actor01', {
action: 'plusOne',
payload: { value: 1, fwf: 1 },
system: 'SpawnSysTest'
})
expect(sum).toBeGreaterThanOrEqual(1)
})
})