2026-01-09 11:37:03 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2026 by Christian Kellner.
|
|
|
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import * as similarityCache from '../../lib/services/similarity-check/similarityCache.js';
|
|
|
|
|
import { get } from '../mocks/mockNotification.js';
|
|
|
|
|
import { providerConfig, mockFredy } from '../utils.js';
|
|
|
|
|
import { expect } from 'chai';
|
|
|
|
|
import * as provider from '../../lib/provider/wohnungsboerse.js';
|
|
|
|
|
|
|
|
|
|
describe('#wohnungsboerse testsuite()', () => {
|
|
|
|
|
provider.init(providerConfig.wohnungsboerse, [], []);
|
|
|
|
|
it('should test wohnungsboerse provider', async () => {
|
|
|
|
|
const Fredy = await mockFredy();
|
|
|
|
|
return await new Promise((resolve) => {
|
2026-03-08 09:44:18 +01:00
|
|
|
const fredy = new Fredy(
|
|
|
|
|
provider.config,
|
|
|
|
|
null,
|
|
|
|
|
null,
|
|
|
|
|
provider.metaInformation.id,
|
|
|
|
|
'wohnungsboerse',
|
|
|
|
|
similarityCache,
|
|
|
|
|
);
|
2026-01-09 11:37:03 +01:00
|
|
|
fredy.execute().then((listings) => {
|
|
|
|
|
expect(listings).to.be.a('array');
|
|
|
|
|
const notificationObj = get();
|
|
|
|
|
expect(notificationObj).to.be.a('object');
|
|
|
|
|
expect(notificationObj.serviceName).to.equal('wohnungsboerse');
|
|
|
|
|
notificationObj.payload.forEach((notify) => {
|
|
|
|
|
/** check the actual structure **/
|
|
|
|
|
expect(notify.id).to.be.a('string');
|
|
|
|
|
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.size).to.be.not.empty;
|
|
|
|
|
expect(notify.title).to.be.not.empty;
|
|
|
|
|
expect(notify.link).that.does.include('https://www.wohnungsboerse.net');
|
|
|
|
|
});
|
|
|
|
|
resolve();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|