Files
cgm-remote-monitor/tests/reportstorage.test.js
T
b188a2a565 #6701 Report storage tests (#6814)
* #6701 Report storage tests

Functional and unit tests

* #6701 Test cleanup

* #6701 js-storage teardown

The first time js-storage is required it evaluates if it's running in the browser or not: https://github.com/julien-maurel/js-storage/blob/master/js.storage.js#L423 and will define the localstorage getters and setters accordingly. This becomes an issue if testing localstorage between UI and non-UI tests. reportstorage.test.js was requiring it before hashauth.test.js causing a conflict.

* #6701 false positive test

The page isn't refreshing

Co-authored-by: Sulka Haro <sulka@sulka.net>
2021-01-31 12:41:00 +02:00

61 lines
2.0 KiB
JavaScript

const should = require('should');
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
};
describe('reportstorage unit tests', () => {
let reportstorage, storage, mockStorage;
beforeEach(() => {
reportstorage = require('../lib/report/reportstorage');
storage = require('js-storage').localStorage;
mockStorage = require('./fixtures/localstorage');
storage.get = mockStorage.get;
storage.set = mockStorage.set;
});
afterEach(() => {
delete require.cache[require.resolve('js-storage')];
delete require.cache[require.resolve('./fixtures/localstorage')];
delete require.cache[require.resolve('../lib/report/reportstorage')];
});
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', () => {
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', () => {
reportstorage.saveProps({insulin: false});
should.exist(mockStorage.get('reportProperties'));
mockStorage.get('reportProperties').insulin.should.be.false();
});
it('reportstorage.saveProps ignores property not tracked', () => {
reportstorage.saveProps({foo: 'bar'});
should.exist(mockStorage.get('reportProperties'));
should.not.exist(mockStorage.get('reportProperties').foo);
});
});