mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* adding similarity check * adding paging * fixing tests * docu * better error handling * fixing tests * adjusting page limit * fixing login screen * cleanup * upgrade browser list * prevent spamming the log * fixing tests * removing job listings when removing a job or the user
53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
const similarityCache = require('../../lib/services/similarity-check/similarityCache');
|
|
const mockNotification = require('../mocks/mockNotification');
|
|
const providerConfig = require('./testProvider.json');
|
|
const mockStore = require('../mocks/mockStore');
|
|
const proxyquire = require('proxyquire').noCallThru();
|
|
const expect = require('chai').expect;
|
|
const provider = require('../../lib/provider/immonet');
|
|
|
|
describe('#immonet testsuite()', () => {
|
|
after(() => {
|
|
similarityCache.stopCacheCleanup();
|
|
});
|
|
|
|
provider.init(providerConfig.immonet, [], []);
|
|
const Fredy = proxyquire('../../lib/FredyRuntime', {
|
|
'./services/storage/listingsStorage': {
|
|
...mockStore,
|
|
},
|
|
'./notification/notify': mockNotification,
|
|
});
|
|
|
|
it('should test immonet provider', async () => {
|
|
return await new Promise((resolve) => {
|
|
const fredy = new Fredy(provider.config, null, provider.metaInformation.id, 'test1', similarityCache);
|
|
fredy.execute().then((listing) => {
|
|
expect(listing).to.be.a('array');
|
|
|
|
const notificationObj = mockNotification.get();
|
|
expect(notificationObj).to.be.a('object');
|
|
expect(notificationObj.serviceName).to.equal('immonet');
|
|
|
|
notificationObj.payload.forEach((notify) => {
|
|
/** 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.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();
|
|
});
|
|
});
|
|
});
|
|
});
|