mercury-parser/scripts/check-build.test.js
Kevin Ngao f2e3f055c2 Fixes an issue with encoding (#154)
* fix: fixes an issue with encoding on the fetch level
2017-03-10 17:40:31 -05:00

54 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* eslint-disable global-require, no-undef */
import assert from 'assert';
import cheerio from 'cheerio';
let urls = [
{
url: 'http://www.cnn.com/2016/11/05/middleeast/iraq-mosul-isis-offensive/',
title: 'Iraqi troops storm town south of Mosul',
},
{
url: 'https://www.washingtonpost.com/news/post-nation/wp/2016/11/05/a-vile-and-disgusting-act-officer-accused-of-giving-fecal-sandwich-to-homeless-man-is-fired/',
title: 'A vile and disgusting act: Officer accused of giving fecal sandwich to homeless man is fired',
},
];
// don't run this on CI b/c we want to avoid network requests
if (process.env.CI) {
describe('Tests', () => {
it('do not run because this is CI and we do not want network requests', () => {
assert.equal(true, true);
});
});
} else {
if (cheerio.browser) {
require('../dist/mercury.web');
}
const Merc = typeof Mercury === 'undefined' ? require('../dist/mercury') : Mercury;
describe('Is Mercury build working', () => {
beforeAll(() => {
if (Merc.browser) {
const proxyUrl = 'http://localhost:3000/';
urls = urls.map(article => ({
title: article.title,
url: proxyUrl + article.url,
}));
}
});
urls.map(article =>
it(`gets this title right ${article.title}`, (done) => {
Merc.parse(article.url).then((result) => {
assert.equal(article.title, result.title);
done();
}).catch((e) => {
console.log(e.name, e.message); // eslint-disable-line no-console
assert.equal(true, false);
done();
});
})
);
});
}