hybridgroup.gobot/api/basic_auth_test.go

29 lines
657 B
Go
Raw Normal View History

//nolint:usestdlibvars,noctx // ok here
2014-09-26 09:28:28 +08:00
package api
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
2014-09-26 09:28:28 +08:00
)
func TestBasicAuth(t *testing.T) {
a := initTestAPI()
a.AddHandler(BasicAuth("admin", "password"))
request, _ := http.NewRequest("GET", "/api/", nil)
request.SetBasicAuth("admin", "password")
response := httptest.NewRecorder()
a.ServeHTTP(response, request)
assert.Equal(t, 200, response.Code)
2014-09-26 09:28:28 +08:00
request, _ = http.NewRequest("GET", "/api/", nil)
request.SetBasicAuth("admin", "wrongPassword")
response = httptest.NewRecorder()
a.ServeHTTP(response, request)
assert.Equal(t, 401, response.Code)
2014-09-26 09:28:28 +08:00
}