| 
									
										
										
										
											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 ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/state" | 
					
						
							| 
									
										
										
										
											2021-08-12 21:03:24 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/testrig" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/oauth2/v4/models" | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type PgClientStoreTestSuite struct { | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	db               db.DB | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	state            state.State | 
					
						
							| 
									
										
										
										
											2021-03-15 23:05:24 +01:00
										 |  |  | 	testClientID     string | 
					
						
							|  |  |  | 	testClientSecret string | 
					
						
							|  |  |  | 	testClientDomain string | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	testClientUserID string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetupSuite sets some variables on the suite that we can use as consts (more or less) throughout | 
					
						
							|  |  |  | func (suite *PgClientStoreTestSuite) SetupSuite() { | 
					
						
							| 
									
										
										
										
											2021-08-12 21:03:24 +02:00
										 |  |  | 	suite.testClientID = "01FCVB74EW6YBYAEY7QG9CQQF6" | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	suite.testClientSecret = "4cc87402-259b-4a35-9485-2c8bf54f3763" | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	suite.testClientDomain = "https://example.org" | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	suite.testClientUserID = "01FEGYXKVCDB731QF9MVFXA4F5" | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetupTest creates a postgres connection and creates the oauth_clients table before each test | 
					
						
							|  |  |  | func (suite *PgClientStoreTestSuite) SetupTest() { | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	suite.state.Caches.Init() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	testrig.InitTestLog() | 
					
						
							|  |  |  | 	testrig.InitTestConfig() | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	suite.db = testrig.NewTestDB(&suite.state) | 
					
						
							|  |  |  | 	suite.state.DB = suite.db | 
					
						
							| 
									
										
										
										
											2021-08-12 21:03:24 +02:00
										 |  |  | 	testrig.StandardDBSetup(suite.db, nil) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TearDownTest drops the oauth_clients table and closes the pg connection after each test | 
					
						
							|  |  |  | func (suite *PgClientStoreTestSuite) TearDownTest() { | 
					
						
							| 
									
										
										
										
											2021-08-12 21:03:24 +02:00
										 |  |  | 	testrig.StandardDBTeardown(suite.db) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *PgClientStoreTestSuite) TestClientStoreSetAndGet() { | 
					
						
							|  |  |  | 	// set a new client in the store | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	cs := oauth.NewClientStore(suite.db) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	if err := cs.Set(context.Background(), suite.testClientID, models.New(suite.testClientID, suite.testClientSecret, suite.testClientDomain, suite.testClientUserID)); err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// fetch that client from the store | 
					
						
							|  |  |  | 	client, err := cs.GetByID(context.Background(), suite.testClientID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// check that the values are the same | 
					
						
							|  |  |  | 	suite.NotNil(client) | 
					
						
							|  |  |  | 	suite.EqualValues(models.New(suite.testClientID, suite.testClientSecret, suite.testClientDomain, suite.testClientUserID), client) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *PgClientStoreTestSuite) TestClientSetAndDelete() { | 
					
						
							|  |  |  | 	// set a new client in the store | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	cs := oauth.NewClientStore(suite.db) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	if err := cs.Set(context.Background(), suite.testClientID, models.New(suite.testClientID, suite.testClientSecret, suite.testClientDomain, suite.testClientUserID)); err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// fetch the client from the store | 
					
						
							|  |  |  | 	client, err := cs.GetByID(context.Background(), suite.testClientID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// check that the values are the same | 
					
						
							|  |  |  | 	suite.NotNil(client) | 
					
						
							|  |  |  | 	suite.EqualValues(models.New(suite.testClientID, suite.testClientSecret, suite.testClientDomain, suite.testClientUserID), client) | 
					
						
							|  |  |  | 	if err := cs.Delete(context.Background(), suite.testClientID); err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// try to get the deleted client; we should get an error | 
					
						
							|  |  |  | 	deletedClient, err := cs.GetByID(context.Background(), suite.testClientID) | 
					
						
							|  |  |  | 	suite.Assert().Nil(deletedClient) | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 	suite.Assert().EqualValues(db.ErrNoEntries, err) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestPgClientStoreTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(PgClientStoreTestSuite)) | 
					
						
							|  |  |  | } |