Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allowUndefinedFacts not working when the facts type are string #270

Open
EricCheung3 opened this issue Jun 23, 2021 · 1 comment
Open

allowUndefinedFacts not working when the facts type are string #270

EricCheung3 opened this issue Jun 23, 2021 · 1 comment

Comments

@EricCheung3
Copy link

EricCheung3 commented Jun 23, 2021

Here's my example, you can reproduce the issue with the code:
const customAttributeRule = { "name": "allowUndefinedFacts-test", "attributes": [ { "name": "Astring", "type": "string" }, { "name": "Bnumber", "type": "number" } ], "decisions": [ { "conditions": { "all": [ { "fact": "Astring", "operator": "notEqual", "value": "string" } ] }, "event": { "type": "Astring", "params": { "value": "1", "description": "Astring test" } } }, { "conditions": { "all": [ { "fact": "Bnumber", "operator": "lessThan", "value": 5 } ] }, "event": { "type": "Bnumber", "params": { "value": "1", "description": "Bnumber test" } } } ] }
let facts = {}
const engine = new Engine(customAttributeRule.decisions, {allowUndefinedFacts: true}); engine.on('success', event => { console.log(event) });
let result = engine .run(facts)
The engine output is
{ type: 'Astring', params: { value: '1', description: 'Astring test' } }
However, the allowUndefinedFacts works when then fact type is number

Since the engine treat undefined facts as undefined, so I added another condition that { "fact": "Astring", "operator": "notEqual", "value": "undefined" }, but it still does not work as expected

@megha-sethi16
Copy link

megha-sethi16 commented Oct 16, 2024

I believe the issue lies not with the string or number, but with the operator and how it evaluates the facts.
For instance, when I pass the condition
{ "fact": "Bnumber", "operator": "notEqual", "value": 5 },
it still returns the rule with this condition, as it assumes that if the fact is not provided, undefined is not equal to 5, which is correct.
However, with other operators like equal, lessThan, or in, the behaviour is as expected: they do not match undefined with any condition and do not return the rules.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants