1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-17 00:17:40 +02:00

Add startup logging for skipped auth routes

This commit is contained in:
Nick Meves
2020-09-26 12:38:01 -07:00
parent fa4ba5e7ea
commit 89a8ac8c1f
2 changed files with 4 additions and 2 deletions

View File

@ -2365,9 +2365,9 @@ func Test_buildRoutesAllowlist(t *testing.T) {
if tc.shouldError {
assert.Error(t, err)
return
} else {
assert.NoError(t, err)
}
assert.NoError(t, err)
for i, route := range routes {
assert.Greater(t, len(tc.expectedMethods), i)
assert.Equal(t, route.method, tc.expectedMethods[i])