gotosocial/internal/federation/protocol_test.go

100 lines
3.2 KiB
Go
Raw Normal View History

2021-04-24 18:15:08 +02:00
/*
GoToSocial
Copyright (C) 2021 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 federation_test
import (
2021-04-25 15:06:33 +02:00
"context"
"net/http"
"net/http/httptest"
2021-04-24 18:15:08 +02:00
"testing"
2021-04-25 15:06:33 +02:00
"github.com/go-fed/activity/pub"
2021-04-24 18:15:08 +02:00
"github.com/sirupsen/logrus"
2021-04-25 15:06:33 +02:00
"github.com/stretchr/testify/assert"
2021-04-24 18:15:08 +02:00
"github.com/stretchr/testify/suite"
"github.com/superseriousbusiness/gotosocial/internal/config"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/federation"
2021-04-25 15:06:33 +02:00
"github.com/superseriousbusiness/gotosocial/internal/util"
2021-04-24 18:15:08 +02:00
"github.com/superseriousbusiness/gotosocial/testrig"
)
type ProtocolTestSuite struct {
suite.Suite
2021-04-25 15:06:33 +02:00
config *config.Config
db db.DB
log *logrus.Logger
federator *federation.Federator
activities map[string]pub.Activity
2021-04-24 18:15:08 +02:00
}
// SetupSuite sets some variables on the suite that we can use as consts (more or less) throughout
func (suite *ProtocolTestSuite) SetupSuite() {
// setup standard items
suite.config = testrig.NewTestConfig()
suite.db = testrig.NewTestDB()
suite.log = testrig.NewTestLog()
2021-04-25 15:06:33 +02:00
suite.activities = testrig.NewTestActivities()
2021-04-24 18:15:08 +02:00
// setup module being tested
suite.federator = federation.NewFederator(suite.db, suite.log, suite.config).(*federation.Federator)
}
func (suite *ProtocolTestSuite) SetupTest() {
testrig.StandardDBSetup(suite.db)
}
// TearDownTest drops tables to make sure there's no data in the db
func (suite *ProtocolTestSuite) TearDownTest() {
testrig.StandardDBTeardown(suite.db)
}
2021-04-25 15:06:33 +02:00
// make sure PostInboxRequestBodyHook properly sets the inbox username and activity on the context
2021-04-24 18:15:08 +02:00
func (suite *ProtocolTestSuite) TestPostInboxRequestBodyHook() {
2021-04-25 15:06:33 +02:00
activity := suite.activities["dm_for_zork"]
2021-04-24 18:15:08 +02:00
2021-04-25 15:06:33 +02:00
// setup
ctx := context.Background()
request := httptest.NewRequest(http.MethodPost, "http://localhost:8080/users/the_mighty_zork/inbox", nil) // the endpoint we're hitting
newContext, err := suite.federator.PostInboxRequestBodyHook(ctx, request, activity)
assert.NoError(suite.T(), err)
assert.NotNil(suite.T(), newContext)
usernameI := newContext.Value(util.APUsernameKey)
assert.NotNil(suite.T(), usernameI)
username, ok := usernameI.(string)
assert.True(suite.T(), ok)
assert.NotEmpty(suite.T(), username)
assert.Equal(suite.T(), "the_mighty_zork", username)
activityI := newContext.Value(util.APActivityKey)
assert.NotNil(suite.T(), activityI)
returnedActivity, ok := activityI.(pub.Activity)
assert.True(suite.T(), ok)
assert.NotNil(suite.T(), returnedActivity)
assert.EqualValues(suite.T(), activity, returnedActivity)
2021-04-24 18:15:08 +02:00
}
func TestProtocolTestSuite(t *testing.T) {
suite.Run(t, new(ProtocolTestSuite))
}