summaryrefslogtreecommitdiff
path: root/internal/processing/account/delete_test.go
blob: 5a68eda0c6d1a1e0d1d21998a5318b3a3379864d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// 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 := &gtsmodel.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))
}