2022-03-03 00:31:15 +00:00
|
|
|
|
import 'mocha'
|
|
|
|
|
|
import { expect } from 'chai'
|
|
|
|
|
|
import 'chai/register-should'
|
|
|
|
|
|
import fs from 'fs'
|
2022-03-14 04:23:47 +00:00
|
|
|
|
import { findNewsletterUrl, isProbablyNewsletter, parsePageMetadata, parsePreparedContent } from '../../src/utils/parser'
|
2022-03-16 22:29:39 +00:00
|
|
|
|
import nock from 'nock'
|
2022-03-03 07:09:10 +00:00
|
|
|
|
|
|
|
|
|
|
const load = (path: string): string => {
|
|
|
|
|
|
return fs.readFileSync(path, 'utf8')
|
|
|
|
|
|
}
|
2022-03-03 00:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
describe('isProbablyNewsletter', () => {
|
|
|
|
|
|
it('returns true for substack newsletter', () => {
|
2022-03-03 04:38:11 +00:00
|
|
|
|
const html = load('./test/utils/data/substack-forwarded-newsletter.html')
|
|
|
|
|
|
isProbablyNewsletter(html).should.be.true
|
2022-03-03 00:31:15 +00:00
|
|
|
|
})
|
2022-03-03 21:42:30 +00:00
|
|
|
|
it('returns true for private forwarded substack newsletter', () => {
|
|
|
|
|
|
const html = load('./test/utils/data/substack-private-forwarded-newsletter.html')
|
|
|
|
|
|
isProbablyNewsletter(html).should.be.true
|
|
|
|
|
|
})
|
2022-03-03 00:31:15 +00:00
|
|
|
|
it('returns false for substack welcome email', () => {
|
2022-03-03 04:38:11 +00:00
|
|
|
|
const html = load('./test/utils/data/substack-forwarded-welcome-email.html')
|
|
|
|
|
|
isProbablyNewsletter(html).should.be.false
|
2022-03-03 00:31:15 +00:00
|
|
|
|
})
|
2022-03-07 23:05:38 +00:00
|
|
|
|
it('returns true for beehiiv.com newsletter', () => {
|
|
|
|
|
|
const html = load('./test/utils/data/beehiiv-newsletter.html')
|
|
|
|
|
|
isProbablyNewsletter(html).should.be.true
|
|
|
|
|
|
})
|
2022-03-03 00:31:15 +00:00
|
|
|
|
})
|
2022-03-03 07:09:10 +00:00
|
|
|
|
|
|
|
|
|
|
describe('findNewsletterUrl', async () => {
|
2022-03-07 23:05:38 +00:00
|
|
|
|
it('gets the URL from the header if it is a substack newsletter', async () => {
|
2022-03-31 18:21:41 +00:00
|
|
|
|
nock('https://newsletter.slowchinese.net')
|
|
|
|
|
|
.head('/p/companies-that-eat-people-217?token=eyJ1c2VyX2lkIjoxMTU0MzM0NSwicG9zdF9pZCI6NDg3MjA5NDAsImlhdCI6MTY0NTI1NzQ1MSwiaXNzIjoicHViLTI4MDUzMSIsInN1YiI6InBvc3QtcmVhY3Rpb24ifQ.l5F3Kx6K9tvy9cRAXx3MepobQBCJDJQgAxOpA0INIZA')
|
|
|
|
|
|
.reply(200, '');
|
2022-03-03 07:09:10 +00:00
|
|
|
|
const html = load('./test/utils/data/substack-forwarded-newsletter.html')
|
|
|
|
|
|
const url = await findNewsletterUrl(html)
|
|
|
|
|
|
// Not sure if the redirects from substack expire, this test could eventually fail
|
|
|
|
|
|
expect(url).to.startWith('https://newsletter.slowchinese.net/p/companies-that-eat-people-217')
|
|
|
|
|
|
})
|
2022-03-07 23:49:44 +00:00
|
|
|
|
it('gets the URL from the header if it is a beehiiv newsletter', async () => {
|
2022-03-31 18:21:41 +00:00
|
|
|
|
nock('https://u23463625.ct.sendgrid.net')
|
|
|
|
|
|
.head('/ss/c/AX1lEgEQaxtvFxLaVo0GBo_geajNrlI1TGeIcmMViR3pL3fEDZnbbkoeKcaY62QZk0KPFudUiUXc_uMLerV4nA/3k5/3TFZmreTR0qKSCgowABnVg/h30/zzLik7UXd1H_n4oyd5W8Xu639AYQQB2UXz-CsssSnno')
|
|
|
|
|
|
.reply(302, undefined,{
|
|
|
|
|
|
'Location': 'https://www.milkroad.com/p/talked-guy-spent-30m-beeple'
|
|
|
|
|
|
})
|
|
|
|
|
|
.get('/p/talked-guy-spent-30m-beeple')
|
|
|
|
|
|
.reply(200, '');
|
2022-03-07 23:05:38 +00:00
|
|
|
|
const html = load('./test/utils/data/beehiiv-newsletter.html')
|
2022-03-07 23:49:44 +00:00
|
|
|
|
const url = await findNewsletterUrl(html)
|
|
|
|
|
|
expect(url).to.startWith('https://www.milkroad.com/p/talked-guy-spent-30m-beeple')
|
2022-03-07 23:05:38 +00:00
|
|
|
|
})
|
2022-03-03 07:09:10 +00:00
|
|
|
|
it('returns undefined if it is not a newsletter', async () => {
|
|
|
|
|
|
const html = load('./test/utils/data/substack-forwarded-welcome-email.html')
|
|
|
|
|
|
const url = await findNewsletterUrl(html)
|
|
|
|
|
|
expect(url).to.be.undefined
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
2022-03-03 21:42:30 +00:00
|
|
|
|
|
2022-03-04 03:40:02 +00:00
|
|
|
|
describe('parseMetadata', async () => {
|
|
|
|
|
|
it('gets author, title, image, description', async () => {
|
|
|
|
|
|
const html = load('./test/utils/data/substack-post.html')
|
|
|
|
|
|
const metadata = await parsePageMetadata(html)
|
|
|
|
|
|
expect(metadata?.author).to.deep.equal('Omnivore')
|
|
|
|
|
|
expect(metadata?.title).to.deep.equal('Code Block Syntax Highlighting')
|
|
|
|
|
|
expect(metadata?.previewImage).to.deep.equal('https://cdn.substack.com/image/fetch/w_1200,h_600,c_fill,f_jpg,q_auto:good,fl_progressive:steep,g_auto/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2ab1f7e8-2ca7-4011-8ccb-43d0b3bd244f_1490x2020.png')
|
|
|
|
|
|
expect(metadata?.description).to.deep.equal('Highlighted <code> in Omnivore')
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
2022-03-14 04:23:47 +00:00
|
|
|
|
|
|
|
|
|
|
describe('parsePreparedContent', async () => {
|
|
|
|
|
|
it('gets published date when JSONLD fails to load', async () => {
|
|
|
|
|
|
const html = load('./test/utils/data/stratechery-blog-post.html')
|
|
|
|
|
|
const result = await parsePreparedContent(
|
|
|
|
|
|
'https://example.com/',
|
|
|
|
|
|
{
|
|
|
|
|
|
document: html,
|
|
|
|
|
|
pageInfo: { }
|
|
|
|
|
|
},
|
|
|
|
|
|
)
|
|
|
|
|
|
expect(result.parsedContent?.publishedDate?.getTime()).to.equal(new Date('2016-04-05T15:27:51+00:00').getTime())
|
|
|
|
|
|
})
|
2022-03-16 22:29:39 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
describe('parsePreparedContent', async () => {
|
|
|
|
|
|
nock('https://oembeddata').get('/').reply(200, {
|
|
|
|
|
|
"version":"1.0",
|
|
|
|
|
|
"provider_name":"Hippocratic Adventures",
|
|
|
|
|
|
"provider_url":"https:\/\/www.hippocraticadventures.com",
|
|
|
|
|
|
"title":"The Ultimate Guide to Practicing Medicine in Singapore – Part 2"
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
it('gets metadata from external JSONLD if available', async () => {
|
|
|
|
|
|
const html = `<html>
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<link rel="alternate" type="application/json+oembed" href="https://oembeddata">
|
|
|
|
|
|
</link
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>body</body>
|
|
|
|
|
|
</html>`
|
|
|
|
|
|
const result = await parsePreparedContent(
|
|
|
|
|
|
'https://example.com/',
|
|
|
|
|
|
{
|
|
|
|
|
|
document: html,
|
|
|
|
|
|
pageInfo: { }
|
|
|
|
|
|
},
|
|
|
|
|
|
)
|
|
|
|
|
|
expect(result.parsedContent?.title).to.equal('The Ultimate Guide to Practicing Medicine in Singapore – Part 2')
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|