From 59606791a7b18b0a80626d5ec7f05b90b51c779d Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 29 Mar 2018 14:20:36 -0700 Subject: MM-9999 Fix unwanted team invite_id in email invites. (#8550) * Fix unwanted team invite_id in email invites. * Removing unused translation. --- app/team_test.go | 67 -------------------------------------------------------- 1 file changed, 67 deletions(-) (limited to 'app/team_test.go') diff --git a/app/team_test.go b/app/team_test.go index cdfec12da..95f4b83d6 100644 --- a/app/team_test.go +++ b/app/team_test.go @@ -7,15 +7,7 @@ import ( "strings" "testing" - "fmt" - - "sync/atomic" - "github.com/mattermost/mattermost-server/model" - "github.com/mattermost/mattermost-server/store" - "github.com/mattermost/mattermost-server/store/storetest" - "github.com/mattermost/mattermost-server/utils" - "github.com/stretchr/testify/assert" ) func TestCreateTeam(t *testing.T) { @@ -402,65 +394,6 @@ func TestSanitizeTeams(t *testing.T) { }) } -func TestAddUserToTeamByHashMismatchedInviteId(t *testing.T) { - mockStore := &storetest.Store{} - defer mockStore.AssertExpectations(t) - - teamId := model.NewId() - userId := model.NewId() - inviteSalt := model.NewId() - - inviteId := model.NewId() - teamInviteId := model.NewId() - - // generate a fake email invite - stolen from SendInviteEmails() in email.go - props := make(map[string]string) - props["email"] = model.NewId() + "@mattermost.com" - props["id"] = teamId - props["display_name"] = model.NewId() - props["name"] = model.NewId() - props["time"] = fmt.Sprintf("%v", model.GetMillis()) - props["invite_id"] = inviteId - data := model.MapToJson(props) - hash := utils.HashSha256(fmt.Sprintf("%v:%v", data, inviteSalt)) - - // when the server tries to validate the invite, it will pull the user from our mock store - // this can return nil, because we'll fail before we get to trying to use it - mockStore.UserStore.On("Get", userId).Return( - storetest.NewStoreChannel(store.StoreResult{ - Data: nil, - Err: nil, - }), - ) - - // the server will also pull the team. the one we return has a different invite id than the one in the email invite we made above - mockStore.TeamStore.On("Get", teamId).Return( - storetest.NewStoreChannel(store.StoreResult{ - Data: &model.Team{ - InviteId: teamInviteId, - }, - Err: nil, - }), - ) - - app := App{ - Srv: &Server{ - Store: mockStore, - }, - config: atomic.Value{}, - } - app.config.Store(&model.Config{ - EmailSettings: model.EmailSettings{ - InviteSalt: inviteSalt, - }, - }) - - // this should fail because the invite ids are mismatched - team, err := app.AddUserToTeamByHash(userId, hash, data) - assert.Nil(t, team) - assert.Equal(t, "api.user.create_user.signup_link_mismatched_invite_id.app_error", err.Id) -} - func TestJoinUserToTeam(t *testing.T) { th := Setup().InitBasic() defer th.TearDown() -- cgit v1.2.3-1-g7c22