-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrading dependencies | using scraping ant for neubaukompass
- Loading branch information
Christian Kellner
authored and
Christian Kellner
committed
Jul 24, 2024
1 parent
d344ee6
commit ef8c0db
Showing
8 changed files
with
1,672 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,44 @@ | ||
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 {get} from '../mocks/mockNotification.js'; | ||
import {mockFredy, providerConfig} from '../utils.js'; | ||
import {expect} from 'chai'; | ||
import * as provider from '../../lib/provider/neubauKompass.js'; | ||
import * as scrapingAnt from '../../lib/services/scrapingAnt.js'; | ||
|
||
describe('#neubauKompass testsuite()', () => { | ||
after(() => { | ||
similarityCache.stopCacheCleanup(); | ||
}); | ||
provider.init(providerConfig.neubauKompass, [], []); | ||
it('should test neubauKompass provider', async () => { | ||
const Fredy = await mockFredy(); | ||
return await new Promise((resolve) => { | ||
const fredy = new Fredy(provider.config, null, provider.metaInformation.id, 'neubauKompass', similarityCache); | ||
fredy.execute().then((listing) => { | ||
expect(listing).to.be.a('array'); | ||
const notificationObj = get(); | ||
expect(notificationObj.serviceName).to.equal('neubauKompass'); | ||
notificationObj.payload.forEach((notify) => { | ||
expect(notify).to.be.a('object'); | ||
/** 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.neubaukompass.de'); | ||
expect(notify.address).to.be.not.empty; | ||
after(() => { | ||
similarityCache.stopCacheCleanup(); | ||
}); | ||
provider.init(providerConfig.neubauKompass, [], []); | ||
it.only('should test neubauKompass provider', async () => { | ||
const Fredy = await mockFredy(); | ||
return await new Promise((resolve) => { | ||
if (!scrapingAnt.isScrapingAntApiKeySet()) { | ||
/* eslint-disable no-console */ | ||
console.info('Skipping Neubaukompass test as ScrapingAnt Api Key is not set.'); | ||
/* eslint-enable no-console */ | ||
resolve(); | ||
return; | ||
} | ||
const fredy = new Fredy(provider.config, null, provider.metaInformation.id, 'neubauKompass', similarityCache); | ||
fredy.execute().then((listing) => { | ||
expect(listing).to.be.a('array'); | ||
const notificationObj = get(); | ||
expect(notificationObj.serviceName).to.equal('neubauKompass'); | ||
notificationObj.payload.forEach((notify) => { | ||
expect(notify).to.be.a('object'); | ||
/** 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.neubaukompass.de'); | ||
expect(notify.address).to.be.not.empty; | ||
}); | ||
resolve(); | ||
}); | ||
}); | ||
resolve(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.