2021-09-21 11:21:04 +02:00
|
|
|
package hibp
|
|
|
|
|
|
|
|
import (
|
2022-05-08 12:02:58 +02:00
|
|
|
"fmt"
|
2021-09-21 11:21:04 +02:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-06-08 17:26:41 +02:00
|
|
|
const (
|
|
|
|
// PwStringInsecure is the string representation of an insecure password
|
|
|
|
PwStringInsecure = "test"
|
|
|
|
|
|
|
|
// PwStringSecure is the string representation of an insecure password
|
|
|
|
PwStringSecure = "F/0Ws#.%{Z/NVax=OU8Ajf1qTRLNS12p/?s/adX"
|
|
|
|
|
|
|
|
// PwHashInsecure is the SHA1 checksum of an insecure password
|
|
|
|
// Represents the string: test
|
|
|
|
PwHashInsecure = "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3"
|
|
|
|
|
|
|
|
// PwHashSecure is the SHA1 checksum of a secure password
|
|
|
|
// Represents the string: F/0Ws#.%{Z/NVax=OU8Ajf1qTRLNS12p/?s/adX
|
|
|
|
PwHashSecure = "90efc095c82eab44e882fda507cfab1a2cd31fc0"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestPwnedPassApi_CheckPassword verifies the Pwned Passwords API with the CheckPassword method
|
|
|
|
func TestPwnedPassApi_CheckPassword(t *testing.T) {
|
2021-09-21 11:21:04 +02:00
|
|
|
testTable := []struct {
|
|
|
|
testName string
|
|
|
|
pwString string
|
|
|
|
isLeaked bool
|
|
|
|
}{
|
2022-06-08 17:26:41 +02:00
|
|
|
{"weak password 'test123' is expected to be leaked", PwStringInsecure, true},
|
2021-09-21 11:21:04 +02:00
|
|
|
{"strong, unknown password is expected to be not leaked",
|
2022-06-08 17:26:41 +02:00
|
|
|
PwStringSecure, false},
|
2021-09-21 11:21:04 +02:00
|
|
|
}
|
|
|
|
hc := New()
|
|
|
|
for _, tc := range testTable {
|
|
|
|
t.Run(tc.testName, func(t *testing.T) {
|
2021-09-21 18:21:23 +02:00
|
|
|
m, _, err := hc.PwnedPassApi.CheckPassword(tc.pwString)
|
2021-09-21 11:21:04 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
if m == nil && tc.isLeaked {
|
|
|
|
t.Errorf("password is expected to be leaked but 0 leaks were returned in Pwned Passwords DB")
|
|
|
|
}
|
|
|
|
if m != nil && m.Count > 0 && !tc.isLeaked {
|
|
|
|
t.Errorf("password is not expected to be leaked but %d leaks were found in Pwned Passwords DB",
|
|
|
|
m.Count)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 17:26:41 +02:00
|
|
|
// TestPwnedPassApi_CheckSHA1 verifies the Pwned Passwords API with the CheckSHA1 method
|
|
|
|
func TestPwnedPassApi_CheckSHA1(t *testing.T) {
|
2021-09-21 11:21:04 +02:00
|
|
|
testTable := []struct {
|
2022-05-08 12:44:20 +02:00
|
|
|
testName string
|
|
|
|
pwHash string
|
|
|
|
isLeaked bool
|
|
|
|
shouldFail bool
|
2021-09-21 11:21:04 +02:00
|
|
|
}{
|
2022-06-08 17:26:41 +02:00
|
|
|
{"weak password 'test' is expected to be leaked",
|
|
|
|
PwHashInsecure, true, false},
|
2021-09-21 11:21:04 +02:00
|
|
|
{"strong, unknown password is expected to be not leaked",
|
2022-06-08 17:26:41 +02:00
|
|
|
PwHashSecure, false, false},
|
2022-05-08 12:44:20 +02:00
|
|
|
{"empty string should fail",
|
|
|
|
"", false, true},
|
2021-09-21 11:21:04 +02:00
|
|
|
}
|
|
|
|
hc := New()
|
|
|
|
for _, tc := range testTable {
|
|
|
|
t.Run(tc.testName, func(t *testing.T) {
|
2021-09-21 18:21:23 +02:00
|
|
|
m, _, err := hc.PwnedPassApi.CheckSHA1(tc.pwHash)
|
2022-05-08 12:44:20 +02:00
|
|
|
if err != nil && !tc.shouldFail {
|
2021-09-21 11:21:04 +02:00
|
|
|
t.Error(err)
|
2021-09-21 19:46:48 +02:00
|
|
|
return
|
2021-09-21 11:21:04 +02:00
|
|
|
}
|
|
|
|
if m == nil && tc.isLeaked {
|
|
|
|
t.Errorf("password is expected to be leaked but 0 leaks were returned in Pwned Passwords DB")
|
|
|
|
}
|
|
|
|
if m != nil && m.Count > 0 && !tc.isLeaked {
|
|
|
|
t.Errorf("password is not expected to be leaked but %d leaks were found in Pwned Passwords DB",
|
|
|
|
m.Count)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2022-05-08 12:02:58 +02:00
|
|
|
|
2022-06-08 17:26:41 +02:00
|
|
|
// TestPwnedPassApi_ListHashesPrefix tests the ListHashesPrefix method (especially for failures that are not
|
2022-05-08 12:44:20 +02:00
|
|
|
// tested by the other tests already)
|
2022-06-08 17:26:41 +02:00
|
|
|
func TestPwnedPassApi_ListHashesPrefix(t *testing.T) {
|
2022-05-08 12:44:20 +02:00
|
|
|
hc := New()
|
|
|
|
|
2022-06-08 17:26:41 +02:00
|
|
|
// Should return at least 1 restults
|
|
|
|
l, _, err := hc.PwnedPassApi.ListHashesPrefix("a94a8")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("ListHashesPrefix was not supposed to fail, but did: %s", err)
|
|
|
|
}
|
|
|
|
if len(l) <= 0 {
|
|
|
|
t.Errorf("ListHashesPrefix was supposed to return a list longer than 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prefix has wrong size
|
|
|
|
_, _, err = hc.PwnedPassApi.ListHashesPrefix("ZZZZZZZZZZZZZZ")
|
2022-05-08 12:44:20 +02:00
|
|
|
if err == nil {
|
2022-06-08 17:26:41 +02:00
|
|
|
t.Errorf("ListHashesPrefix was supposed to fail, but didn't")
|
2022-05-08 12:44:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Non allowed characters
|
2022-06-08 17:26:41 +02:00
|
|
|
_, _, err = hc.PwnedPassApi.ListHashesPrefix(string([]byte{0, 0, 0, 0, 0}))
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("ListHashesPrefix was supposed to fail, but didn't")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPwnedPassApi_ListHashesSHA1 tests the PwnedPassApi.ListHashesSHA1 metethod
|
|
|
|
func TestPwnedPassApi_ListHashesSHA1(t *testing.T) {
|
|
|
|
hc := New()
|
|
|
|
|
|
|
|
// List length should be >0
|
|
|
|
l, _, err := hc.PwnedPassApi.ListHashesSHA1(PwHashInsecure)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("ListHashesSHA1 was not supposed to fail, but did: %s", err)
|
|
|
|
}
|
|
|
|
if len(l) <= 0 {
|
|
|
|
t.Errorf("ListHashesSHA1 was supposed to return a list longer than 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hash has wrong size
|
|
|
|
_, _, err = hc.PwnedPassApi.ListHashesSHA1(PwStringInsecure)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("ListHashesSHA1 was supposed to fail, but didn't")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPwnedPassApi_ListHashesPassword tests the PwnedPassApi.ListHashesPassword metethod
|
|
|
|
func TestPwnedPassApi_ListHashesPassword(t *testing.T) {
|
|
|
|
hc := New()
|
|
|
|
|
|
|
|
// List length should be >0
|
|
|
|
l, _, err := hc.PwnedPassApi.ListHashesPassword(PwStringInsecure)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("ListHashesPassword was not supposed to fail, but did: %s", err)
|
|
|
|
}
|
|
|
|
if len(l) <= 0 {
|
|
|
|
t.Errorf("ListHashesPassword was supposed to return a list longer than 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Empty string has no checksum
|
|
|
|
_, _, err = hc.PwnedPassApi.ListHashesSHA1("")
|
2022-05-08 12:44:20 +02:00
|
|
|
if err == nil {
|
2022-06-08 17:26:41 +02:00
|
|
|
t.Errorf("ListHashesPassword was supposed to fail, but didn't")
|
2022-05-08 12:44:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-08 12:02:58 +02:00
|
|
|
// ExamplePwnedPassApi_CheckPassword is a code example to show how to check a given password
|
|
|
|
// against the HIBP passwords API
|
|
|
|
func ExamplePwnedPassApi_CheckPassword() {
|
|
|
|
hc := New()
|
|
|
|
m, _, err := hc.PwnedPassApi.CheckPassword("test")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if m != nil && m.Count != 0 {
|
|
|
|
fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n",
|
|
|
|
m.Hash, m.Count)
|
|
|
|
// Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExamplePwnedPassApi_CheckPassword_withPadding is a code example to show how to check a given password
|
|
|
|
// against the HIBP passwords API with the WithPadding() option set
|
|
|
|
func ExamplePwnedPassApi_CheckPassword_withPadding() {
|
|
|
|
hc := New(WithPwnedPadding())
|
|
|
|
m, _, err := hc.PwnedPassApi.CheckPassword("test")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if m != nil && m.Count != 0 {
|
|
|
|
fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n",
|
|
|
|
m.Hash, m.Count)
|
|
|
|
// Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExamplePwnedPassApi_CheckSHA1 is a code example to show how to check a given password SHA1 hash
|
|
|
|
// against the HIBP passwords API using the CheckSHA1() method
|
|
|
|
func ExamplePwnedPassApi_CheckSHA1() {
|
|
|
|
hc := New()
|
|
|
|
pwHash := "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" // represents the PW: "test"
|
|
|
|
m, _, err := hc.PwnedPassApi.CheckSHA1(pwHash)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if m != nil && m.Count != 0 {
|
|
|
|
fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n",
|
|
|
|
m.Hash, m.Count)
|
|
|
|
// Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB
|
|
|
|
}
|
|
|
|
}
|