summary refs log tree commit diff stats
path: root/auth/checkpass_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'auth/checkpass_test.go')
-rw-r--r--auth/checkpass_test.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/auth/checkpass_test.go b/auth/checkpass_test.go
new file mode 100644
index 0000000..d22bf48
--- /dev/null
+++ b/auth/checkpass_test.go
@@ -0,0 +1,19 @@
+package auth
+
+import (
+	"testing"
+)
+
+// TestCheckPass tests the checkPass function.
+func TestCheckPass(t *testing.T) {
+	var passhash = make(map[string]string)
+	passhash["password"] = "$2a$10$hyV9vtsYXX88wz1rmA1x0.tcdkyvd6QsmV6gLOcR5wtYBE2GaSqT."
+
+	for p, h := range passhash {
+		err := checkPass(p, h)
+		if err != nil {
+			t.Errorf("password: %s, hash: %s didn't match.",
+				p, h)
+		}
+	}
+}