test: add component tests
This commit is contained in:
parent
6244568004
commit
4e8c3ee6a6
10 changed files with 141 additions and 5 deletions
|
@ -13,7 +13,7 @@
|
||||||
"format": "npx standard --fix",
|
"format": "npx standard --fix",
|
||||||
"prepare": "husky",
|
"prepare": "husky",
|
||||||
"deploy": "./util/deploy-gcloud.sh",
|
"deploy": "./util/deploy-gcloud.sh",
|
||||||
"test": "jest"
|
"test": "jest --verbose"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "14.1.1",
|
"next": "14.1.1",
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
||||||
|
|
||||||
import style from './CV.module.css'
|
import style from './CV.module.css'
|
||||||
|
|
||||||
function CV ({
|
function Cv ({
|
||||||
competencies,
|
competencies,
|
||||||
education,
|
education,
|
||||||
certifications,
|
certifications,
|
||||||
|
@ -57,7 +57,7 @@ function CV ({
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default CV
|
export default Cv
|
||||||
|
|
||||||
function CVWorkExperience ({ position, employer, start, end, children }) {
|
function CVWorkExperience ({ position, employer, start, end, children }) {
|
||||||
return (
|
return (
|
||||||
|
|
63
src/components/CV/Cv.test.jsx
Normal file
63
src/components/CV/Cv.test.jsx
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render } from '@testing-library/react'
|
||||||
|
import Cv from './Cv'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
|
describe('Cv', () => {
|
||||||
|
const props = {
|
||||||
|
competencies: ['Competency 1', 'Competency 2'],
|
||||||
|
education: 'My education history',
|
||||||
|
certifications: ['Certification 1', 'Certification 2'],
|
||||||
|
languages: [{ name: 'English', proficiency: 'Fluent' }],
|
||||||
|
experience: [
|
||||||
|
{
|
||||||
|
employer: 'Employer 1',
|
||||||
|
position: 'Position 1',
|
||||||
|
start: 'Start date 1',
|
||||||
|
end: 'End date 1',
|
||||||
|
desc: 'Description 1'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
render(<Cv {...props} />)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders competencies', () => {
|
||||||
|
const { getByText } = render(<Cv {...props} />)
|
||||||
|
props.competencies.forEach(competency => {
|
||||||
|
expect(getByText(competency)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders education', () => {
|
||||||
|
const { getByText } = render(<Cv {...props} />)
|
||||||
|
expect(getByText(props.education)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders certifications', () => {
|
||||||
|
const { getByText } = render(<Cv {...props} />)
|
||||||
|
props.certifications.forEach(certification => {
|
||||||
|
expect(getByText(certification)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders languages', () => {
|
||||||
|
const { getByText } = render(<Cv {...props} />)
|
||||||
|
props.languages.forEach(language => {
|
||||||
|
expect(getByText(`${language.name} - ${language.proficiency}`)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders experience', () => {
|
||||||
|
const { getByText } = render(<Cv {...props} />)
|
||||||
|
props.experience.forEach(exp => {
|
||||||
|
expect(getByText(exp.employer)).toBeInTheDocument()
|
||||||
|
expect(getByText(exp.position)).toBeInTheDocument()
|
||||||
|
expect(getByText(exp.start)).toBeInTheDocument()
|
||||||
|
expect(getByText(exp.end)).toBeInTheDocument()
|
||||||
|
expect(getByText(exp.desc)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
28
src/components/ExternalLink/ExsternalLink.test.jsx
Normal file
28
src/components/ExternalLink/ExsternalLink.test.jsx
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render, screen } from '@testing-library/react'
|
||||||
|
import ExternalLink from './ExternalLink'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
|
describe('ExternalLink', () => {
|
||||||
|
const props = {
|
||||||
|
href: 'https://example.com',
|
||||||
|
children: 'Test Link'
|
||||||
|
}
|
||||||
|
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
render(<ExternalLink {...props} />)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders correct href and rel attributes', () => {
|
||||||
|
render(<ExternalLink {...props} />)
|
||||||
|
const link = screen.getByText(props.children)
|
||||||
|
expect(link).toHaveAttribute('href', props.href)
|
||||||
|
expect(link).toHaveAttribute('rel', 'nofollow noopener')
|
||||||
|
expect(link).toHaveAttribute('target', '_blank')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders children correctly', () => {
|
||||||
|
render(<ExternalLink {...props} />)
|
||||||
|
expect(screen.getByText(props.children)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
10
src/components/Footer/Footer.test.jsx
Normal file
10
src/components/Footer/Footer.test.jsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render } from '@testing-library/react'
|
||||||
|
import Footer from './Footer'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
|
describe('Footer', () => {
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
render(<Footer />)
|
||||||
|
})
|
||||||
|
})
|
16
src/components/Grid/Grid.test.jsx
Normal file
16
src/components/Grid/Grid.test.jsx
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render } from '@testing-library/react'
|
||||||
|
import Grid from './Grid'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
|
describe('Grid', () => {
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
const { container } = render(<Grid />)
|
||||||
|
expect(container.firstChild).toHaveClass('grid')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders its children', () => {
|
||||||
|
const { getByText } = render(<Grid><div>Child</div></Grid>)
|
||||||
|
expect(getByText('Child')).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
19
src/components/Header/Header.test.jsx
Normal file
19
src/components/Header/Header.test.jsx
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render, screen } from '@testing-library/react'
|
||||||
|
import Header from './Header'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
|
describe('Header', () => {
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
render(
|
||||||
|
<Header />)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders correct navigation links', () => {
|
||||||
|
render(<Header />)
|
||||||
|
const links = ['Home', 'Writing', 'Recipes', 'Fun', 'CV']
|
||||||
|
links.forEach(link => {
|
||||||
|
expect(screen.getByText(link)).toBeInTheDocument()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
|
@ -1,4 +1,4 @@
|
||||||
import CV from '@/components/CV/CV'
|
import Cv from '@/components/Cv/Cv'
|
||||||
import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import yaml from 'js-yaml'
|
import yaml from 'js-yaml'
|
||||||
|
@ -21,7 +21,7 @@ function CVPage ({
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
{/* eslint-disable-next-line react/jsx-pascal-case */}
|
{/* eslint-disable-next-line react/jsx-pascal-case */}
|
||||||
<CV
|
<Cv
|
||||||
competencies={competencies}
|
competencies={competencies}
|
||||||
education={education}
|
education={education}
|
||||||
certifications={certifications}
|
certifications={certifications}
|
||||||
|
|
Loading…
Add table
Reference in a new issue