Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
hapi-test-request
Advanced tools
HTTP assertions made easy for Hapi using Promises
This module requires Node.js v4.1+
Server file should export server server.js
:
'use strict';
const Hapi = require('hapi');
// Create a server with a host and port
const server = new Hapi.Server();
server.connection({
host: 'localhost',
port: 8000
});
// Add the route
server.route({
method: 'GET',
path:'/hello',
handler: function (request, reply) {
return reply({
test: true
});
}
});
server.route({
method: 'GET',
path: '/api/v1/test',
handler: function (request, reply) {
reply({
test: true
});
}
});
// Start the server
server.start((err) => {
if (err) {
throw err;
}
});
// !!!!!!!
module.exports = server;
Example of some.test.js
:
const server = require('../server.js');
const request = require('hapi-test-request')(server);
//...
let.it('something', (done) => {
request.call({
method: 'POST',
url: '/mail',
payload: {
email: 'someemail@email.com'
}
}).then((response) => {
// ....
expect(response.statusCode).to.equal(200);
done();
});
});
{
prefix: '/api/v1' // Will add prefix for all requests
}
Example:
const server = require('./server');
const request = require('hapi-test-request');
const lab = require('lab');
lab.it('Some tests', (done) => {
const config = {
prefix: '/api/v1'
};
request(server, config)
.call({
method: 'GET',
url: '/test' // will be merged with prefix. Will be called: /api/v1/test
})
.then((res) => {
expect(res.statusCode).to.equal(200);
})
.then(done)
.catch(done);
});
FAQs
Hapi request helper for testing
We found that hapi-test-request 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.