chore: add tests for writing seo

This commit is contained in:
Aaron Yarborough 2024-08-22 19:35:33 +01:00
parent 788e90a77f
commit 94fe6b5c87
2 changed files with 73 additions and 0 deletions

View file

@ -13,6 +13,7 @@
"Hetzner",
"Integra",
"Levantine",
"opengraph",
"Orangebus",
"pipdig",
"pubdate",
@ -30,5 +31,8 @@
"editor.defaultFormatter": "standard.vscode-standard",
"[javascript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[javascriptreact]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
}
}

View file

@ -0,0 +1,69 @@
/* eslint-env jest */
import { render } from '@testing-library/react'
import '@testing-library/jest-dom'
import Writing from '.'
jest.mock('next/head', () => {
return {
__esModule: true,
default: ({ children }) => {
return <>{children}</>
}
}
})
describe('Writing', () => {
it('renders without crashing', () => {
render(
getStubWritingComponent())
})
it('renders meta title', async () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('title')).toHaveTextContent('Writing')
})
it('renders opengraph title', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[property="og:title"]'))
.toHaveAttribute('content', 'Writing')
})
it('renders meta description', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[name="description"]'))
.toHaveAttribute('content', 'Come get ya thoughts, ramblings, technical writing and other long-from text content here!')
})
it('renders opengraph description', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[property="og:description"]'))
.toHaveAttribute('content', 'Come get ya thoughts, ramblings, technical writing and other long-from text content here!')
})
})
function getStubWritingComponent () {
const entries = [
{
attributes: {
title: 'My title one',
pubdate: 'Mon, 18 Mar 2024 16:47:32 GMT',
desc: 'This is my description.'
},
html: '<p>This is some content</p>',
slug: 'my-title-one'
},
{
attributes: {
title: 'My title Two',
pubdate: 'Mon, 19 Mar 2024 16:47:32 GMT',
desc: 'This is my description.'
},
html: '<p>This is some content</p>',
slug: 'my-title-two'
}
]
return <Writing entries={entries} urlPrefix='/' />
}