forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nightscout#6701 Report storage tests
Functional and unit tests
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
const should = require('should'); | ||
const reportstorage = require('../lib/report/reportstorage'); | ||
|
||
describe('reportstorage unit tests', () => { | ||
|
||
it('reportstorage definition - returns saveProps and getValue function', () => { | ||
reportstorage.should.not.be.undefined(); | ||
(reportstorage.getValue instanceof Function).should.be.true(); | ||
(reportstorage.saveProps instanceof Function).should.be.true(); | ||
}); | ||
|
||
it('reportstorage.getValue returns default properties', () => { | ||
const defaultValues = { | ||
insulin: true, | ||
carbs: true, | ||
basal: true, | ||
notes: false, | ||
food: true, | ||
raw: false, | ||
iob: false, | ||
cob: false, | ||
predicted: false, | ||
openAps: false, | ||
insulindistribution: true, | ||
predictedTruncate: true | ||
}; | ||
let keyCount = 0; | ||
for (const v in defaultValues) { | ||
reportstorage.getValue(v).should.equal(defaultValues[v]); | ||
keyCount++; | ||
} | ||
keyCount.should.equal(Object.keys(defaultValues).length); | ||
}); | ||
|
||
it('reportstorage.saveProps sets property in localstorage', () => { | ||
const storage = require('js-storage').localStorage; | ||
const mockStorage = require('./fixtures/localstorage'); | ||
storage.get = mockStorage.get; | ||
storage.set = mockStorage.set; | ||
reportstorage.saveProps({insulin: false}); | ||
should.exist(mockStorage.get('reportProperties')); | ||
mockStorage.get('reportProperties').insulin.should.be.false(); | ||
}); | ||
|
||
it('reportstorage.saveProps ignores property not tracked', () => { | ||
const storage = require('js-storage').localStorage; | ||
const mockStorage = require('./fixtures/localstorage'); | ||
storage.get = mockStorage.get; | ||
storage.set = mockStorage.set; | ||
reportstorage.saveProps({foo: 'bar'}); | ||
should.exist(mockStorage.get('reportProperties')); | ||
should.not.exist(mockStorage.get('reportProperties').foo); | ||
}); | ||
}); |