mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* feat(): create map component, add area filtering to the job config * feat(): filter listings by area filter * chore(): cleanup * feat(): solve feedback * feat(): solve most providers * feat(): solve maybe other providers
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
/*
|
|
* 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 { mockFredy, providerConfig } from '../utils.js';
|
|
import { expect } from 'chai';
|
|
import * as provider from '../../lib/provider/kleinanzeigen.js';
|
|
|
|
describe('#kleinanzeigen testsuite()', () => {
|
|
it('should test kleinanzeigen provider', async () => {
|
|
const Fredy = await mockFredy();
|
|
provider.init(providerConfig.kleinanzeigen, [], []);
|
|
return await new Promise((resolve) => {
|
|
const fredy = new Fredy(
|
|
provider.config,
|
|
null,
|
|
null,
|
|
provider.metaInformation.id,
|
|
'kleinanzeigen',
|
|
similarityCache,
|
|
);
|
|
fredy.execute().then((listing) => {
|
|
expect(listing).to.be.a('array');
|
|
const notificationObj = get();
|
|
expect(notificationObj).to.be.a('object');
|
|
expect(notificationObj.serviceName).to.equal('kleinanzeigen');
|
|
notificationObj.payload.forEach((notify) => {
|
|
/** check the actual structure **/
|
|
expect(notify.id).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.title).to.be.not.empty;
|
|
expect(notify.link).that.does.include('https://www.kleinanzeigen.de');
|
|
expect(notify.address).to.be.not.empty;
|
|
});
|
|
resolve();
|
|
});
|
|
});
|
|
});
|
|
});
|