Skip to content

Commit

Permalink
feat: cbs sports parser (#98)
Browse files Browse the repository at this point in the history
* feat: cbs sports parser
  • Loading branch information
janetleekim authored and kev5873 committed Feb 7, 2017
1 parent 3cf2d0d commit 3c5fa28
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fixtures/www.cbssports.com/1482254907948.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/extractors/custom/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export * from './www.reuters.com';
export * from './mashable.com';
export * from './www.chicagotribune.com';
export * from './www.vox.com';
export * from './www.cbssports.com';
export * from './www.msnbc.com';
export * from './www.thepoliticalinsider.com';
export * from './www.mentalfloss.com';
Expand Down
52 changes: 52 additions & 0 deletions src/extractors/custom/www.cbssports.com/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
export const WwwCbssportsComExtractor = {
domain: 'www.cbssports.com',

title: {
selectors: [
'.article-headline',
],
},

author: {
selectors: [
'.author-name',
],
},

date_published: {
selectors: [
['.date-original-reading-time time', 'datetime'],
],
timezone: 'UTC',
},

dek: {
selectors: [
'.article-subline',
],
},

lead_image_url: {
selectors: [
['meta[name="og:image"]', 'value'],
],
},

content: {
selectors: [
'.article',
],

// Is there anything in the content you selected that needs transformed
// before it's consumable content? E.g., unusual lazy loaded images
transforms: {
},

// Is there anything that is in the result that shouldn't be?
// The clean selectors will remove anything that matches from
// the result
clean: [

],
},
};
97 changes: 97 additions & 0 deletions src/extractors/custom/www.cbssports.com/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
import assert from 'assert';
import fs from 'fs';
import URL from 'url';
import cheerio from 'cheerio';

import Mercury from 'mercury';
import getExtractor from 'extractors/get-extractor';
import { excerptContent } from 'utils/text';

describe('WwwCbssportsComExtractor', () => {
describe('initial test case', () => {
let result;
let url;
beforeAll(() => {
url =
'http://www.cbssports.com/mlb/news/why-despite-the-complaints-of-many-mlb-players-are-actually-not-overpaid/';
const html =
fs.readFileSync('./fixtures/www.cbssports.com/1482254907948.html');
result =
Mercury.parse(url, html, { fallback: false });
});

it('is selected properly', () => {
// This test should be passing by default.
// It sanity checks that the correct parser
// is being selected for URLs from this domain
const extractor = getExtractor(url);
assert.equal(extractor.domain, URL.parse(url).hostname);
});

it('returns the title', async () => {
// To pass this test, fill out the title selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
const { title } = await result;

// Update these values with the expected values from
// the article.
assert.equal(title, 'Why, despite the complaints of many, MLB players are actually not overpaid');
});

it('returns the author', async () => {
// To pass this test, fill out the author selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
const { author } = await result;

// Update these values with the expected values from
// the article.
assert.equal(author, 'Matt Snyder');
});

it('returns the date_published', async () => {
// To pass this test, fill out the date_published selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
const { date_published } = await result;

// Update these values with the expected values from
// the article.
assert.equal(date_published, '2016-12-19T19:19:00.000Z');
});

it('returns the dek', async () => {
// To pass this test, fill out the dek selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
const { dek } = await result;

// Update these values with the expected values from
// the article.
assert.equal(dek, 'Fan backlash against league-wide salaries is wholly misguided');
});

it('returns the lead_image_url', async () => {
// To pass this test, fill out the lead_image_url selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
const { lead_image_url } = await result;

// Update these values with the expected values from
// the article.
assert.equal(lead_image_url, 'http://sportshub.cbsistatic.com/i/r/2016/12/19/4afa0e8e-b3b8-4c44-aca2-688cd11e9b39/thumbnail/770x433/f8a6d661a00ba87cb98847bdef9dfbad/yoenis-cespedes-121916.jpg');
});

it('returns the content', async () => {
// To pass this test, fill out the content selector
// in ./src/extractors/custom/www.cbssports.com/index.js.
// You may also want to make use of the clean and transform
// options.
const { content } = await result;

const $ = cheerio.load(content || '');

const first13 = excerptContent($('*').first().text(), 13);

// Update these values with the expected values from
// the article.
assert.equal(first13, 'Once the World Series ends, we know we\'re going to be treated to');
});
});
});

0 comments on commit 3c5fa28

Please sign in to comment.