33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
import R from 'ramda'
|
|
import {expect} from 'chai'
|
|
import {rules, enrichRule, findVariantsAndRecords} from '../source/engine/rules'
|
|
import {analyseSituation, analyseTopDown} from '../source/engine/traverse'
|
|
|
|
let stateSelector = (state, name) => null
|
|
|
|
describe('enrichRule', function() {
|
|
|
|
it('should extract the type of the rule', function() {
|
|
let rule = {cotisation:{}}
|
|
expect(enrichRule(rule)).to.have.property('type','cotisation')
|
|
});
|
|
|
|
it('should load external data into the rule', function() {
|
|
let data = {taux_versement_transport: {one: "two"}}
|
|
let rule = {cotisation:{}, données: 'taux_versement_transport'}
|
|
expect(enrichRule(rule, data)).to.have.deep.property('data',{one: "two"})
|
|
});
|
|
|
|
it('should extract the dotted name of the rule', function() {
|
|
let rule = {espace:"contrat salarié", nom: "CDD"}
|
|
expect(enrichRule(rule)).to.have.property('name','CDD')
|
|
expect(enrichRule(rule)).to.have.property('dottedName','contrat salarié . CDD')
|
|
});
|
|
|
|
it('should render Markdown in sub-questions', function() {
|
|
let rule = {"sous-question":"**wut**"}
|
|
expect(enrichRule(rule)).to.have.property('subquestion','<p><strong>wut</strong></p>\n')
|
|
});
|
|
|
|
});
|