2023-10-24 10:43:18 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
2023-11-09 18:59:01 +00:00
|
|
|
"context"
|
2023-10-24 10:43:18 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
2023-11-09 18:59:01 +00:00
|
|
|
|
|
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
|
|
"github.com/status-im/status-go/multiaccounts/accounts"
|
|
|
|
"github.com/status-im/status-go/protocol/common"
|
|
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
|
|
"github.com/status-im/status-go/protocol/requests"
|
2023-10-24 10:43:18 +00:00
|
|
|
)
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
func TestMessengerProfileShowcaseSuite(t *testing.T) { // nolint: deadcode,unused
|
|
|
|
suite.Run(t, new(TestMessengerProfileShowcase))
|
2023-10-24 10:43:18 +00:00
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
type TestMessengerProfileShowcase struct {
|
2023-11-27 17:01:13 +00:00
|
|
|
MessengerBaseTestSuite
|
2023-11-09 18:59:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TestMessengerProfileShowcase) mutualContact(theirMessenger *Messenger) {
|
|
|
|
messageText := "hello!"
|
|
|
|
|
|
|
|
contactID := types.EncodeHex(crypto.FromECDSAPub(&theirMessenger.identity.PublicKey))
|
|
|
|
request := &requests.SendContactRequest{
|
|
|
|
ID: contactID,
|
|
|
|
Message: messageText,
|
2023-10-24 10:43:18 +00:00
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
// Send contact request
|
|
|
|
_, err := s.m.SendContactRequest(context.Background(), request)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
theirMessenger,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Contacts) > 0 && len(r.Messages()) > 0
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Make sure it's the pending contact requests
|
|
|
|
contactRequests, _, err := theirMessenger.PendingContactRequests("", 10)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().Len(contactRequests, 1)
|
|
|
|
s.Require().Equal(contactRequests[0].ContactRequestState, common.ContactRequestStatePending)
|
|
|
|
|
|
|
|
// Accept contact request, receiver side
|
|
|
|
_, err = theirMessenger.AcceptContactRequest(context.Background(), &requests.AcceptContactRequest{ID: types.Hex2Bytes(contactRequests[0].ID)})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
resp, err := WaitOnMessengerResponse(
|
|
|
|
s.m,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.Contacts) == 1 && len(r.Messages()) == 2 && len(r.ActivityCenterNotifications()) == 1
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Check the contact state is correctly set
|
|
|
|
s.Require().Len(resp.Contacts, 1)
|
|
|
|
s.Require().True(resp.Contacts[0].mutual())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TestMessengerProfileShowcase) verifiedContact(theirMessenger *Messenger) {
|
|
|
|
theirPk := types.EncodeHex(crypto.FromECDSAPub(&theirMessenger.identity.PublicKey))
|
|
|
|
challenge := "Want to see what I'm hiding in my profile showcase?"
|
|
|
|
|
|
|
|
_, err := s.m.SendContactVerificationRequest(context.Background(), theirPk, challenge)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
resp, err := WaitOnMessengerResponse(
|
|
|
|
theirMessenger,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.VerificationRequests()) == 1 && len(r.ActivityCenterNotifications()) == 1
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().Len(resp.VerificationRequests(), 1)
|
|
|
|
verificationRequestID := resp.VerificationRequests()[0].ID
|
|
|
|
|
|
|
|
_, err = theirMessenger.AcceptContactVerificationRequest(context.Background(), verificationRequestID, "For sure!")
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
s.m,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.VerificationRequests()) == 1
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
resp, err = s.m.VerifiedTrusted(context.Background(), &requests.VerifiedTrusted{ID: types.FromHex(verificationRequestID)})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Len(resp.Messages(), 1)
|
|
|
|
s.Require().Equal(common.ContactVerificationStateTrusted, resp.Messages()[0].ContactVerificationState)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TestMessengerProfileShowcase) prepareShowcasePreferences() *ProfileShowcasePreferences {
|
|
|
|
communityEntry1 := &ProfileShowcaseCommunityPreference{
|
|
|
|
CommunityID: "0x01312357798976434",
|
2023-10-24 10:43:18 +00:00
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityEveryone,
|
2023-11-09 18:59:01 +00:00
|
|
|
Order: 10,
|
|
|
|
}
|
|
|
|
|
|
|
|
communityEntry2 := &ProfileShowcaseCommunityPreference{
|
|
|
|
CommunityID: "0x01312357798976535",
|
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityContacts,
|
2023-10-24 10:43:18 +00:00
|
|
|
Order: 11,
|
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
communityEntry3 := &ProfileShowcaseCommunityPreference{
|
|
|
|
CommunityID: "0x01312353452343552",
|
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityIDVerifiedContacts,
|
|
|
|
Order: 12,
|
|
|
|
}
|
|
|
|
|
|
|
|
accountEntry := &ProfileShowcaseAccountPreference{
|
|
|
|
Address: "0cx34662234",
|
|
|
|
Name: "Status Account",
|
|
|
|
ColorID: "blue",
|
|
|
|
Emoji: ">:-]",
|
2023-10-24 10:43:18 +00:00
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityEveryone,
|
|
|
|
Order: 17,
|
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
collectibleEntry := &ProfileShowcaseCollectiblePreference{
|
|
|
|
UID: "0x12378534257568678487683576",
|
2023-10-24 10:43:18 +00:00
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityIDVerifiedContacts,
|
|
|
|
Order: 17,
|
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
assetEntry := &ProfileShowcaseAssetPreference{
|
|
|
|
Symbol: "SNT",
|
2023-10-24 10:43:18 +00:00
|
|
|
ShowcaseVisibility: ProfileShowcaseVisibilityNoOne,
|
|
|
|
Order: 17,
|
|
|
|
}
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
return &ProfileShowcasePreferences{
|
|
|
|
Communities: []*ProfileShowcaseCommunityPreference{communityEntry1, communityEntry2, communityEntry3},
|
|
|
|
Accounts: []*ProfileShowcaseAccountPreference{accountEntry},
|
|
|
|
Collectibles: []*ProfileShowcaseCollectiblePreference{collectibleEntry},
|
|
|
|
Assets: []*ProfileShowcaseAssetPreference{assetEntry},
|
2023-10-24 10:43:18 +00:00
|
|
|
}
|
2023-11-09 18:59:01 +00:00
|
|
|
}
|
2023-10-24 10:43:18 +00:00
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
func (s *TestMessengerProfileShowcase) TestSetAndGetProfileShowcasePreferences() {
|
|
|
|
request := s.prepareShowcasePreferences()
|
2023-10-24 10:43:18 +00:00
|
|
|
err := s.m.SetProfileShowcasePreferences(request)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
// Restored preferences shoulf be same as stored
|
2023-10-24 10:43:18 +00:00
|
|
|
response, err := s.m.GetProfileShowcasePreferences()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-11-09 18:59:01 +00:00
|
|
|
s.Require().Len(response.Communities, 3)
|
|
|
|
s.Require().Equal(response.Communities[0], request.Communities[0])
|
|
|
|
s.Require().Equal(response.Communities[1], request.Communities[1])
|
|
|
|
s.Require().Equal(response.Communities[2], request.Communities[2])
|
2023-10-24 10:43:18 +00:00
|
|
|
|
|
|
|
s.Require().Len(response.Accounts, 1)
|
2023-11-09 18:59:01 +00:00
|
|
|
s.Require().Equal(response.Accounts[0], request.Accounts[0])
|
2023-10-24 10:43:18 +00:00
|
|
|
|
|
|
|
s.Require().Len(response.Collectibles, 1)
|
2023-11-09 18:59:01 +00:00
|
|
|
s.Require().Equal(response.Collectibles[0], request.Collectibles[0])
|
2023-10-24 10:43:18 +00:00
|
|
|
|
|
|
|
s.Require().Len(response.Assets, 1)
|
2023-11-09 18:59:01 +00:00
|
|
|
s.Require().Equal(response.Assets[0], request.Assets[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TestMessengerProfileShowcase) TestEncryptAndDecryptProfileShowcaseEntries() {
|
|
|
|
// Add mutual contact
|
2023-11-27 17:01:13 +00:00
|
|
|
theirMessenger := s.newMessenger()
|
2023-11-09 18:59:01 +00:00
|
|
|
_, err := theirMessenger.Start()
|
|
|
|
s.Require().NoError(err)
|
2023-11-27 17:01:13 +00:00
|
|
|
defer TearDownMessenger(&s.Suite, theirMessenger)
|
2023-11-09 18:59:01 +00:00
|
|
|
|
|
|
|
s.mutualContact(theirMessenger)
|
|
|
|
|
|
|
|
entries := &protobuf.ProfileShowcaseEntries{
|
|
|
|
Communities: []*protobuf.ProfileShowcaseCommunity{
|
|
|
|
&protobuf.ProfileShowcaseCommunity{
|
|
|
|
CommunityId: "0x01312357798976535235432345",
|
|
|
|
Order: 12,
|
|
|
|
},
|
|
|
|
&protobuf.ProfileShowcaseCommunity{
|
|
|
|
CommunityId: "0x12378534257568678487683576",
|
|
|
|
Order: 11,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Accounts: []*protobuf.ProfileShowcaseAccount{
|
|
|
|
&protobuf.ProfileShowcaseAccount{
|
|
|
|
Address: "0x00000323245",
|
|
|
|
Name: "Default",
|
|
|
|
ColorId: "red",
|
|
|
|
Emoji: "(=^ ◡ ^=)",
|
|
|
|
Order: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Assets: []*protobuf.ProfileShowcaseAsset{
|
|
|
|
&protobuf.ProfileShowcaseAsset{
|
|
|
|
Symbol: "ETH",
|
|
|
|
Order: 2,
|
|
|
|
},
|
|
|
|
&protobuf.ProfileShowcaseAsset{
|
|
|
|
Symbol: "DAI",
|
|
|
|
Order: 3,
|
|
|
|
},
|
|
|
|
&protobuf.ProfileShowcaseAsset{
|
|
|
|
Symbol: "SNT",
|
|
|
|
Order: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
data, err := s.m.EncryptProfileShowcaseEntriesWithContactPubKeys(entries, s.m.Contacts())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
entriesBack, err := theirMessenger.DecryptProfileShowcaseEntriesWithPubKey(&s.m.identity.PublicKey, data)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Equal(2, len(entriesBack.Communities))
|
|
|
|
s.Require().Equal(entries.Communities[0].CommunityId, entriesBack.Communities[0].CommunityId)
|
|
|
|
s.Require().Equal(entries.Communities[0].Order, entriesBack.Communities[0].Order)
|
|
|
|
s.Require().Equal(entries.Communities[1].CommunityId, entriesBack.Communities[1].CommunityId)
|
|
|
|
s.Require().Equal(entries.Communities[1].Order, entriesBack.Communities[1].Order)
|
|
|
|
|
|
|
|
s.Require().Equal(1, len(entriesBack.Accounts))
|
|
|
|
s.Require().Equal(entries.Accounts[0].Address, entriesBack.Accounts[0].Address)
|
|
|
|
s.Require().Equal(entries.Accounts[0].Name, entriesBack.Accounts[0].Name)
|
|
|
|
s.Require().Equal(entries.Accounts[0].ColorId, entriesBack.Accounts[0].ColorId)
|
|
|
|
s.Require().Equal(entries.Accounts[0].Emoji, entriesBack.Accounts[0].Emoji)
|
|
|
|
s.Require().Equal(entries.Accounts[0].Order, entriesBack.Accounts[0].Order)
|
|
|
|
|
|
|
|
s.Require().Equal(0, len(entriesBack.Collectibles))
|
|
|
|
|
|
|
|
s.Require().Equal(3, len(entriesBack.Assets))
|
|
|
|
s.Require().Equal(entries.Assets[0].Symbol, entriesBack.Assets[0].Symbol)
|
|
|
|
s.Require().Equal(entries.Assets[0].Order, entriesBack.Assets[0].Order)
|
|
|
|
s.Require().Equal(entries.Assets[1].Symbol, entriesBack.Assets[1].Symbol)
|
|
|
|
s.Require().Equal(entries.Assets[1].Order, entriesBack.Assets[1].Order)
|
|
|
|
s.Require().Equal(entries.Assets[2].Symbol, entriesBack.Assets[2].Symbol)
|
|
|
|
s.Require().Equal(entries.Assets[2].Order, entriesBack.Assets[2].Order)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TestMessengerProfileShowcase) TestShareShowcasePreferences() {
|
|
|
|
// Set Display name to pass shouldPublishChatIdentity check
|
|
|
|
profileKp := accounts.GetProfileKeypairForTest(true, false, false)
|
|
|
|
profileKp.KeyUID = s.m.account.KeyUID
|
|
|
|
profileKp.Accounts[0].KeyUID = s.m.account.KeyUID
|
|
|
|
|
|
|
|
err := s.m.settings.SaveOrUpdateKeypair(profileKp)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
err = s.m.SetDisplayName("bobby")
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Add mutual contact
|
2023-11-27 17:01:13 +00:00
|
|
|
mutualContact := s.newMessenger()
|
2023-11-09 18:59:01 +00:00
|
|
|
_, err = mutualContact.Start()
|
|
|
|
s.Require().NoError(err)
|
2023-11-27 17:01:13 +00:00
|
|
|
defer TearDownMessenger(&s.Suite, mutualContact)
|
2023-11-09 18:59:01 +00:00
|
|
|
|
|
|
|
s.mutualContact(mutualContact)
|
|
|
|
|
|
|
|
// Add identity verified contact
|
2023-11-27 17:01:13 +00:00
|
|
|
verifiedContact := s.newMessenger()
|
2023-11-09 18:59:01 +00:00
|
|
|
_, err = verifiedContact.Start()
|
|
|
|
s.Require().NoError(err)
|
2023-11-27 17:01:13 +00:00
|
|
|
defer TearDownMessenger(&s.Suite, verifiedContact)
|
2023-11-09 18:59:01 +00:00
|
|
|
|
|
|
|
s.mutualContact(verifiedContact)
|
|
|
|
s.verifiedContact(verifiedContact)
|
|
|
|
|
|
|
|
// Save preferences to dispatch changes
|
|
|
|
request := s.prepareShowcasePreferences()
|
|
|
|
err = s.m.SetProfileShowcasePreferences(request)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Get summarised profile data for mutual contact
|
|
|
|
resp, err := WaitOnMessengerResponse(
|
|
|
|
mutualContact,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.updatedProfileShowcases) > 0
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().Len(resp.updatedProfileShowcases, 1)
|
|
|
|
|
|
|
|
contactID := types.EncodeHex(crypto.FromECDSAPub(&s.m.identity.PublicKey))
|
|
|
|
profileShowcase := resp.updatedProfileShowcases[contactID]
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Communities, 2)
|
|
|
|
|
|
|
|
// For everyone
|
|
|
|
s.Require().Equal(profileShowcase.Communities[0].CommunityID, request.Communities[0].CommunityID)
|
|
|
|
s.Require().Equal(profileShowcase.Communities[0].Order, request.Communities[0].Order)
|
|
|
|
|
|
|
|
// For contacts
|
|
|
|
s.Require().Equal(profileShowcase.Communities[1].CommunityID, request.Communities[1].CommunityID)
|
|
|
|
s.Require().Equal(profileShowcase.Communities[1].Order, request.Communities[1].Order)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Accounts, 1)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Address, request.Accounts[0].Address)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Name, request.Accounts[0].Name)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].ColorID, request.Accounts[0].ColorID)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Emoji, request.Accounts[0].Emoji)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Order, request.Accounts[0].Order)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Collectibles, 0)
|
|
|
|
s.Require().Len(profileShowcase.Assets, 0)
|
|
|
|
|
|
|
|
// Get summarised profile data for verified contact
|
|
|
|
resp, err = WaitOnMessengerResponse(
|
|
|
|
verifiedContact,
|
|
|
|
func(r *MessengerResponse) bool {
|
|
|
|
return len(r.updatedProfileShowcases) > 0
|
|
|
|
},
|
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().Len(resp.updatedProfileShowcases, 1)
|
|
|
|
|
|
|
|
// Here let's try synchronous
|
|
|
|
profileShowcase, err = verifiedContact.GetProfileShowcaseForContact(contactID)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Communities, 3)
|
|
|
|
|
|
|
|
// For everyone
|
|
|
|
s.Require().Equal(profileShowcase.Communities[0].CommunityID, request.Communities[0].CommunityID)
|
|
|
|
s.Require().Equal(profileShowcase.Communities[0].Order, request.Communities[0].Order)
|
|
|
|
|
|
|
|
// For contacts
|
|
|
|
s.Require().Equal(profileShowcase.Communities[1].CommunityID, request.Communities[1].CommunityID)
|
|
|
|
s.Require().Equal(profileShowcase.Communities[1].Order, request.Communities[1].Order)
|
|
|
|
|
|
|
|
// For id verified
|
|
|
|
s.Require().Equal(profileShowcase.Communities[2].CommunityID, request.Communities[2].CommunityID)
|
|
|
|
s.Require().Equal(profileShowcase.Communities[2].Order, request.Communities[2].Order)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Accounts, 1)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Address, request.Accounts[0].Address)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Name, request.Accounts[0].Name)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].ColorID, request.Accounts[0].ColorID)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Emoji, request.Accounts[0].Emoji)
|
|
|
|
s.Require().Equal(profileShowcase.Accounts[0].Order, request.Accounts[0].Order)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Collectibles, 1)
|
|
|
|
s.Require().Equal(profileShowcase.Collectibles[0].UID, request.Collectibles[0].UID)
|
|
|
|
s.Require().Equal(profileShowcase.Collectibles[0].Order, request.Collectibles[0].Order)
|
|
|
|
|
|
|
|
s.Require().Len(profileShowcase.Assets, 0)
|
2023-10-24 10:43:18 +00:00
|
|
|
}
|