2023-07-05 17:35:22 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"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/crypto"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
|
|
"github.com/status-im/status-go/protocol/common"
|
|
|
|
"github.com/status-im/status-go/protocol/communities"
|
|
|
|
"github.com/status-im/status-go/protocol/communities/token"
|
|
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
|
|
"github.com/status-im/status-go/protocol/requests"
|
|
|
|
"github.com/status-im/status-go/protocol/tt"
|
|
|
|
"github.com/status-im/status-go/services/communitytokens"
|
|
|
|
"github.com/status-im/status-go/services/wallet/bigint"
|
|
|
|
"github.com/status-im/status-go/waku"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMessengerCommunitiesSignersSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(MessengerCommunitiesSignersSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessengerCommunitiesSignersSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
john *Messenger
|
|
|
|
bob *Messenger
|
|
|
|
alice *Messenger
|
|
|
|
|
|
|
|
shh types.Waku
|
|
|
|
logger *zap.Logger
|
|
|
|
|
|
|
|
collectiblesServiceMock *CollectiblesServiceMock
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) SetupTest() {
|
|
|
|
|
|
|
|
communities.SetValidateInterval(300 * time.Millisecond)
|
|
|
|
|
|
|
|
s.logger = tt.MustCreateTestLogger()
|
|
|
|
|
|
|
|
s.collectiblesServiceMock = &CollectiblesServiceMock{}
|
|
|
|
|
|
|
|
config := waku.DefaultConfig
|
|
|
|
config.MinimumAcceptedPoW = 0
|
|
|
|
shh := waku.New(&config, s.logger)
|
|
|
|
s.shh = gethbridge.NewGethWakuWrapper(shh)
|
|
|
|
s.Require().NoError(shh.Start())
|
|
|
|
|
|
|
|
s.john = s.newMessenger()
|
|
|
|
s.bob = s.newMessenger()
|
|
|
|
s.alice = s.newMessenger()
|
|
|
|
_, err := s.john.Start()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
_, err = s.bob.Start()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
_, err = s.alice.Start()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) TearDownTest() {
|
|
|
|
s.Require().NoError(s.john.Shutdown())
|
|
|
|
s.Require().NoError(s.bob.Shutdown())
|
|
|
|
s.Require().NoError(s.alice.Shutdown())
|
|
|
|
_ = s.logger.Sync()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) newMessengerWithKey(privateKey *ecdsa.PrivateKey) *Messenger {
|
|
|
|
messenger, err := newCommunitiesTestMessenger(s.shh, privateKey, s.logger, nil, nil, s.collectiblesServiceMock)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
return messenger
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) newMessenger() *Messenger {
|
|
|
|
privateKey, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
return s.newMessengerWithKey(privateKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) createCommunity(controlNode *Messenger) *communities.Community {
|
|
|
|
community, _ := createCommunity(&s.Suite, controlNode)
|
|
|
|
return community
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) advertiseCommunityTo(controlNode *Messenger, community *communities.Community, user *Messenger) {
|
|
|
|
advertiseCommunityTo(&s.Suite, community, controlNode, user)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) joinCommunity(controlNode *Messenger, community *communities.Community, user *Messenger) {
|
|
|
|
request := &requests.RequestToJoinCommunity{CommunityID: community.ID()}
|
2023-10-20 06:21:41 +00:00
|
|
|
joinCommunity(&s.Suite, community, controlNode, user, request, "")
|
2023-07-05 17:35:22 +00:00
|
|
|
}
|
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
func (s *MessengerCommunitiesSignersSuite) joinOnRequestCommunity(controlNode *Messenger, community *communities.Community, user *Messenger) {
|
|
|
|
request := &requests.RequestToJoinCommunity{CommunityID: community.ID()}
|
|
|
|
joinOnRequestCommunity(&s.Suite, community, controlNode, user, request)
|
|
|
|
}
|
|
|
|
|
2023-07-05 17:35:22 +00:00
|
|
|
// John crates a community
|
|
|
|
// Ownership is transferred to Alice
|
2023-10-31 14:20:40 +00:00
|
|
|
// Alice kick all members Bob and John rejoins
|
|
|
|
// Bob and John accepts the changes
|
2023-07-05 17:35:22 +00:00
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) TestControlNodeUpdateSigner() {
|
|
|
|
// Create a community
|
|
|
|
// Transfer ownership
|
|
|
|
// Process message
|
|
|
|
community := s.createCommunity(s.john)
|
|
|
|
|
|
|
|
s.advertiseCommunityTo(s.john, community, s.bob)
|
|
|
|
s.advertiseCommunityTo(s.john, community, s.alice)
|
|
|
|
|
|
|
|
s.joinCommunity(s.john, community, s.bob)
|
|
|
|
s.joinCommunity(s.john, community, s.alice)
|
|
|
|
|
2023-09-21 11:16:05 +00:00
|
|
|
// john mints owner token
|
|
|
|
var chainID uint64 = 1
|
|
|
|
tokenAddress := "token-address"
|
|
|
|
tokenName := "tokenName"
|
|
|
|
tokenSymbol := "TSM"
|
|
|
|
_, err := s.john.SaveCommunityToken(&token.CommunityToken{
|
|
|
|
TokenType: protobuf.CommunityTokenType_ERC721,
|
|
|
|
CommunityID: community.IDString(),
|
|
|
|
Address: tokenAddress,
|
|
|
|
ChainID: int(chainID),
|
|
|
|
Name: tokenName,
|
|
|
|
Supply: &bigint.BigInt{},
|
|
|
|
Symbol: tokenSymbol,
|
|
|
|
PrivilegesLevel: token.OwnerLevel,
|
|
|
|
}, nil)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// john adds minted owner token to community
|
|
|
|
err = s.john.AddCommunityToken(community.IDString(), int(chainID), tokenAddress)
|
2023-07-05 17:35:22 +00:00
|
|
|
s.Require().NoError(err)
|
2023-09-21 11:16:05 +00:00
|
|
|
|
|
|
|
// update mock - the signer for the community returned by the contracts should be john
|
|
|
|
s.collectiblesServiceMock.SetSignerPubkeyForCommunity(community.ID(), common.PubkeyToHex(&s.john.identity.PublicKey))
|
|
|
|
s.collectiblesServiceMock.SetMockCollectibleContractData(chainID, tokenAddress,
|
|
|
|
&communitytokens.CollectibleContractData{TotalSupply: &bigint.BigInt{}})
|
2023-07-05 17:35:22 +00:00
|
|
|
|
|
|
|
// bob accepts community update
|
2023-09-21 11:16:05 +00:00
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
2023-07-05 17:35:22 +00:00
|
|
|
s.bob,
|
|
|
|
func(r *MessengerResponse) bool {
|
2023-10-31 14:20:40 +00:00
|
|
|
return len(r.Communities()) > 0 && len(r.Communities()[0].TokenPermissions()) == 1
|
2023-07-05 17:35:22 +00:00
|
|
|
},
|
|
|
|
"no communities",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// alice accepts community update
|
2023-09-21 11:16:05 +00:00
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
2023-07-05 17:35:22 +00:00
|
|
|
s.alice,
|
|
|
|
func(r *MessengerResponse) bool {
|
2023-10-31 14:20:40 +00:00
|
|
|
return len(r.Communities()) > 0 && len(r.Communities()[0].TokenPermissions()) == 1
|
2023-07-05 17:35:22 +00:00
|
|
|
},
|
|
|
|
"no communities",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
// Ownership token will be transferred to Alice and she will kick all members
|
|
|
|
// and request kicked members to rejoin
|
|
|
|
// the signer for the community returned by the contracts should be alice
|
2023-07-05 17:35:22 +00:00
|
|
|
s.collectiblesServiceMock.SetSignerPubkeyForCommunity(community.ID(), common.PubkeyToHex(&s.alice.identity.PublicKey))
|
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
response, err := s.alice.PromoteSelfToControlNode(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotNil(response)
|
|
|
|
|
|
|
|
community, err = s.alice.communitiesManager.GetByID(community.ID())
|
2023-07-05 17:35:22 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().True(community.IsControlNode())
|
2023-10-31 14:20:40 +00:00
|
|
|
s.Require().True(common.IsPubKeyEqual(community.ControlNode(), &s.alice.identity.PublicKey))
|
|
|
|
s.Require().True(community.IsOwner())
|
2023-07-05 17:35:22 +00:00
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
// check that Bob received kick event, also he will receive
|
|
|
|
// request to share RevealedAddresses and send request to join to the control node
|
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
|
|
|
s.bob,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && !r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
|
|
|
},
|
|
|
|
"Bob was not kicked from the community",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// check that John received kick event, also he will receive
|
|
|
|
// request to share RevealedAddresses and send request to join to the control node
|
2023-10-20 14:25:13 +00:00
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
2023-07-05 17:35:22 +00:00
|
|
|
s.john,
|
|
|
|
func(r *MessengerResponse) bool {
|
2023-10-31 14:20:40 +00:00
|
|
|
return len(r.Communities()) > 0 && !r.Communities()[0].HasMember(&s.john.identity.PublicKey)
|
2023-07-05 17:35:22 +00:00
|
|
|
},
|
2023-10-31 14:20:40 +00:00
|
|
|
"John was not kicked from the community",
|
2023-07-05 17:35:22 +00:00
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
// Alice auto-accept requests to join with RevealedAddresses
|
|
|
|
// TODO: please, check TODO's in this test and uncomment them if Members() == 3
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.alice,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && len(r.Communities()[0].Members()) == 2
|
|
|
|
},
|
|
|
|
"no community update with accepted request",
|
|
|
|
)
|
2023-07-05 17:35:22 +00:00
|
|
|
s.Require().NoError(err)
|
2023-10-31 14:20:40 +00:00
|
|
|
|
|
|
|
validateResults := func(messenger *Messenger) *communities.Community {
|
|
|
|
community, err = messenger.communitiesManager.GetByID(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().True(common.IsPubKeyEqual(community.ControlNode(), &s.alice.identity.PublicKey))
|
|
|
|
s.Require().Len(community.Members(), 2)
|
|
|
|
s.Require().True(community.HasMember(&messenger.identity.PublicKey))
|
|
|
|
|
|
|
|
return community
|
|
|
|
}
|
|
|
|
|
|
|
|
community = validateResults(s.alice)
|
|
|
|
s.Require().True(community.IsControlNode())
|
|
|
|
s.Require().True(community.IsOwner())
|
|
|
|
|
|
|
|
// Bob is a community member again
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.bob,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
|
|
|
},
|
|
|
|
"Bob was auto-accepted",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
community = validateResults(s.bob)
|
|
|
|
s.Require().False(community.IsControlNode())
|
|
|
|
s.Require().False(community.IsOwner())
|
|
|
|
|
|
|
|
// TODO: uncomment when ex-owner will start sharing request to join with revealed address
|
|
|
|
// // Jonh is a community member again
|
|
|
|
// _, err = WaitOnMessengerResponse(
|
|
|
|
// s.bob,
|
|
|
|
// func(r *MessengerResponse) bool {
|
|
|
|
// return len(r.Communities()) > 0 && r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
|
|
|
// },
|
|
|
|
// "John was auto-accepted",
|
|
|
|
// )
|
|
|
|
// s.Require().NoError(err)
|
|
|
|
|
|
|
|
// community = validateResults(s.john)
|
|
|
|
// s.Require().False(community.IsControlNode())
|
|
|
|
// s.Require().False(community.IsOwner())
|
|
|
|
|
|
|
|
// Alice change community name
|
|
|
|
|
|
|
|
expectedName := "Alice owns community"
|
|
|
|
|
|
|
|
response, err = s.alice.EditCommunity(&requests.EditCommunity{
|
|
|
|
CommunityID: community.ID(),
|
|
|
|
CreateCommunity: requests.CreateCommunity{
|
|
|
|
Membership: protobuf.CommunityPermissions_AUTO_ACCEPT,
|
|
|
|
Name: expectedName,
|
|
|
|
Color: "#000000",
|
|
|
|
Description: "edited community description",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotNil(response)
|
|
|
|
|
|
|
|
validateNameInResponse := func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && r.Communities()[0].IDString() == community.IDString() &&
|
|
|
|
r.Communities()[0].Name() == expectedName
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Require().True(validateNameInResponse(response))
|
|
|
|
|
|
|
|
validateNameInDB := func(messenger *Messenger) {
|
|
|
|
community, err = messenger.communitiesManager.GetByID(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().Equal(expectedName, response.Communities()[0].Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
validateNameInDB(s.alice)
|
|
|
|
|
|
|
|
// TODO: uncomment when ex-owner will start sharing request to join with revealed address
|
|
|
|
// john accepts community update from alice (new control node)
|
|
|
|
// _, err = WaitOnMessengerResponse(
|
|
|
|
// s.john,
|
|
|
|
// validateNameInResponse,
|
|
|
|
// "john did not receive community name update",
|
|
|
|
// )
|
|
|
|
// s.Require().NoError(err)
|
|
|
|
// validateNameInDB(s.john)
|
2023-07-05 17:35:22 +00:00
|
|
|
|
2023-09-21 11:16:05 +00:00
|
|
|
// bob accepts community update from alice (new control node)
|
2023-10-31 14:20:40 +00:00
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.bob,
|
|
|
|
validateNameInResponse,
|
|
|
|
"bob did not receive community name update",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
validateNameInDB(s.bob)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerCommunitiesSignersSuite) TestAutoAcceptOnOwnershipChangeRequestRequired() {
|
|
|
|
community, _ := createOnRequestCommunity(&s.Suite, s.john)
|
|
|
|
|
|
|
|
s.advertiseCommunityTo(s.john, community, s.bob)
|
|
|
|
s.advertiseCommunityTo(s.john, community, s.alice)
|
|
|
|
|
|
|
|
s.joinOnRequestCommunity(s.john, community, s.bob)
|
|
|
|
s.joinOnRequestCommunity(s.john, community, s.alice)
|
|
|
|
|
|
|
|
// john mints owner token
|
|
|
|
var chainID uint64 = 1
|
|
|
|
tokenAddress := "token-address"
|
|
|
|
tokenName := "tokenName"
|
|
|
|
tokenSymbol := "TSM"
|
|
|
|
_, err := s.john.SaveCommunityToken(&token.CommunityToken{
|
|
|
|
TokenType: protobuf.CommunityTokenType_ERC721,
|
|
|
|
CommunityID: community.IDString(),
|
|
|
|
Address: tokenAddress,
|
|
|
|
ChainID: int(chainID),
|
|
|
|
Name: tokenName,
|
|
|
|
Supply: &bigint.BigInt{},
|
|
|
|
Symbol: tokenSymbol,
|
|
|
|
PrivilegesLevel: token.OwnerLevel,
|
|
|
|
}, nil)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
err = s.john.AddCommunityToken(community.IDString(), int(chainID), tokenAddress)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// set john as contract owner
|
|
|
|
s.collectiblesServiceMock.SetSignerPubkeyForCommunity(community.ID(), common.PubkeyToHex(&s.john.identity.PublicKey))
|
|
|
|
s.collectiblesServiceMock.SetMockCollectibleContractData(chainID, tokenAddress,
|
|
|
|
&communitytokens.CollectibleContractData{TotalSupply: &bigint.BigInt{}})
|
|
|
|
|
|
|
|
hasTokenPermission := func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && r.Communities()[0].HasTokenPermissions()
|
|
|
|
}
|
|
|
|
|
|
|
|
// bob received owner permissions
|
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
|
|
|
s.bob,
|
|
|
|
hasTokenPermission,
|
|
|
|
"no communities with token permission for Bob",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// alice received owner permissions
|
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
|
|
|
s.alice,
|
|
|
|
hasTokenPermission,
|
|
|
|
"no communities with token permission for Alice",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// simulate Alice received owner token
|
|
|
|
s.collectiblesServiceMock.SetSignerPubkeyForCommunity(community.ID(), common.PubkeyToHex(&s.alice.identity.PublicKey))
|
|
|
|
|
|
|
|
// after receiving owner token - set up control node, set up owner role, kick all members
|
|
|
|
// and request kicked members to rejoin
|
|
|
|
response, err := s.alice.PromoteSelfToControlNode(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotNil(response)
|
|
|
|
community, err = s.alice.communitiesManager.GetByID(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().True(community.IsControlNode())
|
|
|
|
s.Require().True(common.IsPubKeyEqual(community.ControlNode(), &s.alice.identity.PublicKey))
|
|
|
|
s.Require().True(community.IsOwner())
|
|
|
|
|
|
|
|
// check that client received kick event
|
|
|
|
// Bob will receive request to share RevealedAddresses and send request to join to the control node
|
2023-10-20 14:25:13 +00:00
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
2023-07-05 17:35:22 +00:00
|
|
|
s.bob,
|
|
|
|
func(r *MessengerResponse) bool {
|
2023-10-31 14:20:40 +00:00
|
|
|
return len(r.Communities()) > 0 && !r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
2023-07-05 17:35:22 +00:00
|
|
|
},
|
2023-10-31 14:20:40 +00:00
|
|
|
"Bob was not kicked from the community",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// check that client received kick event
|
|
|
|
// John will receive request to share RevealedAddresses and send request to join to the control node
|
|
|
|
_, err = WaitOnSignaledMessengerResponse(
|
|
|
|
s.john,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && !r.Communities()[0].HasMember(&s.john.identity.PublicKey)
|
|
|
|
},
|
|
|
|
"John was not kicked from the community",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Alice auto-accept requests to join with RevealedAddresses
|
|
|
|
// TODO: please, check TODO's in this test and uncomment them if Members() == 3
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.alice,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && len(r.Communities()[0].Members()) == 2
|
|
|
|
},
|
|
|
|
"no community update with accepted request",
|
2023-07-05 17:35:22 +00:00
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-10-31 14:20:40 +00:00
|
|
|
validateResults := func(messenger *Messenger) *communities.Community {
|
|
|
|
community, err = messenger.communitiesManager.GetByID(community.ID())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().True(common.IsPubKeyEqual(community.ControlNode(), &s.alice.identity.PublicKey))
|
|
|
|
s.Require().Len(community.Members(), 2)
|
|
|
|
s.Require().True(community.HasMember(&messenger.identity.PublicKey))
|
|
|
|
|
|
|
|
return community
|
|
|
|
}
|
|
|
|
|
|
|
|
community = validateResults(s.alice)
|
|
|
|
s.Require().True(community.IsControlNode())
|
|
|
|
s.Require().True(community.IsOwner())
|
|
|
|
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.bob,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Communities()) > 0 && r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
|
|
|
},
|
|
|
|
"Bob was auto-accepted",
|
|
|
|
)
|
2023-07-05 17:35:22 +00:00
|
|
|
s.Require().NoError(err)
|
2023-10-31 14:20:40 +00:00
|
|
|
|
|
|
|
community = validateResults(s.bob)
|
|
|
|
s.Require().False(community.IsControlNode())
|
|
|
|
s.Require().False(community.IsOwner())
|
|
|
|
|
|
|
|
// TODO: uncomment when ex-owner will start sharing request to join with revealed address
|
|
|
|
// _, err = WaitOnMessengerResponse(
|
|
|
|
// s.john,
|
|
|
|
// func(r *MessengerResponse) bool {
|
|
|
|
// return len(r.Communities()) > 0 && r.Communities()[0].HasMember(&s.bob.identity.PublicKey)
|
|
|
|
// },
|
|
|
|
// "John was auto-accepted",
|
|
|
|
// )
|
|
|
|
// s.Require().NoError(err)
|
|
|
|
|
|
|
|
// community = validateResults(s.john)
|
|
|
|
// s.Require().False(community.IsControlNode())
|
|
|
|
// s.Require().False(community.IsOwner())
|
2023-07-05 17:35:22 +00:00
|
|
|
}
|