mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
7cc40302a5
* add miekg/dns dependency * set/validate accountDomain * move finger to dereferencer * totally break GetRemoteAccount * start reworking finger func a bit * start reworking getRemoteAccount a bit * move mention parts to namestring * rework webfingerget * use util function to extract webfinger parts * use accountDomain * rework finger again, final form * just a real nasty commit, the worst * remove refresh from account * use new ASRepToAccount signature * fix incorrect debug call * fix for new getRemoteAccount * rework GetRemoteAccount * start updating tests to remove repetition * break a lot of tests Move shared test logic into the testrig, rather than having it scattered all over the place. This allows us to just mock the transport controller once, and have all tests use it (unless they need not to for some other reason). * fix up tests to use main mock httpclient * webfinger only if necessary * cheeky linting with the lads * update mentionName regex recognize instance accounts * don't finger instance accounts * test webfinger part extraction * increase default worker count to 4 per cpu * don't repeat regex parsing * final search for discovered accountDomain * be more permissive in namestring lookup * add more extraction tests * simplify GetParseMentionFunc * skip long search if local account * fix broken test * consolidate to all use same caching libraries Signed-off-by: kim <grufwub@gmail.com> * perform more caching in the database layer Signed-off-by: kim <grufwub@gmail.com> * remove ASNote cache Signed-off-by: kim <grufwub@gmail.com> * update cache library, improve db tracing hooks Signed-off-by: kim <grufwub@gmail.com> * return ErrNoEntries if no account status IDs found, small formatting changes Signed-off-by: kim <grufwub@gmail.com> * fix tests, thanks tobi! Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
98 lines
3 KiB
Go
98 lines
3 KiB
Go
/*
|
|
GoToSocial
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
|
|
|
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 processing_test
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
"github.com/superseriousbusiness/activity/pub"
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
)
|
|
|
|
type AccountTestSuite struct {
|
|
ProcessingStandardTestSuite
|
|
}
|
|
|
|
func (suite *AccountTestSuite) TestAccountDeleteLocal() {
|
|
ctx := context.Background()
|
|
deletingAccount := suite.testAccounts["local_account_1"]
|
|
followingAccount := suite.testAccounts["remote_account_1"]
|
|
|
|
// make the following account follow the deleting account so that a delete message will be sent to it via the federating API
|
|
follow := >smodel.Follow{
|
|
ID: "01FJ1S8DX3STJJ6CEYPMZ1M0R3",
|
|
CreatedAt: time.Now(),
|
|
UpdatedAt: time.Now(),
|
|
URI: fmt.Sprintf("%s/follow/01FJ1S8DX3STJJ6CEYPMZ1M0R3", followingAccount.URI),
|
|
AccountID: followingAccount.ID,
|
|
TargetAccountID: deletingAccount.ID,
|
|
}
|
|
err := suite.db.Put(ctx, follow)
|
|
suite.NoError(err)
|
|
|
|
errWithCode := suite.processor.AccountDeleteLocal(ctx, suite.testAutheds["local_account_1"], &apimodel.AccountDeleteRequest{
|
|
Password: "password",
|
|
DeleteOriginID: deletingAccount.ID,
|
|
})
|
|
suite.NoError(errWithCode)
|
|
|
|
// the delete should be federated outwards to the following account's inbox
|
|
var sent []byte
|
|
var ok bool
|
|
for !ok {
|
|
sent, ok = suite.httpClient.SentMessages[followingAccount.InboxURI]
|
|
}
|
|
|
|
suite.True(ok)
|
|
delete := &struct {
|
|
Actor string `json:"actor"`
|
|
ID string `json:"id"`
|
|
Object string `json:"object"`
|
|
To string `json:"to"`
|
|
CC string `json:"cc"`
|
|
Type string `json:"type"`
|
|
}{}
|
|
err = json.Unmarshal(sent, delete)
|
|
suite.NoError(err)
|
|
|
|
suite.Equal(deletingAccount.URI, delete.Actor)
|
|
suite.Equal(deletingAccount.URI, delete.Object)
|
|
suite.Equal(deletingAccount.FollowersURI, delete.To)
|
|
suite.Equal(pub.PublicActivityPubIRI, delete.CC)
|
|
suite.Equal("Delete", delete.Type)
|
|
|
|
// wait for the delete to go through
|
|
time.Sleep(1 * time.Second)
|
|
|
|
// the deleted account should be deleted
|
|
dbAccount, err := suite.db.GetAccountByID(ctx, deletingAccount.ID)
|
|
suite.NoError(err)
|
|
suite.WithinDuration(dbAccount.SuspendedAt, time.Now(), 30*time.Second)
|
|
}
|
|
|
|
func TestAccountTestSuite(t *testing.T) {
|
|
suite.Run(t, &AccountTestSuite{})
|
|
}
|