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.
= Bourne
Bourne extends mocha to allow detailed tracking and querying of stub and mock invocations. It allows test spies using the have_received rspec matcher and assert_received for Test::Unit. Bourne was extracted from jferris-mocha, a fork of mocha that adds test spies.
== Test Spies
Test spies are a form of test double that preserves the normal four-phase unit test order and allows separation of stubbing and verification.
Using a test spy is like using a mocked expectation except that there are two steps:
== Examples
mock.should have_received(:to_s) Radio.should have_received(:new).with(1041) radio.should have_received(:volume).with(11).twice radio.should have_received(:off).never
assert_received(mock, :to_s) assert_received(Radio, :new) {|expect| expect.with(1041) } assert_received(radio, :volume) {|expect| expect.with(11).twice } assert_received(radio, :off) {|expect| expect.never }
See Mocha::API for more information.
== Download
Rubygems: gem install bourne
Github: http://github.com/thoughtbot/bourne/tree/master
== More Information
== Author
Bourne was written by Joe Ferris. Mocha was written by James Mead. Several of the test examples and helpers used in the Bourne test suite were copied directly from Mocha.
Thanks to thoughtbot for inspiration, ideas, and funding. Thanks to James for writing mocha.
Copyright 2010 Joe Ferris and thoughtbot[http://www.thoughtbot.com], inc.
FAQs
Unknown package
We found that opsb-bourne 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.