| 
									
										
										
										
											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 18:30:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | package oauth_test | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/admin" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/oauth" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/state" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/testrig" | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +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 18:26:53 +00:00
										 |  |  | 	state            state.State | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +01:00
										 |  |  | 	testApplications map[string]*gtsmodel.Application | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +01:00
										 |  |  | func (suite *ClientStoreTestSuite) SetupSuite() { | 
					
						
							|  |  |  | 	suite.testApplications = testrig.NewTestApplications() | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +01:00
										 |  |  | func (suite *ClientStoreTestSuite) SetupTest() { | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	suite.state.Caches.Init() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	testrig.InitTestConfig() | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +01:00
										 |  |  | 	testrig.InitTestLog() | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00: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 16:03:36 +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 16:03:36 +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 16:03:36 +01:00
										 |  |  | 	// Fetch clientInfo from the store. | 
					
						
							| 
									
										
										
										
											2025-05-22 12:26:11 +02:00
										 |  |  | 	clientInfo, err := cs.GetByID(suite.T().Context(), testApp.ClientID) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +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 16:03:36 +01:00
										 |  |  | func TestClientStoreTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(ClientStoreTestSuite)) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } |