You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/src/extractors/custom/medium.com/index.test.js

115 lines
3.2 KiB
JavaScript

import assert from 'assert';
import URL from 'url';
import cheerio from 'cheerio';
import Mercury from 'mercury';
import getExtractor from 'extractors/get-extractor';
import { excerptContent } from 'utils/text';
const fs = require('fs');
describe('MediumExtractor', () => {
describe('initial test case', () => {
let result;
let url;
beforeAll(() => {
url =
'https://medium.com/the-wtf-economy/wtf-whats-the-future-e52ab9515573#.ilwrgwsks';
const html = fs.readFileSync('./fixtures/medium.com/1477523363921.html');
result = Mercury.parse(url, html, { fallback: false });
});
it('is selected properly', async () => {
// To pass this test, rename your extractor in
// ./src/extractors/custom/medium.com/index.js
// (e.g., CustomExtractor => NYTimesExtractor)
// then add your new extractor to
// src/extractors/all.js
const extractor = getExtractor(url);
assert.equal(extractor.domain, URL.parse(url).hostname);
});
it('returns the title', async () => {
const { title } = await result;
assert.equal(title, 'WTF? Whats The Future?');
});
it('returns the author', async () => {
const { author } = await result;
assert.equal(author, "Tim O'Reilly");
});
it('returns the date_published', async () => {
const { date_published } = await result;
assert.equal(date_published, '2016-10-19T14:24:20.323Z');
});
it('returns the dek', async () => {
const { dek } = await result;
assert.equal(dek, null);
});
it('returns the lead_image_url', async () => {
// To pass this test, fill out the lead_image_url selector
// in ./src/extractors/custom/medium.com/index.js.
const { lead_image_url } = await result;
// Update these values with the expected values from
// the article.
assert.equal(
lead_image_url,
'https://cdn-images-1.medium.com/max/1200/1*3Gzaug9mRc8vvx1cuQWkog.png'
);
});
it('returns the content', async () => {
const { content } = await result;
const $ = cheerio.load(content || '');
const first13 = excerptContent(
$('*')
.first()
.text(),
13
);
// testing that youtube video transform is working
assert.equal(/IAoy3ia2ivI/.test(content), true);
assert.equal(
first13,
'Video of WTF? My talk at the White House Frontiers ConferenceLast Thursday, I'
);
});
});
describe('works with another url', () => {
let result;
let url;
beforeAll(() => {
url =
'https://medium.com/@JakobUlbrich/flag-attributes-in-android-how-to-use-them-ac4ec8aee7d1#.h949wjmyw';
const html = fs.readFileSync('./fixtures/medium.com/1485902752952.html');
result = Mercury.parse(url, html, { fallback: false });
});
it('returns the content', async () => {
const { content } = await result;
const $ = cheerio.load(content || '');
const first13 = excerptContent($.text(), 13);
assert.equal(
first13,
'Im sure you have seen something like the following line very often while'
);
});
});
});