feat: add www.ossnews.jp custom parser (#352)

pull/351/head^2
kik0220 5 years ago committed by Toufic Mouallem
parent c309bdb373
commit f3a7e393a3

File diff suppressed because one or more lines are too long

@ -96,3 +96,4 @@ export * from './news.mynavi.jp';
export * from './github.com';
export * from './www.reddit.com';
export * from './otrs.com';
export * from './www.ossnews.jp';

@ -0,0 +1,27 @@
export const WwwOssnewsJpExtractor = {
domain: 'www.ossnews.jp',
title: {
selectors: ['#alpha-block h1.hxnewstitle'],
},
author: null,
date_published: null,
dek: null,
lead_image_url: {
selectors: [['meta[name="og:image"]', 'value']],
},
content: {
selectors: ['#alpha-block .section:has(h1.hxnewstitle)'],
defaultCleaner: false,
transforms: {},
clean: [],
},
};

@ -0,0 +1,111 @@
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('WwwOssnewsJpExtractor', () => {
describe('initial test case', () => {
let result;
let url;
beforeAll(() => {
url = 'http://www.ossnews.jp/oss_info/article.html?oid=8976';
const html = fs.readFileSync(
'./fixtures/www.ossnews.jp/1552736892695.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.ossnews.jp/index.js.
const { title } = await result;
// Update these values with the expected values from
// the article.
assert.equal(
title,
`【OSS】2018年のオープンソースプロジェクト10選---「Visual Studio Code」「Vault」「Angular CLI」`
);
});
it('returns the author', async () => {
// To pass this test, fill out the author selector
// in ./src/extractors/custom/www.ossnews.jp/index.js.
const { author } = await result;
// Update these values with the expected values from
// the article.
assert.equal(author, null);
});
it('returns the date_published', async () => {
// To pass this test, fill out the date_published selector
// in ./src/extractors/custom/www.ossnews.jp/index.js.
const { date_published } = await result;
// Update these values with the expected values from
// the article.
assert.equal(date_published, null);
});
it('returns the dek', async () => {
// To pass this test, fill out the dek selector
// in ./src/extractors/custom/www.ossnews.jp/index.js.
const { dek } = await result;
// Update these values with the expected values from
// the article.
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/www.ossnews.jp/index.js.
const { lead_image_url } = await result;
// Update these values with the expected values from
// the article.
assert.equal(
lead_image_url,
`https://www.ossnews.jp/upload/contents/d31621685b4315555b30c2b16a66fd3b.jpg`
);
});
it('returns the content', async () => {
// To pass this test, fill out the content selector
// in ./src/extractors/custom/www.ossnews.jp/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(),
3
);
// Update these values with the expected values from
// the article.
assert.equal(first13, 'OSS×クラウド最新TOPICS 2019年3月15日 09:43');
});
});
});
Loading…
Cancel
Save