2021-11-22 18:03:21 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-11-22 18:03:21 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2023-01-02 12:10:50 +00:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2022-05-18 21:13:03 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-11-22 18:03:21 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/stream"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FromClientAPITestSuite struct {
|
|
|
|
ProcessingStandardTestSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *FromClientAPITestSuite) TestProcessStreamNewStatus() {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
// let's say that the admin account posts a new status: it should end up in the
|
|
|
|
// timeline of any account that follows it and has a stream open
|
|
|
|
postingAccount := suite.testAccounts["admin_account"]
|
|
|
|
receivingAccount := suite.testAccounts["local_account_1"]
|
|
|
|
|
|
|
|
// open a home timeline stream for zork
|
|
|
|
wssStream, errWithCode := suite.processor.OpenStreamForAccount(ctx, receivingAccount, stream.TimelineHome)
|
|
|
|
suite.NoError(errWithCode)
|
|
|
|
|
|
|
|
// open another stream for zork, but for a different timeline;
|
|
|
|
// this shouldn't get stuff streamed into it, since it's for the public timeline
|
|
|
|
irrelevantStream, errWithCode := suite.processor.OpenStreamForAccount(ctx, receivingAccount, stream.TimelinePublic)
|
|
|
|
suite.NoError(errWithCode)
|
|
|
|
|
|
|
|
// make a new status from admin account
|
|
|
|
newStatus := >smodel.Status{
|
|
|
|
ID: "01FN4B2F88TF9676DYNXWE1WSS",
|
|
|
|
URI: "http://localhost:8080/users/admin/statuses/01FN4B2F88TF9676DYNXWE1WSS",
|
|
|
|
URL: "http://localhost:8080/@admin/statuses/01FN4B2F88TF9676DYNXWE1WSS",
|
|
|
|
Content: "this status should stream :)",
|
|
|
|
AttachmentIDs: []string{},
|
|
|
|
TagIDs: []string{},
|
|
|
|
MentionIDs: []string{},
|
|
|
|
EmojiIDs: []string{},
|
|
|
|
CreatedAt: testrig.TimeMustParse("2021-10-20T11:36:45Z"),
|
|
|
|
UpdatedAt: testrig.TimeMustParse("2021-10-20T11:36:45Z"),
|
2022-08-15 10:35:05 +00:00
|
|
|
Local: testrig.TrueBool(),
|
2021-11-22 18:03:21 +00:00
|
|
|
AccountURI: "http://localhost:8080/users/admin",
|
|
|
|
AccountID: "01F8MH17FWEB39HZJ76B6VXSKF",
|
|
|
|
InReplyToID: "",
|
|
|
|
BoostOfID: "",
|
|
|
|
ContentWarning: "",
|
|
|
|
Visibility: gtsmodel.VisibilityFollowersOnly,
|
2022-08-15 10:35:05 +00:00
|
|
|
Sensitive: testrig.FalseBool(),
|
2021-11-22 18:03:21 +00:00
|
|
|
Language: "en",
|
|
|
|
CreatedWithApplicationID: "01F8MGXQRHYF5QPMTMXP78QC2F",
|
2022-08-15 10:35:05 +00:00
|
|
|
Pinned: testrig.FalseBool(),
|
|
|
|
Federated: testrig.FalseBool(),
|
|
|
|
Boostable: testrig.TrueBool(),
|
|
|
|
Replyable: testrig.TrueBool(),
|
|
|
|
Likeable: testrig.TrueBool(),
|
2021-11-22 18:03:21 +00:00
|
|
|
ActivityStreamsType: ap.ObjectNote,
|
|
|
|
}
|
|
|
|
|
|
|
|
// put the status in the db first, to mimic what would have already happened earlier up the flow
|
|
|
|
err := suite.db.PutStatus(ctx, newStatus)
|
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// process the new status
|
|
|
|
err = suite.processor.ProcessFromClientAPI(ctx, messages.FromClientAPI{
|
|
|
|
APObjectType: ap.ObjectNote,
|
|
|
|
APActivityType: ap.ActivityCreate,
|
|
|
|
GTSModel: newStatus,
|
|
|
|
OriginAccount: postingAccount,
|
|
|
|
})
|
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// zork's stream should have the newly created status in it now
|
|
|
|
msg := <-wssStream.Messages
|
|
|
|
suite.Equal(stream.EventTypeUpdate, msg.Event)
|
|
|
|
suite.NotEmpty(msg.Payload)
|
|
|
|
suite.EqualValues([]string{stream.TimelineHome}, msg.Stream)
|
2023-01-02 12:10:50 +00:00
|
|
|
statusStreamed := &apimodel.Status{}
|
2021-11-22 18:03:21 +00:00
|
|
|
err = json.Unmarshal([]byte(msg.Payload), statusStreamed)
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("01FN4B2F88TF9676DYNXWE1WSS", statusStreamed.ID)
|
|
|
|
suite.Equal("this status should stream :)", statusStreamed.Content)
|
|
|
|
|
|
|
|
// and stream should now be empty
|
|
|
|
suite.Empty(wssStream.Messages)
|
|
|
|
|
|
|
|
// the irrelevant messages stream should also be empty
|
|
|
|
suite.Empty(irrelevantStream.Messages)
|
|
|
|
}
|
|
|
|
|
2022-05-18 21:13:03 +00:00
|
|
|
func (suite *FromClientAPITestSuite) TestProcessStatusDelete() {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
deletingAccount := suite.testAccounts["local_account_1"]
|
|
|
|
receivingAccount := suite.testAccounts["local_account_2"]
|
|
|
|
|
|
|
|
deletedStatus := suite.testStatuses["local_account_1_status_1"]
|
|
|
|
boostOfDeletedStatus := suite.testStatuses["admin_account_status_4"]
|
|
|
|
|
|
|
|
// open a home timeline stream for turtle, who follows zork
|
|
|
|
wssStream, errWithCode := suite.processor.OpenStreamForAccount(ctx, receivingAccount, stream.TimelineHome)
|
|
|
|
suite.NoError(errWithCode)
|
|
|
|
|
|
|
|
// delete the status from the db first, to mimic what would have already happened earlier up the flow
|
2022-11-15 18:45:15 +00:00
|
|
|
err := suite.db.DeleteStatusByID(ctx, deletedStatus.ID)
|
2022-05-18 21:13:03 +00:00
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// process the status delete
|
|
|
|
err = suite.processor.ProcessFromClientAPI(ctx, messages.FromClientAPI{
|
|
|
|
APObjectType: ap.ObjectNote,
|
|
|
|
APActivityType: ap.ActivityDelete,
|
|
|
|
GTSModel: deletedStatus,
|
|
|
|
OriginAccount: deletingAccount,
|
|
|
|
})
|
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// turtle's stream should have the delete of admin's boost in it now
|
|
|
|
msg := <-wssStream.Messages
|
|
|
|
suite.Equal(stream.EventTypeDelete, msg.Event)
|
|
|
|
suite.Equal(boostOfDeletedStatus.ID, msg.Payload)
|
|
|
|
suite.EqualValues([]string{stream.TimelineHome}, msg.Stream)
|
|
|
|
|
|
|
|
// turtle's stream should also have the delete of the message itself in it
|
|
|
|
msg = <-wssStream.Messages
|
|
|
|
suite.Equal(stream.EventTypeDelete, msg.Event)
|
|
|
|
suite.Equal(deletedStatus.ID, msg.Payload)
|
|
|
|
suite.EqualValues([]string{stream.TimelineHome}, msg.Stream)
|
|
|
|
|
|
|
|
// stream should now be empty
|
|
|
|
suite.Empty(wssStream.Messages)
|
|
|
|
|
|
|
|
// the boost should no longer be in the database
|
|
|
|
_, err = suite.db.GetStatusByID(ctx, boostOfDeletedStatus.ID)
|
|
|
|
suite.ErrorIs(err, db.ErrNoEntries)
|
|
|
|
}
|
|
|
|
|
2021-11-22 18:03:21 +00:00
|
|
|
func TestFromClientAPITestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, &FromClientAPITestSuite{})
|
|
|
|
}
|