Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
cypress-intercept-formdata
Advanced tools
cypress command to work with Intercept multipart/form-data requests
This package is intended to be used with Cypress.io intercept command.
As of version 6.2 or 6.3 the request.body accessed from the intercept is an ArrayBuffer for multipart/form-data requests.
This makes it difficult to work with the body of the request and make assertions on it.
CIFD makes it easy to use the multipart body in your specs.
#pnpm:
$ pnpm add cypress-intercept-formdata
#NPM:
$ npm i cypress-intercept-formdata
Add to your commands file:
//cypress/support/commands.js
import "cypress-intercept-formdata";
//...
Then in your spec:
cy.intercept("POST", "http://localhost:8888/api/test", {
statusCode: 200,
body: { success: true },
}).as("uploadRequest");
//...
cy.wait("@uploadRequest")
.interceptFormData((formData) => {
expect(formData["foo"]).to.eq("bar");
});
If you have file(s) uploaded as part of the request they will be available in the formData object as well: The value is the file name
cy.wait("@uploadRequest")
.interceptFormData((formData) => {
expect(formData["file"]).to.eq("fileName.txt");
});
Multiple files are also supported:
cy.wait("@uploadRequest")
.interceptFormData((formData) => {
expect(formData["file"][0]).to.eq("fileName1.txt");
expect(formData["file"][1]).to.eq("fileName2.txt");
});
By default, CIFD simply adds the file name being uploaded to the formData object. If you'd like to assert more deeply on the file(s) being uploaded, you can set options.loadFileContent to true:
cy.wait("@submitForm")
.interceptFormData((formData) => {
expect(formData["file"]).to.be.instanceof(File);
expect(formData["file"]).to.have.property("type", "image/jpeg");
expect(formData["file"].size).to.be.eq(2551829);
}, { loadFileContent: true });
Multiple files are supported as well.
Cypress intercept command accepts a routeHandler
If you want to inspect/assert on the body from the handler, you can import the interceptFormData directly and call it like this:
import { interceptFormData } from "cypress-intercept-formdata";
//...
cy.intercept("POST", "http://localhost:8888/api/test", (req) => {
const formData = interceptFormData(req);
expect(formData["first_name"]).to.eq("James");
});
In terminal 1:
pnpm serve
In terminal 2:
pnpm cy:run
OR
pnpm cy:open
In terminal 3:
pnpm watch
FAQs
cypress command to work with Intercept multipart/form-data requests
The npm package cypress-intercept-formdata receives a total of 15,827 weekly downloads. As such, cypress-intercept-formdata popularity was classified as popular.
We found that cypress-intercept-formdata demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.