parent
5162c285a8
commit
1a85a29b1b
|
@ -3288,25 +3288,6 @@ func (m *Manager) SaveRequestToJoinAndCommunity(requestToJoin *RequestToJoin, co
|
|||
return community, requestToJoin, nil
|
||||
}
|
||||
|
||||
func (m *Manager) CheckCommunityForJoining(communityID types.HexBytes) (*Community, error) {
|
||||
community, err := m.GetByID(communityID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// We don't allow requesting access if already joined
|
||||
if community.Joined() {
|
||||
return nil, ErrAlreadyJoined
|
||||
}
|
||||
|
||||
err = community.updateCommunityDescriptionByEvents()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return community, nil
|
||||
}
|
||||
|
||||
func (m *Manager) CreateRequestToJoin(request *requests.RequestToJoinCommunity) *RequestToJoin {
|
||||
clock := uint64(time.Now().Unix())
|
||||
requestToJoin := &RequestToJoin{
|
||||
|
|
|
@ -1112,14 +1112,6 @@ func testAcceptMemberRequestToJoin(base CommunityEventsTestsInterface, community
|
|||
s.Require().Len(acceptedRequestsPending, 1)
|
||||
s.Require().Equal(acceptedRequestsPending[0].PublicKey, common.PubkeyToHex(&user.identity.PublicKey))
|
||||
|
||||
// user should not receive community admin event without being a member yet
|
||||
_, err = WaitOnMessengerResponse(
|
||||
user,
|
||||
func(r *MessengerResponse) bool { return len(r.Communities()) > 0 },
|
||||
"user did not receive community request to join response",
|
||||
)
|
||||
s.Require().Error(err)
|
||||
|
||||
// control node receives community event with accepted membership request
|
||||
_, err = WaitOnMessengerResponse(
|
||||
base.GetControlNode(),
|
||||
|
|
|
@ -1023,6 +1023,16 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun
|
|||
return nil, err
|
||||
}
|
||||
|
||||
community, err := m.communitiesManager.GetByID(request.CommunityID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// We don't allow requesting access if already joined
|
||||
if community.Joined() {
|
||||
return nil, communities.ErrAlreadyJoined
|
||||
}
|
||||
|
||||
requestToJoin := m.communitiesManager.CreateRequestToJoin(request)
|
||||
|
||||
if len(request.AddressesToReveal) > 0 {
|
||||
|
@ -1048,11 +1058,6 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun
|
|||
}
|
||||
}
|
||||
|
||||
community, err := m.communitiesManager.CheckCommunityForJoining(request.CommunityID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
displayName, err := m.settings.DisplayName()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
|
@ -0,0 +1,138 @@
|
|||
package protocol
|
||||
|
||||
import (
|
||||
"context"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/suite"
|
||||
"go.uber.org/zap"
|
||||
|
||||
gethbridge "github.com/status-im/status-go/eth-node/bridge/geth"
|
||||
"github.com/status-im/status-go/eth-node/types"
|
||||
"github.com/status-im/status-go/protocol/common/shard"
|
||||
"github.com/status-im/status-go/protocol/communities"
|
||||
"github.com/status-im/status-go/protocol/requests"
|
||||
"github.com/status-im/status-go/protocol/tt"
|
||||
)
|
||||
|
||||
func TestMessengerCommunitiesShardingSuite(t *testing.T) {
|
||||
suite.Run(t, new(MessengerCommunitiesShardingSuite))
|
||||
}
|
||||
|
||||
type MessengerCommunitiesShardingSuite struct {
|
||||
suite.Suite
|
||||
|
||||
owner *Messenger
|
||||
ownerWaku types.Waku
|
||||
|
||||
alice *Messenger
|
||||
aliceWaku types.Waku
|
||||
|
||||
logger *zap.Logger
|
||||
}
|
||||
|
||||
func (s *MessengerCommunitiesShardingSuite) SetupTest() {
|
||||
s.logger = tt.MustCreateTestLogger()
|
||||
|
||||
wakuNodes := CreateWakuV2Network(&s.Suite, s.logger, true, []string{"owner", "alice"})
|
||||
|
||||
nodeConfig := defaultTestCommunitiesMessengerNodeConfig()
|
||||
nodeConfig.WakuV2Config.UseShardAsDefaultTopic = true
|
||||
|
||||
s.ownerWaku = wakuNodes[0]
|
||||
s.owner = newTestCommunitiesMessenger(&s.Suite, s.ownerWaku, testCommunitiesMessengerConfig{
|
||||
testMessengerConfig: testMessengerConfig{
|
||||
name: "owner",
|
||||
logger: s.logger,
|
||||
},
|
||||
nodeConfig: nodeConfig,
|
||||
})
|
||||
|
||||
s.aliceWaku = wakuNodes[1]
|
||||
s.alice = newTestCommunitiesMessenger(&s.Suite, s.aliceWaku, testCommunitiesMessengerConfig{
|
||||
testMessengerConfig: testMessengerConfig{
|
||||
name: "alice",
|
||||
logger: s.logger,
|
||||
},
|
||||
nodeConfig: nodeConfig,
|
||||
})
|
||||
|
||||
_, err := s.owner.Start()
|
||||
s.Require().NoError(err)
|
||||
_, err = s.alice.Start()
|
||||
s.Require().NoError(err)
|
||||
}
|
||||
|
||||
func (s *MessengerCommunitiesShardingSuite) TearDownTest() {
|
||||
if s.owner != nil {
|
||||
TearDownMessenger(&s.Suite, s.owner)
|
||||
}
|
||||
if s.ownerWaku != nil {
|
||||
s.Require().NoError(gethbridge.GetGethWakuV2From(s.ownerWaku).Stop())
|
||||
}
|
||||
if s.alice != nil {
|
||||
TearDownMessenger(&s.Suite, s.alice)
|
||||
}
|
||||
if s.aliceWaku != nil {
|
||||
s.Require().NoError(gethbridge.GetGethWakuV2From(s.aliceWaku).Stop())
|
||||
}
|
||||
_ = s.logger.Sync()
|
||||
}
|
||||
|
||||
func (s *MessengerCommunitiesShardingSuite) testPostToCommunityChat(shard *shard.Shard, community *communities.Community, chat *Chat) {
|
||||
_, err := s.owner.SetCommunityShard(&requests.SetCommunityShard{
|
||||
CommunityID: community.ID(),
|
||||
Shard: shard,
|
||||
})
|
||||
s.Require().NoError(err)
|
||||
|
||||
_, err = WaitOnMessengerResponse(s.alice, func(mr *MessengerResponse) bool {
|
||||
if len(mr.communities) == 0 {
|
||||
return false
|
||||
}
|
||||
if shard == nil {
|
||||
return mr.Communities()[0].Shard() == nil
|
||||
}
|
||||
return mr.Communities()[0].Shard() != nil && mr.Communities()[0].Shard().Index == shard.Index
|
||||
}, "shard info not updated")
|
||||
s.Require().NoError(err)
|
||||
|
||||
message := buildTestMessage(*chat)
|
||||
_, err = s.owner.SendChatMessage(context.Background(), message)
|
||||
s.Require().NoError(err)
|
||||
|
||||
_, err = WaitOnMessengerResponse(s.alice, func(mr *MessengerResponse) bool {
|
||||
return len(mr.messages) > 0 && mr.Messages()[0].ID == message.ID
|
||||
}, "message not received")
|
||||
s.Require().NoError(err)
|
||||
}
|
||||
|
||||
func (s *MessengerCommunitiesShardingSuite) TestPostToCommunityChat() {
|
||||
community, chat := createCommunity(&s.Suite, s.owner)
|
||||
|
||||
advertiseCommunityToUserOldWay(&s.Suite, community, s.owner, s.alice)
|
||||
joinCommunity(&s.Suite, community, s.owner, s.alice, &requests.RequestToJoinCommunity{CommunityID: community.ID()}, "")
|
||||
|
||||
// Members should be able to receive messages in a community with sharding enabled.
|
||||
{
|
||||
shard := &shard.Shard{
|
||||
Cluster: shard.MainStatusShardCluster,
|
||||
Index: 128,
|
||||
}
|
||||
s.testPostToCommunityChat(shard, community, chat)
|
||||
}
|
||||
|
||||
// Members should be able to receive messages in a community where the sharding configuration has been edited.
|
||||
{
|
||||
shard := &shard.Shard{
|
||||
Cluster: shard.MainStatusShardCluster,
|
||||
Index: 256,
|
||||
}
|
||||
s.testPostToCommunityChat(shard, community, chat)
|
||||
}
|
||||
|
||||
// Members should continue to receive messages in a community if sharding is disabled after it was previously enabled.
|
||||
{
|
||||
s.testPostToCommunityChat(nil, community, chat)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue