mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* Fix and improve immowelt provider * Add description to immonet provider * Fix tests and improve readability
40 lines
1.5 KiB
JavaScript
40 lines
1.5 KiB
JavaScript
import * as similarityCache from '../../lib/services/similarity-check/similarityCache.js';
|
|
import { get } from '../mocks/mockNotification.js';
|
|
import { mockFredy, providerConfig } from '../utils.js';
|
|
import { expect } from 'chai';
|
|
import * as provider from '../../lib/provider/immowelt.js';
|
|
|
|
describe('#immowelt testsuite()', () => {
|
|
after(() => {
|
|
similarityCache.stopCacheCleanup();
|
|
});
|
|
|
|
it('should test immowelt provider', async () => {
|
|
const Fredy = await mockFredy();
|
|
provider.init(providerConfig.immowelt, [], []);
|
|
|
|
const fredy = new Fredy(provider.config, null, provider.metaInformation.id, 'immowelt', similarityCache);
|
|
const listing = await fredy.execute();
|
|
|
|
expect(listing).to.be.a('array');
|
|
const notificationObj = get();
|
|
expect(notificationObj).to.be.a('object');
|
|
expect(notificationObj.serviceName).to.equal('immowelt');
|
|
notificationObj.payload.forEach((notify) => {
|
|
/** check the actual structure **/
|
|
expect(notify.id).to.be.a('string');
|
|
expect(notify.price).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 **/
|
|
if (notify.size != null && notify.size.trim().toLowerCase() !== 'k.a.') {
|
|
expect(notify.size).that.does.include('m²');
|
|
}
|
|
expect(notify.title).to.be.not.empty;
|
|
expect(notify.link).that.does.include('https://www.immowelt.de');
|
|
expect(notify.address).to.be.not.empty;
|
|
});
|
|
});
|
|
});
|