From 4f01edb9230f58ff84b0dd892c931ec8ac9aad55 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 13 Sep 2022 12:56:08 +0200 Subject: move src out of srv, clean up default.nix and Makefile --- srv/src/http/auth_test.go | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 srv/src/http/auth_test.go (limited to 'srv/src/http/auth_test.go') diff --git a/srv/src/http/auth_test.go b/srv/src/http/auth_test.go deleted file mode 100644 index 9e2d440..0000000 --- a/srv/src/http/auth_test.go +++ /dev/null @@ -1,24 +0,0 @@ -package http - -import ( - "context" - "testing" - "time" - - "github.com/stretchr/testify/assert" -) - -func TestAuther(t *testing.T) { - - ctx := context.Background() - password := "foo" - hashedPassword := NewPasswordHash(password) - - auther := NewAuther(map[string]string{ - "FOO": hashedPassword, - }, 1*time.Millisecond) - - assert.False(t, auther.Allowed(ctx, "BAR", password)) - assert.False(t, auther.Allowed(ctx, "FOO", "bar")) - assert.True(t, auther.Allowed(ctx, "FOO", password)) -} -- cgit v1.2.3