Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
bogus is a small utility for stubbing dependencies when testing RequireJS based projects
In Working Effectively with Legacy Code, Michael Feathers describes Seams. In the vernacular of that book, bogus
would be considered a Link Seam.
You can install bogus into your project using either npm
or bower
$ npm install bogus --save-dev
or
$ bower install bogus --save-dev
// SteeringWheel
define('SteeringWheel', function(){
function SteeringWheel(){
this.color = 'black';
}
return SteeringWheel;
});
// Car
define('Car', ['SteeringWheel'], function(SteeringWheel){
function Car(){
this.steeringWheel = new SteeringWheel();
}
Car.prototype.getSteeringWheelColor = function getSteeringWheelColor(){
return this.steeringWheel.color;
};
return Car;
});
// load bogus
define([
'bower_components/bogus/bogus' // this is ofc. dependent on where you installed it
], function(
bogus
){
describe('myModule', function{
var Car;
beforeEach(function(done){
var fakeSteeringWheel = function(){
this.color = 'blue';
};
// stub out a dependency (SteeringWheel) with our fake
bogus.stub('SteeringWheel', fakeSteeringWheel);
// load Car module, that depends on SteeringWheel
bogus.require('Car', function(module){
Car = module;
done();
});
});
afterEach(function(done){
bogus.reset(done);
});
describe('Car', function(){
describe('getSteeringWheelColor method', function(){
it('should return the actual color of the SteeringWheel', function(){
var car = new Car();
assert.equal(car.getSteeringWheelColor(), 'blue');
});
});
});
});
});
Both bogus.require
and bogus.reset
return promises. The beforeEach
and
afterEach
in the example above can be written as:
beforeEach(function(){
var fakeSteeringWheel = function(){
this.color = 'blue';
};
bogus.stub('SteeringWheel', fakeSteeringWheel);
return bogus.require('Car').then(function(module){
Car = module;
});
});
afterEach(function(){
return bogus.reset();
});
If you're stubbing several dependencies, you can pass a map of them to stub
var firstFake = {};
var secondFake = {};
bogus.stub({
'path/to/first/dependency': firstFake,
'path/to/second/dependency': secondFake
});
You can run the tests with
$ npm test
or with
$ mocha
if you have mocha installed as a global
FAQs
A small utility for stubbing dependencies in RequireJS based projects
The npm package bogus receives a total of 2 weekly downloads. As such, bogus popularity was classified as not popular.
We found that bogus 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.