Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
next-page-tester
Advanced tools
The missing DOM integration testing tool for Next.js.
Given a Next.js route, this library will return an instance of the matching page component instantiated with the properties derived by Next.js' routing system and server side data fetching.
import { render, screen } from '@testing-library/react';
import { getPage } from 'next-page-tester';
describe('Blog page', () => {
it('renders blog page', async () => {
const Page = await getPage({
route: '/blog/1',
});
render(Page);
expect(screen.getByText('Blog')).toBeInTheDocument();
});
});
The idea behind this library is to enable DOM integration tests on Next.js pages along with server side data fetching and routing.
The testing approach suggested here consists of manually mocking external API's dependencies and get the component instance matching a given route.
Next page tester will take care of:
getServerSideProps
, getInitialProps
or getStaticProps
) if the casenext/router
provider initialized with the expected values (to test useRouter
and withRouter
)_app
componentProperty | Description | type | Default |
---|---|---|---|
route (mandatory) | Next route (must start with / ) | string | - |
req | Access default mocked request object ( getServerSideProps only) | res => res | - |
res | Access default mocked response object ( getServerSideProps only) | req => req | - |
router | Access default mocked Next router object | router => router | - |
useCustomApp | Use custom App component | boolean | false |
nextRoot | Absolute path to Next's root folder | string | auto detected |
Data fetching methods' context req
and res
objects are mocked with node-mocks-http.
Next page tester can be used with any testing framework/library.
It might be necessary to install @types/react-dom
and @types/webpack
when using Typescript in strict
mode due to this bug.
0.5.0
pagesDirectory
and pageExtensions
optionscustomApp
option -> useCustomApp
pageExtensions
optionnextRoot
optionFAQs
Enable DOM integration testing on Next.js pages
The npm package next-page-tester receives a total of 3,247 weekly downloads. As such, next-page-tester popularity was classified as popular.
We found that next-page-tester demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.