-
Notifications
You must be signed in to change notification settings - Fork 2
/
risk-algo.test.js
95 lines (94 loc) · 3.76 KB
/
risk-algo.test.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const { riskEval } = require('./risk-eval');
const riskAlgo = {
records: [
{
_id: 1,
fever: 0,
one_uri_symp: 0,
travel_risk_country: 0,
covid19_contact: 0,
close_risk_country: 0,
int_contact: 0,
med_prof: 0,
close_con: 0,
risk_level: 1,
gen_action: 'ล้างมือ สวมหน้ากาก หลีกเลี่ยงที่แออัด',
spec_action: ' ',
},
{
_id: 2,
fever: 0,
one_uri_symp: 0,
travel_risk_country: 1,
covid19_contact: 0,
close_risk_country: 0,
int_contact: 0,
med_prof: 0,
close_con: 0,
risk_level: 3,
gen_action: 'ล้างมือ สวมหน้ากาก หลีกเลี่ยงที่แออัด',
spec_action:
'เนื่องจากท่านมีประวัติเดินทางจากพื้นที่เสี่ยง ให้กักตัว 14 วัน พร้อมเฝ้าระวังอาการ ถ้ามีอาการไข้ ร่วมกับ อาการระบบทางเดินหายใจ ให้ติดต่อสถานพยาบาลทันที',
},
{
_id: 3,
fever: 0,
one_uri_symp: 0,
travel_risk_country: 0,
covid19_contact: 1,
close_risk_country: 0,
int_contact: 0,
med_prof: 0,
close_con: 0,
risk_level: 3,
gen_action: 'ล้างมือ สวมหน้ากาก หลีกเลี่ยงที่แออัด',
spec_action:
'เนื่องจากท่านมีประวัติอยู่ใกล้ชิดผู้ป่วยยืนยันCOVID-19 ให้ติดต่อเจ้าหน้าที่ควบคุมโรค เพื่อประเมินความเสี่ยง',
},
],
};
describe('RiskAlgo', () => {
it('should find match record', () => {
const result = riskEval(
{
fever: 0,
one_uri_symp: 0,
travel_risk_country: 0,
covid19_contact: 1,
close_risk_country: 0,
int_contact: 0,
med_prof: 0,
close_con: 0,
},
{ riskAlgo },
);
expect(result).toEqual({
risk_level: 3,
gen_action: 'ล้างมือ สวมหน้ากาก หลีกเลี่ยงที่แออัด',
spec_action:
'เนื่องจากท่านมีประวัติอยู่ใกล้ชิดผู้ป่วยยืนยันCOVID-19 ให้ติดต่อเจ้าหน้าที่ควบคุมโรค เพื่อประเมินความเสี่ยง',
});
});
it('should find match record #2', () => {
expect(
riskEval(
{
fever: 0,
one_uri_symp: 0,
travel_risk_country: 1,
covid19_contact: 0,
close_risk_country: 0,
int_contact: 0,
med_prof: 0,
close_con: 0,
},
{ riskAlgo },
),
).toEqual({
risk_level: 3,
gen_action: 'ล้างมือ สวมหน้ากาก หลีกเลี่ยงที่แออัด',
spec_action:
'เนื่องจากท่านมีประวัติเดินทางจากพื้นที่เสี่ยง ให้กักตัว 14 วัน พร้อมเฝ้าระวังอาการ ถ้ามีอาการไข้ ร่วมกับ อาการระบบทางเดินหายใจ ให้ติดต่อสถานพยาบาลทันที',
});
});
});