1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00

Invalid auth test case

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-05-12 06:28:25 -07:00
parent 0da05cb7f2
commit e55f5f1636

View File

@ -48,6 +48,14 @@ func TestBasicAuth(t *testing.T) {
t.Error("basic auth should fail")
}
// Invalid header
auth = base64.StdEncoding.EncodeToString([]byte(" :secret"))
req.Header.Set(echo.Authorization, auth)
b = BasicAuth(fn)
if b(c) == nil {
t.Error("basic auth should fail for invalid scheme")
}
// Invalid scheme
auth = "Base " + base64.StdEncoding.EncodeToString([]byte(" :secret"))
req.Header.Set(echo.Authorization, auth)
@ -57,6 +65,7 @@ func TestBasicAuth(t *testing.T) {
}
// Empty auth header
req.Header.Set(echo.Authorization, "")
b = BasicAuth(fn)
if b(c) == nil {
t.Error("basic auth should fail for empty auth header")