diff options
| author | 2025-05-22 12:26:11 +0200 | |
|---|---|---|
| committer | 2025-05-22 12:26:11 +0200 | |
| commit | d5c9c4adc167cdb05e73f5105702cf340293e61c (patch) | |
| tree | 1d21fe376099864900837eba675a965517f98e5d /internal/federation/federatingprotocol_test.go | |
| parent | [feature] Allow exposing allows, implement `/api/v1/domain_blocks` and `/api/... (diff) | |
| download | gotosocial-d5c9c4adc167cdb05e73f5105702cf340293e61c.tar.xz | |
[chore] Upgrade to Go 1.24 (#4187)
* Set `go.mod` to 1.24 now that it's been out for 3 months.
* Update all the test to use `testing.T.Context()`.
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4187
Co-authored-by: Daenney <git@noreply.sourcery.dny.nu>
Co-committed-by: Daenney <git@noreply.sourcery.dny.nu>
Diffstat (limited to 'internal/federation/federatingprotocol_test.go')
| -rw-r--r-- | internal/federation/federatingprotocol_test.go | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/internal/federation/federatingprotocol_test.go b/internal/federation/federatingprotocol_test.go index fa4950d82..ed0895ca8 100644 --- a/internal/federation/federatingprotocol_test.go +++ b/internal/federation/federatingprotocol_test.go @@ -130,7 +130,7 @@ func (suite *FederatingProtocolTestSuite) TestPostInboxRequestBodyHookDM() { ) ctx := suite.postInboxRequestBodyHook( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -155,7 +155,7 @@ func (suite *FederatingProtocolTestSuite) TestPostInboxRequestBodyHookReply() { ) ctx := suite.postInboxRequestBodyHook( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -180,7 +180,7 @@ func (suite *FederatingProtocolTestSuite) TestPostInboxRequestBodyHookReplyToRep ) ctx := suite.postInboxRequestBodyHook( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -205,7 +205,7 @@ func (suite *FederatingProtocolTestSuite) TestPostInboxRequestBodyHookAnnounceFo ) ctx := suite.postInboxRequestBodyHook( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -230,7 +230,7 @@ func (suite *FederatingProtocolTestSuite) TestPostInboxRequestBodyHookAnnounceFo ) ctx := suite.postInboxRequestBodyHook( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -255,7 +255,7 @@ func (suite *FederatingProtocolTestSuite) TestAuthenticatePostInbox() { ) ctx, authed, resp, code := suite.authenticatePostInbox( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -268,7 +268,7 @@ func (suite *FederatingProtocolTestSuite) TestAuthenticatePostInbox() { func (suite *FederatingProtocolTestSuite) TestAuthenticatePostInboxKeyExpired() { var ( - ctx = context.Background() + ctx = suite.T().Context() activity = suite.testActivities["dm_for_zork"] receivingAccount = suite.testAccounts["local_account_1"] ) @@ -300,7 +300,7 @@ func (suite *FederatingProtocolTestSuite) TestAuthenticatePostGoneWithTombstone( ) ctx, authed, resp, code := suite.authenticatePostInbox( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -320,12 +320,12 @@ func (suite *FederatingProtocolTestSuite) TestAuthenticatePostGoneNoTombstone() ) // Delete the tombstone; it'll have to be created again. - if err := suite.state.DB.DeleteTombstone(context.Background(), testTombstone.ID); err != nil { + if err := suite.state.DB.DeleteTombstone(suite.T().Context(), testTombstone.ID); err != nil { suite.FailNow(err.Error()) } ctx, authed, resp, code := suite.authenticatePostInbox( - context.Background(), + suite.T().Context(), receivingAccount, activity, ) @@ -337,7 +337,7 @@ func (suite *FederatingProtocolTestSuite) TestAuthenticatePostGoneNoTombstone() // Tombstone should be back, baby! exists, err := suite.state.DB.TombstoneExistsWithURI( - context.Background(), + suite.T().Context(), "https://somewhere.mysterious/users/rest_in_piss#main-key", ) suite.NoError(err) @@ -368,7 +368,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedNoProblem() { ) blocked, err := suite.blocked( - context.Background(), + suite.T().Context(), receivingAccount, requestingAccount, otherIRIs, @@ -390,7 +390,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedReceiverBlocksRequester() { ) // Insert a block from receivingAccount targeting requestingAccount. - if err := suite.state.DB.PutBlock(context.Background(), >smodel.Block{ + if err := suite.state.DB.PutBlock(suite.T().Context(), >smodel.Block{ ID: "01G3KBEMJD4VQ2D615MPV7KTRD", URI: "whatever", AccountID: receivingAccount.ID, @@ -400,7 +400,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedReceiverBlocksRequester() { } blocked, err := suite.blocked( - context.Background(), + suite.T().Context(), receivingAccount, requestingAccount, otherIRIs, @@ -425,7 +425,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedCCd() { ) // Insert a block from receivingAccount targeting ccedAccount. - if err := suite.state.DB.PutBlock(context.Background(), >smodel.Block{ + if err := suite.state.DB.PutBlock(suite.T().Context(), >smodel.Block{ ID: "01G3KBEMJD4VQ2D615MPV7KTRD", URI: "whatever", AccountID: receivingAccount.ID, @@ -435,7 +435,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedCCd() { } blocked, err := suite.blocked( - context.Background(), + suite.T().Context(), receivingAccount, requestingAccount, otherIRIs, @@ -462,7 +462,7 @@ func (suite *FederatingProtocolTestSuite) TestBlockedRepliedStatus() { ) blocked, err := suite.blocked( - context.Background(), + suite.T().Context(), receivingAccount, requestingAccount, otherIRIs, |
