mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
ac09baae7d
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package api
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"gopkg.in/macaron.v1"
|
|
)
|
|
|
|
func TestBasicAuthenticatedRequest(t *testing.T) {
|
|
const expectedUser = "prometheus"
|
|
const expectedPass = "password"
|
|
|
|
t.Run("Given a valid set of basic auth credentials", func(t *testing.T) {
|
|
httpReq, err := http.NewRequest("GET", "http://localhost:3000/metrics", nil)
|
|
require.NoError(t, err)
|
|
req := macaron.Request{
|
|
Request: httpReq,
|
|
}
|
|
encodedCreds := encodeBasicAuthCredentials(expectedUser, expectedPass)
|
|
req.Header.Set("Authorization", fmt.Sprintf("Basic %s", encodedCreds))
|
|
authenticated := BasicAuthenticatedRequest(req, expectedUser, expectedPass)
|
|
|
|
assert.True(t, authenticated)
|
|
})
|
|
|
|
t.Run("Given an invalid set of basic auth credentials", func(t *testing.T) {
|
|
httpReq, err := http.NewRequest("GET", "http://localhost:3000/metrics", nil)
|
|
require.NoError(t, err)
|
|
req := macaron.Request{
|
|
Request: httpReq,
|
|
}
|
|
encodedCreds := encodeBasicAuthCredentials("invaliduser", "invalidpass")
|
|
req.Header.Set("Authorization", fmt.Sprintf("Basic %s", encodedCreds))
|
|
authenticated := BasicAuthenticatedRequest(req, expectedUser, expectedPass)
|
|
|
|
assert.False(t, authenticated)
|
|
})
|
|
}
|
|
|
|
func encodeBasicAuthCredentials(user, pass string) string {
|
|
creds := fmt.Sprintf("%s:%s", user, pass)
|
|
return base64.StdEncoding.EncodeToString([]byte(creds))
|
|
}
|