2022-02-10 11:27:26 +01:00
|
|
|
// Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2023-01-10 17:02:38 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/userutil"
|
2022-02-10 11:27:26 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
uapi "github.com/matrix-org/dendrite/userapi/api"
|
2023-04-06 10:55:01 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/fclient"
|
2023-05-10 00:46:49 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2022-02-10 11:27:26 +01:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLoginFromJSONReader(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
tsts := []struct {
|
|
|
|
Name string
|
|
|
|
Body string
|
|
|
|
|
|
|
|
WantUsername string
|
|
|
|
WantDeviceID string
|
|
|
|
WantDeletedTokens []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Name: "passwordWorks",
|
|
|
|
Body: `{
|
|
|
|
"type": "m.login.password",
|
|
|
|
"identifier": { "type": "m.id.user", "user": "alice" },
|
|
|
|
"password": "herpassword",
|
|
|
|
"device_id": "adevice"
|
|
|
|
}`,
|
2023-01-10 17:02:38 +01:00
|
|
|
WantUsername: "@alice:example.com",
|
2022-02-10 11:27:26 +01:00
|
|
|
WantDeviceID: "adevice",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "tokenWorks",
|
|
|
|
Body: `{
|
|
|
|
"type": "m.login.token",
|
|
|
|
"token": "atoken",
|
|
|
|
"device_id": "adevice"
|
|
|
|
}`,
|
|
|
|
WantUsername: "@auser:example.com",
|
|
|
|
WantDeviceID: "adevice",
|
|
|
|
WantDeletedTokens: []string{"atoken"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tst := range tsts {
|
|
|
|
t.Run(tst.Name, func(t *testing.T) {
|
|
|
|
var userAPI fakeUserInternalAPI
|
|
|
|
cfg := &config.ClientAPI{
|
|
|
|
Matrix: &config.Global{
|
2023-04-06 10:55:01 +02:00
|
|
|
SigningIdentity: fclient.SigningIdentity{
|
2022-11-18 14:24:02 +01:00
|
|
|
ServerName: serverName,
|
|
|
|
},
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
}
|
2022-03-24 22:45:44 +01:00
|
|
|
login, cleanup, err := LoginFromJSONReader(ctx, strings.NewReader(tst.Body), &userAPI, &userAPI, cfg)
|
2022-02-10 11:27:26 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("LoginFromJSONReader failed: %+v", err)
|
|
|
|
}
|
|
|
|
cleanup(ctx, &util.JSONResponse{Code: http.StatusOK})
|
|
|
|
|
|
|
|
if login.Username() != tst.WantUsername {
|
|
|
|
t.Errorf("Username: got %q, want %q", login.Username(), tst.WantUsername)
|
|
|
|
}
|
|
|
|
|
|
|
|
if login.DeviceID == nil {
|
|
|
|
if tst.WantDeviceID != "" {
|
|
|
|
t.Errorf("DeviceID: got %v, want %q", login.DeviceID, tst.WantDeviceID)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if *login.DeviceID != tst.WantDeviceID {
|
|
|
|
t.Errorf("DeviceID: got %q, want %q", *login.DeviceID, tst.WantDeviceID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(userAPI.DeletedTokens, tst.WantDeletedTokens) {
|
|
|
|
t.Errorf("DeletedTokens: got %+v, want %+v", userAPI.DeletedTokens, tst.WantDeletedTokens)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBadLoginFromJSONReader(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
tsts := []struct {
|
|
|
|
Name string
|
|
|
|
Body string
|
|
|
|
|
2023-05-17 02:33:27 +02:00
|
|
|
WantErrCode spec.MatrixErrorCode
|
2022-02-10 11:27:26 +01:00
|
|
|
}{
|
2023-05-17 02:33:27 +02:00
|
|
|
{Name: "empty", WantErrCode: spec.ErrorBadJSON},
|
2022-02-10 11:27:26 +01:00
|
|
|
{
|
|
|
|
Name: "badUnmarshal",
|
|
|
|
Body: `badsyntaxJSON`,
|
2023-05-17 02:33:27 +02:00
|
|
|
WantErrCode: spec.ErrorBadJSON,
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "badPassword",
|
|
|
|
Body: `{
|
|
|
|
"type": "m.login.password",
|
|
|
|
"identifier": { "type": "m.id.user", "user": "alice" },
|
|
|
|
"password": "invalidpassword",
|
|
|
|
"device_id": "adevice"
|
|
|
|
}`,
|
2023-05-17 02:33:27 +02:00
|
|
|
WantErrCode: spec.ErrorForbidden,
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "badToken",
|
|
|
|
Body: `{
|
|
|
|
"type": "m.login.token",
|
|
|
|
"token": "invalidtoken",
|
|
|
|
"device_id": "adevice"
|
|
|
|
}`,
|
2023-05-17 02:33:27 +02:00
|
|
|
WantErrCode: spec.ErrorForbidden,
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "badType",
|
|
|
|
Body: `{
|
|
|
|
"type": "m.login.invalid",
|
|
|
|
"device_id": "adevice"
|
|
|
|
}`,
|
2023-05-17 02:33:27 +02:00
|
|
|
WantErrCode: spec.ErrorInvalidParam,
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tst := range tsts {
|
|
|
|
t.Run(tst.Name, func(t *testing.T) {
|
|
|
|
var userAPI fakeUserInternalAPI
|
|
|
|
cfg := &config.ClientAPI{
|
|
|
|
Matrix: &config.Global{
|
2023-04-06 10:55:01 +02:00
|
|
|
SigningIdentity: fclient.SigningIdentity{
|
2022-11-18 14:24:02 +01:00
|
|
|
ServerName: serverName,
|
|
|
|
},
|
2022-02-10 11:27:26 +01:00
|
|
|
},
|
|
|
|
}
|
2022-03-24 22:45:44 +01:00
|
|
|
_, cleanup, errRes := LoginFromJSONReader(ctx, strings.NewReader(tst.Body), &userAPI, &userAPI, cfg)
|
2022-02-10 11:27:26 +01:00
|
|
|
if errRes == nil {
|
|
|
|
cleanup(ctx, nil)
|
|
|
|
t.Fatalf("LoginFromJSONReader err: got %+v, want code %q", errRes, tst.WantErrCode)
|
2023-05-17 02:33:27 +02:00
|
|
|
} else if merr, ok := errRes.JSON.(spec.MatrixError); ok && merr.ErrCode != tst.WantErrCode {
|
2022-02-10 11:27:26 +01:00
|
|
|
t.Fatalf("LoginFromJSONReader err: got %+v, want code %q", errRes, tst.WantErrCode)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type fakeUserInternalAPI struct {
|
|
|
|
UserInternalAPIForLogin
|
|
|
|
DeletedTokens []string
|
|
|
|
}
|
|
|
|
|
2022-03-24 22:45:44 +01:00
|
|
|
func (ua *fakeUserInternalAPI) QueryAccountByPassword(ctx context.Context, req *uapi.QueryAccountByPasswordRequest, res *uapi.QueryAccountByPasswordResponse) error {
|
|
|
|
if req.PlaintextPassword == "invalidpassword" {
|
|
|
|
res.Account = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
res.Exists = true
|
2023-01-10 17:02:38 +01:00
|
|
|
res.Account = &uapi.Account{UserID: userutil.MakeUserID(req.Localpart, req.ServerName)}
|
2022-03-24 22:45:44 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-10 11:27:26 +01:00
|
|
|
func (ua *fakeUserInternalAPI) PerformLoginTokenDeletion(ctx context.Context, req *uapi.PerformLoginTokenDeletionRequest, res *uapi.PerformLoginTokenDeletionResponse) error {
|
|
|
|
ua.DeletedTokens = append(ua.DeletedTokens, req.Token)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-05 14:17:38 +02:00
|
|
|
func (ua *fakeUserInternalAPI) PerformLoginTokenCreation(ctx context.Context, req *uapi.PerformLoginTokenCreationRequest, res *uapi.PerformLoginTokenCreationResponse) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-10 11:27:26 +01:00
|
|
|
func (*fakeUserInternalAPI) QueryLoginToken(ctx context.Context, req *uapi.QueryLoginTokenRequest, res *uapi.QueryLoginTokenResponse) error {
|
|
|
|
if req.Token == "invalidtoken" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
res.Data = &uapi.LoginTokenData{UserID: "@auser:example.com"}
|
|
|
|
return nil
|
|
|
|
}
|