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.
stub-promise-function
Advanced tools
A test utility that lets you stub and control promises for testing purposes
A tiny test utility that lets you stub functions that return promises and manage the control flow of the returned promise.
npm install stub-promise-function --save-dev
var stubPromiseFunction = require('stub-promise-function');
// code under test
function getUsers() {
http.get('/users.html').then(function(response) {
console.log(response.data);
});
};
// test code
describe('#getUsers()', function() {
beforeEach(function() {
http.get = stubPromiseFunction();
sinon.spy(console, 'log');
});
beforeEach(function() {
getUsers();
});
describe('when getUsers resolves', function() {
beforeEach(function() {
var response = {
data: 'foo'
}
http.get.resolve(response);
});
describe('when resolved', function() {
it('logs response.data to console', function() {
expect(console.log.getCall(0).args[0]).toBe('foo');
});
});
});
});
describe('#stubPromiseFunction()', function() {
var http;
var promise;
beforeEach(function() {
http = {
get: stubPromise()
};
});
it('returns a function which returns a promise', function() {
promise = http.get();
expect(promise.then).toBeDefined();
expect(typeof promise.then === "function");
});
describe('returned promise', function() {
beforeEach(function() {
promise = http.get('http://whatever');
});
it('has a #resolve function', function() {
expect(http.get.resolve).toBeDefined();
expect(typeof promise.resolve === "function");
});
it('has a #reject function', function() {
expect(http.get.reject).toBeDefined();
expect(typeof promise.reject === "function");
});
describe('#resolve()', function() {
it('resolves the promise', function(done) {
var expectedResponse = { data: 42 };
promise.then(function(response) {
expect(response).toEqual(expectedResponse);
done();
});
http.get.resolve(expectedResponse);
});
});
describe('#reject()', function() {
it('rejects the promise', function(done) {
var expectedReason = 'some reason why';
promise.catch(function(error) {
expect(error).toEqual(expectedReason);
done();
});
http.get.reject(expectedReason);
});
});
});
describe('spy functionality (using sinon.spy internally)', function() {
beforeEach(function simulateApi() {
http.get('http://whatever');
});
it('can be used together with test spies', function() {
expect(http.get.called).toBe(true);
expect(http.get.getCall(0).args[0]).toBe('http://whatever');
});
});
describe('multiple invocation by re-instantiation', function() {
var http;
var promise;
beforeEach(function() {
http = {
get: stubPromise()
};
promise = http.get('http://whatever');
promise.then(function(response) {
expect(response.data).toEqual(42);
})
http.get.resolve({
data: 42
});
});
it('can be reinstantiated and then resolved', function() {
http.get = stubPromise();
promise = http.get('http://another');
promise.then(function(response) {
expect(response.data).toEqual(84);
})
http.get.resolve({
data: 82
});
});
});
});
FAQs
A test utility that lets you stub and control promises for testing purposes
The npm package stub-promise-function receives a total of 1 weekly downloads. As such, stub-promise-function popularity was classified as not popular.
We found that stub-promise-function 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.