forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareportal.test.js
101 lines (74 loc) · 2.46 KB
/
careportal.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
96
97
98
99
100
101
'use strict';
require('should');
var benv = require('benv');
var nowData = {
sgvs: [
{ mgdl: 100, mills: Date.now(), direction: 'Flat', type: 'sgv' }
]
, treatments: []
};
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
describe('careportal', function ( ) {
this.timeout(60000); // TODO: see why this test takes longer on Travis to complete
var headless = require('./fixtures/headless')(benv, this);
before(function (done) {
const t = Date.now();
console.log('Starting headless setup for Careportal test');
function d () {
console.log('Done called by headless', Date.now() - t );
done();
}
headless.setup({mockAjax: true}, d);
console.log('Headless setup for Careportal test done');
});
after(function (done) {
headless.teardown( );
done( );
});
it ('open careportal, and enter a treatment', async () =>{
console.log('Careportal test client start');
var client = window.Nightscout.client;
var hashauth = require('../lib/client/hashauth');
hashauth.init(client,$);
hashauth.verifyAuthentication = function mockVerifyAuthentication(next) {
hashauth.authenticated = true;
next(true);
};
console.log('Careportal test client init');
client.init();
sleep(50);
console.log('Careportal test client data update');
client.dataUpdate(nowData, true);
sleep(50);
client.careportal.prepareEvents();
$('#eventType').val('Snack Bolus');
$('#glucoseValue').val('100');
$('#carbsGiven').val('10');
$('#insulinGiven').val('0.60');
$('#preBolus').val(15);
$('#notes').val('Testing');
$('#enteredBy').val('Dad');
//simulate some events
client.careportal.eventTimeTypeChange();
client.careportal.dateTimeFocus();
client.careportal.dateTimeChange();
window.confirm = function mockConfirm (message) {
function containsLine (line) {
message.indexOf(line + '\n').should.be.greaterThan(0);
}
containsLine('Event Type: Snack Bolus');
containsLine('Blood Glucose: 100');
containsLine('Carbs Given: 10');
containsLine('Insulin Given: 0.60');
containsLine('Carb Time: 15 mins');
containsLine('Notes: Testing');
containsLine('Entered By: Dad');
return true;
};
window.alert = function mockAlert(messages) { messages.should.equal(''); };
console.log('Careportal test saving');
client.careportal.save();
});
});