2023-03-12 16:00:57 +01:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2022-09-28 19:30:40 +02:00
|
|
|
|
2021-05-08 14:25:55 +02:00
|
|
|
package oauth_test
|
2021-03-15 18:59:38 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
2025-01-08 11:29:40 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/admin"
|
2021-04-01 20:46:45 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2025-03-03 11:45:45 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-05-08 14:25:55 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2023-03-01 19:26:53 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
2021-08-12 21:03:24 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
2021-03-15 18:59:38 +01:00
|
|
|
)
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
type ClientStoreTestSuite struct {
|
2021-03-15 18:59:38 +01:00
|
|
|
suite.Suite
|
2021-03-22 22:26:54 +01:00
|
|
|
db db.DB
|
2023-03-01 19:26:53 +01:00
|
|
|
state state.State
|
2025-03-03 11:45:45 +01:00
|
|
|
testApplications map[string]*gtsmodel.Application
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
func (suite *ClientStoreTestSuite) SetupSuite() {
|
|
|
|
suite.testApplications = testrig.NewTestApplications()
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
func (suite *ClientStoreTestSuite) SetupTest() {
|
2023-03-01 19:26:53 +01:00
|
|
|
suite.state.Caches.Init()
|
2021-12-07 13:31:39 +01:00
|
|
|
testrig.InitTestConfig()
|
2025-03-03 11:45:45 +01:00
|
|
|
testrig.InitTestLog()
|
2023-03-01 19:26:53 +01:00
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
|
|
|
suite.state.DB = suite.db
|
2025-01-08 11:29:40 +01:00
|
|
|
suite.state.AdminActions = admin.New(suite.state.DB, &suite.state.Workers)
|
2021-08-12 21:03:24 +02:00
|
|
|
testrig.StandardDBSetup(suite.db, nil)
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
func (suite *ClientStoreTestSuite) TearDownTest() {
|
2021-08-12 21:03:24 +02:00
|
|
|
testrig.StandardDBTeardown(suite.db)
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
func (suite *ClientStoreTestSuite) TestClientStoreGet() {
|
|
|
|
testApp := suite.testApplications["application_1"]
|
|
|
|
cs := oauth.NewClientStore(&suite.state)
|
2021-03-15 18:59:38 +01:00
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
// Fetch clientInfo from the store.
|
|
|
|
clientInfo, err := cs.GetByID(context.Background(), testApp.ClientID)
|
2021-03-15 18:59:38 +01:00
|
|
|
if err != nil {
|
|
|
|
suite.FailNow(err.Error())
|
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
// Check expected values.
|
|
|
|
suite.NotNil(clientInfo)
|
|
|
|
suite.Equal(testApp.ClientID, clientInfo.GetID())
|
|
|
|
suite.Equal(testApp.ClientSecret, clientInfo.GetSecret())
|
|
|
|
suite.Equal(testApp.RedirectURIs[0], clientInfo.GetDomain())
|
|
|
|
suite.Equal(testApp.ManagedByUserID, clientInfo.GetUserID())
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-03 11:45:45 +01:00
|
|
|
func TestClientStoreTestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(ClientStoreTestSuite))
|
2021-03-15 18:59:38 +01:00
|
|
|
}
|