mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-01 09:52:23 -06:00
69 lines
2.1 KiB
Go
69 lines
2.1 KiB
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
|
|
userv1beta1 "github.com/cs3org/go-cs3apis/cs3/identity/user/v1beta1"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
|
|
. "github.com/onsi/gomega"
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/log"
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/oidc"
|
|
"github.com/owncloud/ocis/v2/services/proxy/pkg/user/backend"
|
|
"github.com/owncloud/ocis/v2/services/proxy/pkg/user/backend/test"
|
|
)
|
|
|
|
var _ = Describe("Authenticating requests", Label("BasicAuthenticator"), func() {
|
|
var authenticator Authenticator
|
|
BeforeEach(func() {
|
|
authenticator = BasicAuthenticator{
|
|
Logger: log.NewLogger(),
|
|
UserProvider: &test.UserBackendMock{
|
|
AuthenticateFunc: func(ctx context.Context, username, password string) (*userv1beta1.User, string, error) {
|
|
var user *userv1beta1.User
|
|
if username == "testuser" && password == "testpassword" {
|
|
user = &userv1beta1.User{
|
|
Id: &userv1beta1.UserId{
|
|
Idp: "IdpId",
|
|
OpaqueId: "OpaqueId",
|
|
},
|
|
Username: "testuser",
|
|
Mail: "testuser@example.com",
|
|
}
|
|
return user, "", nil
|
|
}
|
|
return nil, "", backend.ErrAccountNotFound
|
|
},
|
|
},
|
|
}
|
|
})
|
|
|
|
When("the request contains correct data", func() {
|
|
It("should successfully authenticate", func() {
|
|
req := httptest.NewRequest(http.MethodGet, "http://example.com/example/path", http.NoBody)
|
|
req.SetBasicAuth("testuser", "testpassword")
|
|
|
|
req2, valid := authenticator.Authenticate(req)
|
|
|
|
Expect(valid).To(Equal(true))
|
|
Expect(req2).ToNot(BeNil())
|
|
})
|
|
It("adds claims to the request context", func() {
|
|
req := httptest.NewRequest(http.MethodGet, "http://example.com/example/path", http.NoBody)
|
|
req.SetBasicAuth("testuser", "testpassword")
|
|
|
|
req2, valid := authenticator.Authenticate(req)
|
|
Expect(valid).To(Equal(true))
|
|
|
|
claims := oidc.FromContext(req2.Context())
|
|
Expect(claims).ToNot(BeNil())
|
|
Expect(claims[oidc.Iss]).To(Equal("IdpId"))
|
|
Expect(claims[oidc.PreferredUsername]).To(Equal("testuser"))
|
|
Expect(claims[oidc.Email]).To(Equal("testuser@example.com"))
|
|
Expect(claims[oidc.OwncloudUUID]).To(Equal("OpaqueId"))
|
|
})
|
|
})
|
|
})
|