From 8da42184eb26bbd35618d81e47bcd23b6ce21adb Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Thu, 19 May 2022 21:35:45 -0600 Subject: Implement basic auth middleware --- srv/src/api/auth_test.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 srv/src/api/auth_test.go (limited to 'srv/src/api/auth_test.go') diff --git a/srv/src/api/auth_test.go b/srv/src/api/auth_test.go new file mode 100644 index 0000000..cdf83ef --- /dev/null +++ b/srv/src/api/auth_test.go @@ -0,0 +1,21 @@ +package api + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestAuther(t *testing.T) { + + password := "foo" + hashedPassword := NewPasswordHash(password) + + auther := NewAuther(map[string]string{ + "FOO": hashedPassword, + }) + + assert.False(t, auther.Allowed("BAR", password)) + assert.False(t, auther.Allowed("FOO", "bar")) + assert.True(t, auther.Allowed("FOO", password)) +} -- cgit v1.2.3