mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
52 lines
2.1 KiB
JavaScript
52 lines
2.1 KiB
JavaScript
const mockNotification = require('./mocks/mockNotification');
|
|
const mockConfig = require('../conf/config.test');
|
|
const mockStore = require('./mocks/mockStore');
|
|
const mockStats = require('./mocks/mockStats');
|
|
const proxyquire = require('proxyquire').noCallThru();
|
|
const expect = require('chai').expect;
|
|
|
|
describe('#immonet testsuite()', () => {
|
|
|
|
const immonet = proxyquire('../lib/provider/immonet', {
|
|
'../../conf/config.json': mockConfig,
|
|
'../lib/fredy': proxyquire('../lib/fredy', {
|
|
'./services/store': mockStore,
|
|
'./notification/notify': mockNotification
|
|
})
|
|
});
|
|
|
|
it('should test immonet provider', async () => {
|
|
return await new Promise(resolve => {
|
|
immonet.run(mockStats).then(() => {
|
|
const immonetDbContent = immonet._getStore()._db;
|
|
|
|
expect(immonetDbContent.immonet).to.be.a('array');
|
|
|
|
const notificationObj = mockNotification.get();
|
|
expect(notificationObj).to.be.a('object');
|
|
expect(notificationObj.serviceName).to.equal('immonet');
|
|
|
|
|
|
notificationObj.payload.forEach((notify, idx) => {
|
|
/** check the actual structure **/
|
|
expect(notify.id).to.be.a('number');
|
|
expect(notify.price).to.be.a('string');
|
|
expect(notify.size).to.be.a('string');
|
|
expect(notify.title).to.be.a('string');
|
|
expect(notify.link).to.be.a('string');
|
|
expect(notify.address).to.be.a('string');
|
|
|
|
/** check the values if possible **/
|
|
expect(notify.id).to.equal(immonetDbContent.immonet[idx]);
|
|
expect(notify.price).that.does.include('€');
|
|
expect(notify.size).that.does.include('m²');
|
|
expect(notify.title).to.be.not.empty;
|
|
expect(notify.link).that.does.include('https://www.immonet.de');
|
|
expect(notify.address).to.be.not.empty;
|
|
});
|
|
resolve();
|
|
});
|
|
});
|
|
});
|
|
});
|