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.
github.com/MuratSs/assert
Lightweight assertion library based on the fluent interface from assertj
The matchers included in our assert
library are fully compatible with, and
depend on the standard Go testing package.
These just add a little syntactic sugar on top of the familiar test patterns.
To use the example from the testing documentation, here is how one would normally write a test in Go:
func TestAbs(t *testing.T) {
got := Abs(-1)
if got != 1 {
t.Errorf("Abs(-1) = %d; want 1", got)
}
}
With the matchers included in our assert
package, one would write:
import "github.com/MuratSs/assert"
func TestAbs(t *testing.T) {
got := Abs(-1)
assert.With(t).
That(got).
IsEqualTo(1)
}
This is much more readable and ultimately leads to more maintainable code.
The matchers currently included in the assert
package are:
IsEmpty/IsNotEmpty
func TestIsEmpty(t *testing.T) {
s := ""
assert.With(t).
That(s).
IsEmpty()
}
func TestIsNotEmpty(t *testing.T) {
s := "foobar"
assert.With(t).
That(s).
IsNotEmpty()
}
IsEqualTo
func TestEquals(t *testing.T) {
got := Abs(-1)
assert.With(t).
That(got).
IsEqualTo(1)
}
IsGreaterThan
func TestIsEmpty(t *testing.T) {
x := 1
assert.With(t).
That(x).
IsGreaterThan(0)
}
IsNil/IsNotNil
func TestIsNil(t *testing.T) {
var s *string
assert.With(t).
That(s).
IsNil()
}
func TestIsNotNil(t *testing.T) {
var s string
assert.With(t).
That(s).
IsNotNil()
}
IsOk
func TestIsOk(t *testing.T) {
f, err := io.Open("filename.ext")
assert.With(t).
That(err).
IsOk()
}
ThatPanics
func TestThatPanics(t *testing.T) {
f := func() {
panic("error")
}
assert.With(t).
ThatPanics(f)
}
git checkout -b new-feature
)git commit -am "Added new feature xyz"
)git push origin new-feature
)FAQs
Unknown package
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.