Tested that triggers fire for all properties.

Fixed some action engine issues found.
This commit is contained in:
ThaumRystra
2024-11-07 00:22:46 +02:00
parent 057772c60a
commit 2c431293e0
9 changed files with 197 additions and 75 deletions

View File

@@ -9,53 +9,91 @@ import {
import CreatureProperties from '/imports/api/creature/creatureProperties/CreatureProperties';
const [
creatureId, targetCreatureId, targetCreature2Id, actionWithTriggerId, triggerBeforeActionId,
triggerAfterActionId, triggerAfterActionChildrenId
creatureId, targetCreatureId, targetCreature2Id,
] = getRandomIds(100);
const idMap: Record<string, string> = {};
const propsWithTriggers = ([
{ type: 'action' },
{
type: 'adjustment',
target: 'target',
stat: 'strength',
operation: 'increment',
amount: { calculation: '2' }
},
{
type: 'branch',
branchType: 'if',
condition: { calculation: 'true' },
},
{ type: 'buff' },
{ type: 'buffRemover' },
{
type: 'damage',
amount: { calculation: '1d13 + 3' },
},
{ type: 'note' },
{
type: 'roll',
roll: { calculation: '1d20' },
},
{
type: 'savingThrow',
stat: 'strengthSave',
dc: { calculation: '10' },
},
{ type: 'spell' },
] as any[]).map(prop => {
idMap[prop.type] = Random.id();
idMap[prop.type + 'Before'] = Random.id();
idMap[prop.type + 'After'] = Random.id();
idMap[prop.type + 'AfterChildren'] = Random.id();
prop._id = idMap[prop.type];
prop.name = prop.type;
return prop;
});
const actionTestCreature = {
_id: creatureId,
props: [
// Action with triggers
props: propsWithTriggers.map(prop => [
// Props with triggers
{
_id: actionWithTriggerId,
type: 'action',
tags: ['trigger tag'],
children: [
{
type: 'note',
name: 'Action Child'
name: 'Note Child'
}
],
},
{
_id: triggerBeforeActionId,
...prop,
}, {
_id: idMap[prop.type + 'Before'],
type: 'trigger',
targetTags: ['trigger tag'],
name: 'Before Action Trigger',
name: `Before ${prop.type} Trigger`,
event: 'doActionProperty',
actionPropertyType: 'action',
actionPropertyType: prop.type,
timing: 'before',
},
{
_id: triggerAfterActionId,
}, {
_id: idMap[prop.type + 'After'],
type: 'trigger',
targetTags: ['trigger tag'],
name: 'After Action Trigger',
name: `After ${prop.type} Trigger`,
event: 'doActionProperty',
actionPropertyType: 'action',
actionPropertyType: prop.type,
timing: 'after',
},
{
_id: triggerAfterActionChildrenId,
}, {
_id: idMap[prop.type + 'AfterChildren'],
type: 'trigger',
targetTags: ['trigger tag'],
name: 'After Action Children Trigger',
name: `After ${prop.type} Children Trigger`,
event: 'doActionProperty',
actionPropertyType: 'action',
actionPropertyType: prop.type,
timing: 'afterChildren',
},
],
]).flat(),
}
const actionTargetCreature = {
@@ -93,27 +131,73 @@ describe('Triggers', function () {
await createTestCreature(actionTargetCreature2);
});
it('should run triggers on actions', async function () {
const actionProp = CreatureProperties.findOne(actionWithTriggerId);
assert.deepEqual(actionProp.triggerIds, {
before: [triggerBeforeActionId],
after: [triggerAfterActionId],
afterChildren: [triggerAfterActionChildrenId],
}, 'Prop\'s triggerIds should be set');
const action = await runActionById(actionWithTriggerId);
assert.exists(action);
assert.deepEqual(allLogContent(action), [
it('should run triggers on all props', async function () {
const expectedLogs: any[] = [
{
name: 'Before Action Trigger',
type: 'action',
content: [{ name: 'action' }],
}, {
name: 'Action',
type: 'adjustment',
content: [{ inline: true, name: 'Attribute damage', value: 'strength 2' }],
}, {
name: 'After Action Trigger',
type: 'branch',
content: [],
}, {
name: 'Action Child',
type: 'buff',
content: [{ name: 'buff' }],
noChildren: true,
}, {
name: 'After Action Children Trigger',
type: 'buffRemover',
content: [{ name: 'buffRemover' }],
}, {
type: 'damage',
content: [{
inline: true, name: 'Damage', value: '1d13 [7] + 3\n**10** slashing damage'
}],
}, {
type: 'note',
content: [{ name: 'note' }],
}, {
type: 'roll',
content: [{
name: 'roll', inline: true, value: '1d20 [10]\n**10**'
}],
}, {
type: 'savingThrow',
content: [{ name: 'savingThrow', inline: true, value: 'DC **10**' }],
}, {
type: 'spell',
content: [{ name: 'spell' }],
},
]);
];
for (const log of expectedLogs) try {
const type = log.type;
const actionProp = CreatureProperties.findOne(idMap[type]);
assert.deepEqual(actionProp.triggerIds, {
before: [idMap[type + 'Before']],
after: [idMap[type + 'After']],
afterChildren: [idMap[type + 'AfterChildren']],
}, 'Prop\'s triggerIds should be set');
const action = await runActionById(idMap[type]);
assert.exists(action);
assert.deepEqual(allLogContent(action), [
{
name: `Before ${type} Trigger`,
},
...log.content,
{
name: `After ${type} Trigger`,
},
...log.noChildren ? [] : [{
name: 'Note Child',
}],
{
name: `After ${type} Children Trigger`,
},
]);
} catch (e) {
console.error(`failed when running ${log.type}`);
throw e
}
});
});