
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.