Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
cypress-protobuf
Advanced tools
Encode a fixture with Protocol Buffers
Use this plugin to encode a Cypress fixture with Protocol Buffers.
npm i -D cypress-protobuf
# or
yarn add -D cypress-protobuf
then open your cypress/plugins/index.js
file and register a new task
module.exports = on => {
on("task", {
protobufEncode: require("cypress-protobuf"),
});
};
To encode with Protocol Buffers a fixture
cy.fixture("FIXTURE_NAME.json+")
.then(json => {
cy.task("protobufEncode", {
fixtureBody: json, // the fixture body
message: "MESSAGE_NAME", // the protobuf message to use
protoFilePath: "./public/example.proto", // the path (starting from your project directory) to the .profo file
})
.then(encodedJson => {
// 🎉 `encodedJson` contains the encoded fixture
cy.route({
headers: {
"content-type": "application/octet-stream"
},
response: encodedJson,
url: 'API_URL'
}).as("FIXTURE_NAME");
});
});
and in your test you will wait for the request as usual
cy.wait("@YOUR_FIXTURE_NAME");
Take a look at the example test source code.
protoFilePath
so you can avoid to pass it every time. You can even set it at the beginning of your test suitebefore(() => {
cy.task("protobufEncode", {
protoFilePath: "./public/escrow/ui.proto"
});
});
Thanks goes to these wonderful people (emoji key):
Stefano Magni 💻 ⚠️ |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Encode a Cypress fixture with Protocol Buffers
The npm package cypress-protobuf receives a total of 4 weekly downloads. As such, cypress-protobuf popularity was classified as not popular.
We found that cypress-protobuf 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.