mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-29 19:52:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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/>.
 | |
| 
 | |
| package account_test
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"net"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/stretchr/testify/suite"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
 | |
| )
 | |
| 
 | |
| type AccountDeleteTestSuite struct {
 | |
| 	AccountStandardTestSuite
 | |
| }
 | |
| 
 | |
| func (suite *AccountDeleteTestSuite) TestAccountDeleteLocal() {
 | |
| 	ctx := context.Background()
 | |
| 
 | |
| 	// Keep a reference around to the original account
 | |
| 	// and user, before the delete was processed.
 | |
| 	ogAccount := suite.testAccounts["local_account_1"]
 | |
| 	ogUser := suite.testUsers["local_account_1"]
 | |
| 
 | |
| 	testAccount := >smodel.Account{}
 | |
| 	*testAccount = *ogAccount
 | |
| 
 | |
| 	suspensionOrigin := "01GWVP2A8J38Q2J2FDZ6TS8AQG"
 | |
| 	if err := suite.accountProcessor.Delete(ctx, testAccount, suspensionOrigin); err != nil {
 | |
| 		suite.FailNow(err.Error())
 | |
| 	}
 | |
| 
 | |
| 	updatedAccount, err := suite.db.GetAccountByID(ctx, ogAccount.ID)
 | |
| 	if err != nil {
 | |
| 		suite.FailNow(err.Error())
 | |
| 	}
 | |
| 
 | |
| 	suite.WithinDuration(time.Now(), updatedAccount.UpdatedAt, 1*time.Minute)
 | |
| 	suite.Zero(updatedAccount.FetchedAt)
 | |
| 	suite.Zero(updatedAccount.AvatarMediaAttachmentID)
 | |
| 	suite.Zero(updatedAccount.AvatarRemoteURL)
 | |
| 	suite.Zero(updatedAccount.HeaderMediaAttachmentID)
 | |
| 	suite.Zero(updatedAccount.HeaderRemoteURL)
 | |
| 	suite.Zero(updatedAccount.DisplayName)
 | |
| 	suite.Nil(updatedAccount.EmojiIDs)
 | |
| 	suite.Nil(updatedAccount.Emojis)
 | |
| 	suite.Nil(updatedAccount.Fields)
 | |
| 	suite.Zero(updatedAccount.Note)
 | |
| 	suite.Zero(updatedAccount.NoteRaw)
 | |
| 	suite.False(*updatedAccount.Memorial)
 | |
| 	suite.Zero(updatedAccount.AlsoKnownAs)
 | |
| 	suite.Zero(updatedAccount.Reason)
 | |
| 	suite.False(*updatedAccount.Discoverable)
 | |
| 	suite.Zero(updatedAccount.StatusContentType)
 | |
| 	suite.Zero(updatedAccount.CustomCSS)
 | |
| 	suite.WithinDuration(time.Now(), updatedAccount.SuspendedAt, 1*time.Minute)
 | |
| 	suite.Equal(suspensionOrigin, updatedAccount.SuspensionOrigin)
 | |
| 	suite.True(*updatedAccount.HideCollections)
 | |
| 	suite.False(*updatedAccount.EnableRSS)
 | |
| 
 | |
| 	updatedUser, err := suite.db.GetUserByAccountID(ctx, testAccount.ID)
 | |
| 	if err != nil {
 | |
| 		suite.FailNow(err.Error())
 | |
| 	}
 | |
| 
 | |
| 	suite.WithinDuration(time.Now(), updatedUser.UpdatedAt, 1*time.Minute)
 | |
| 	suite.NotEqual(updatedUser.EncryptedPassword, ogUser.EncryptedPassword)
 | |
| 	suite.Equal(net.IPv4zero, updatedUser.SignUpIP)
 | |
| 	suite.Zero(updatedUser.CurrentSignInAt)
 | |
| 	suite.Equal(net.IPv4zero, updatedUser.CurrentSignInIP)
 | |
| 	suite.Zero(updatedUser.LastSignInAt)
 | |
| 	suite.Equal(net.IPv4zero, updatedUser.LastSignInIP)
 | |
| 	suite.Equal(1, updatedUser.SignInCount)
 | |
| 	suite.Zero(updatedUser.Locale)
 | |
| 	suite.Zero(updatedUser.CreatedByApplicationID)
 | |
| 	suite.Zero(updatedUser.LastEmailedAt)
 | |
| 	suite.Zero(updatedUser.ConfirmationToken)
 | |
| 	suite.Zero(updatedUser.ConfirmationSentAt)
 | |
| 	suite.Zero(updatedUser.ResetPasswordToken)
 | |
| 	suite.Zero(updatedUser.ResetPasswordSentAt)
 | |
| }
 | |
| 
 | |
| func TestAccountDeleteTestSuite(t *testing.T) {
 | |
| 	suite.Run(t, new(AccountDeleteTestSuite))
 | |
| }
 |