status-go/protocol/messenger_installations_tes...

314 lines
9.4 KiB
Go
Raw Normal View History

package protocol
import (
"context"
"errors"
"testing"
2022-01-17 03:42:11 +00:00
"github.com/status-im/status-go/services/browsers"
2020-01-15 11:36:49 +00:00
"github.com/stretchr/testify/suite"
"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/encryption/multidevice"
"github.com/status-im/status-go/protocol/requests"
"github.com/status-im/status-go/protocol/tt"
)
2020-07-22 07:41:40 +00:00
const statusChatID = "status"
2021-10-05 17:26:02 +00:00
const removedChatID = "deactivated"
2020-07-22 07:41:40 +00:00
func TestMessengerInstallationSuite(t *testing.T) {
suite.Run(t, new(MessengerInstallationSuite))
}
type MessengerInstallationSuite struct {
2023-07-13 10:28:34 +00:00
MessengerBaseTestSuite
}
func (s *MessengerInstallationSuite) TestReceiveInstallation() {
2020-12-21 11:57:47 +00:00
theirMessenger, err := newMessengerWithKey(s.shh, s.privateKey, s.logger, nil)
s.Require().NoError(err)
2020-12-21 11:57:47 +00:00
err = theirMessenger.SetInstallationMetadata(theirMessenger.installationID, &multidevice.InstallationMetadata{
Name: "their-name",
DeviceType: "their-device-type",
})
s.Require().NoError(err)
response, err := theirMessenger.SendPairInstallation(context.Background(), nil)
s.Require().NoError(err)
s.Require().NotNil(response)
2021-01-11 10:32:51 +00:00
s.Require().Len(response.Chats(), 1)
s.Require().False(response.Chats()[0].Active)
// Wait for the message to reach its destination
response, err = WaitOnMessengerResponse(
s.m,
func(r *MessengerResponse) bool { return len(r.Installations) > 0 },
"installation not received",
)
s.Require().NoError(err)
actualInstallation := response.Installations[0]
s.Require().Equal(theirMessenger.installationID, actualInstallation.ID)
s.Require().NotNil(actualInstallation.InstallationMetadata)
s.Require().Equal("their-name", actualInstallation.InstallationMetadata.Name)
s.Require().Equal("their-device-type", actualInstallation.InstallationMetadata.DeviceType)
err = s.m.EnableInstallation(theirMessenger.installationID)
s.Require().NoError(err)
contactKey, err := crypto.GenerateKey()
s.Require().NoError(err)
2021-03-25 15:15:22 +00:00
contact, err := BuildContactFromPublicKey(&contactKey.PublicKey)
s.Require().NoError(err)
2022-10-14 08:50:36 +00:00
response, err = s.m.AddContact(context.Background(), &requests.AddContact{ID: contact.ID})
s.Require().NoError(err)
2023-02-14 17:44:00 +00:00
s.Require().Len(response.Contacts, 1)
s.Require().Equal(response.Contacts[0].ID, contact.ID)
// Wait for the message to reach its destination
response, err = WaitOnMessengerResponse(
theirMessenger,
2023-02-14 17:44:00 +00:00
func(r *MessengerResponse) bool { return len(r.Contacts) == 1 && r.Contacts[0].ID == contact.ID },
"contact not received",
)
s.Require().NoError(err)
actualContact := response.Contacts[0]
s.Require().Equal(contact.ID, actualContact.ID)
2023-01-20 14:28:30 +00:00
s.Require().True(actualContact.added())
2023-02-14 17:44:00 +00:00
// Simulate update from contact
contact.LastUpdated = 10
contact.DisplayName = "display-name"
s.Require().NoError(s.m.persistence.SaveContacts([]*Contact{contact}))
// Trigger syncing of contact
err = s.m.syncContact(context.Background(), contact, s.m.dispatchMessage)
s.Require().NoError(err)
// Wait for the message to reach its destination
2023-04-27 16:39:59 +00:00
_, err = WaitOnMessengerResponse(
2023-02-14 17:44:00 +00:00
theirMessenger,
2023-04-27 16:39:59 +00:00
func(r *MessengerResponse) bool {
return len(r.Contacts) == 1 &&
r.Contacts[0].ID == contact.ID &&
// Make sure lastupdated is **not** synced
actualContact.LastUpdated == 0 &&
r.Contacts[0].DisplayName == "display-name"
},
2023-02-14 17:44:00 +00:00
"contact not received",
)
s.Require().NoError(err)
2020-07-22 07:41:40 +00:00
chat := CreatePublicChat(statusChatID, s.m.transport)
2021-01-11 10:32:51 +00:00
err = s.m.SaveChat(chat)
s.Require().NoError(err)
response, err = WaitOnMessengerResponse(
theirMessenger,
2021-01-11 10:32:51 +00:00
func(r *MessengerResponse) bool { return len(r.Chats()) > 0 },
"sync chat not received",
)
s.Require().NoError(err)
2021-01-11 10:32:51 +00:00
actualChat := response.Chats()[0]
2020-07-22 07:41:40 +00:00
s.Require().Equal(statusChatID, actualChat.ID)
s.Require().True(actualChat.Active)
2020-07-31 09:46:38 +00:00
s.Require().NoError(theirMessenger.Shutdown())
}
func (s *MessengerInstallationSuite) TestSyncInstallation() {
// add contact
contactKey, err := crypto.GenerateKey()
s.Require().NoError(err)
2021-03-25 15:15:22 +00:00
contact, err := BuildContactFromPublicKey(&contactKey.PublicKey)
s.Require().NoError(err)
// mock added as mutual contact
contact.LastUpdated = 1
2023-01-20 14:28:30 +00:00
contact.ContactRequestReceived(1)
s.m.allContacts.Store(contact.ID, contact)
2020-08-20 14:06:38 +00:00
contact.LocalNickname = "Test Nickname"
2022-10-14 08:50:36 +00:00
_, err = s.m.AddContact(context.Background(), &requests.AddContact{ID: contact.ID})
s.Require().NoError(err)
2021-10-27 10:59:43 +00:00
_, err = s.m.SetContactLocalNickname(&requests.SetContactLocalNickname{ID: types.Hex2Bytes(contact.ID), Nickname: contact.LocalNickname})
s.Require().NoError(err)
2022-01-17 03:42:11 +00:00
//add bookmark
bookmark := browsers.Bookmark{
Name: "status official site",
URL: "https://status.im",
Removed: false,
}
_, err = s.m.browserDatabase.StoreBookmark(bookmark)
s.Require().NoError(err)
// add chat
2020-07-22 07:41:40 +00:00
chat := CreatePublicChat(statusChatID, s.m.transport)
2021-01-11 10:32:51 +00:00
err = s.m.SaveChat(chat)
s.Require().NoError(err)
2021-10-05 17:26:02 +00:00
// add and deactivate chat
chat2 := CreatePublicChat(removedChatID, s.m.transport)
chat2.DeletedAtClockValue = 1
2021-10-05 17:26:02 +00:00
err = s.m.SaveChat(chat2)
s.Require().NoError(err)
_, err = s.m.deactivateChat(removedChatID, 0, true, true)
2021-10-05 17:26:02 +00:00
s.Require().NoError(err)
// pair
2020-12-21 11:57:47 +00:00
theirMessenger, err := newMessengerWithKey(s.shh, s.privateKey, s.logger, nil)
s.Require().NoError(err)
2021-10-05 17:26:02 +00:00
err = theirMessenger.SaveChat(chat2)
s.Require().NoError(err)
err = theirMessenger.SetInstallationMetadata(theirMessenger.installationID, &multidevice.InstallationMetadata{
Name: "their-name",
DeviceType: "their-device-type",
})
s.Require().NoError(err)
response, err := theirMessenger.SendPairInstallation(context.Background(), nil)
s.Require().NoError(err)
s.Require().NotNil(response)
2021-01-11 10:32:51 +00:00
s.Require().Len(response.Chats(), 1)
s.Require().False(response.Chats()[0].Active)
// Wait for the message to reach its destination
response, err = WaitOnMessengerResponse(
s.m,
func(r *MessengerResponse) bool { return len(r.Installations) > 0 },
"installation not received",
)
s.Require().NoError(err)
actualInstallation := response.Installations[0]
s.Require().Equal(theirMessenger.installationID, actualInstallation.ID)
s.Require().NotNil(actualInstallation.InstallationMetadata)
s.Require().Equal("their-name", actualInstallation.InstallationMetadata.Name)
s.Require().Equal("their-device-type", actualInstallation.InstallationMetadata.DeviceType)
err = s.m.EnableInstallation(theirMessenger.installationID)
s.Require().NoError(err)
// sync
err = s.m.SyncDevices(context.Background(), "ens-name", "profile-image", nil)
s.Require().NoError(err)
var allChats []*Chat
var actualContact *Contact
var bookmarks []*browsers.Bookmark
// Wait for the message to reach its destination
err = tt.RetryWithBackOff(func() error {
var err error
response, err = theirMessenger.RetrieveAll()
if err != nil {
return err
}
2021-01-11 10:32:51 +00:00
allChats = append(allChats, response.Chats()...)
if len(response.Contacts) == 1 {
actualContact = response.Contacts[0]
}
bookmarks = append(bookmarks, response.GetBookmarks()...)
if len(allChats) >= 2 && actualContact != nil && len(bookmarks) >= 1 {
return nil
}
return errors.New("not received all chats & contacts & bookmarks yet")
})
s.Require().NoError(err)
var statusChat *Chat
2021-10-05 17:26:02 +00:00
var removedChat *Chat
for _, c := range allChats {
2020-07-22 07:41:40 +00:00
if c.ID == statusChatID {
statusChat = c
}
2021-10-05 17:26:02 +00:00
if c.ID == removedChatID {
removedChat = c
}
}
s.Require().NotNil(statusChat)
2023-01-20 14:28:30 +00:00
s.Require().True(actualContact.added())
2020-08-20 14:06:38 +00:00
s.Require().Equal("Test Nickname", actualContact.LocalNickname)
2023-01-20 14:28:30 +00:00
s.Require().True(actualContact.hasAddedUs())
s.Require().True(actualContact.mutual())
2022-01-17 03:42:11 +00:00
bookmarks, err = theirMessenger.browserDatabase.GetBookmarks()
2022-01-17 03:42:11 +00:00
s.Require().NoError(err)
s.Require().Equal(1, len(bookmarks))
2020-07-31 09:46:38 +00:00
s.Require().NoError(theirMessenger.Shutdown())
2021-10-05 17:26:02 +00:00
s.Require().NotNil(removedChat)
s.Require().False(removedChat.Active)
2022-01-17 03:42:11 +00:00
}
2020-07-28 13:22:22 +00:00
func (s *MessengerInstallationSuite) TestSyncInstallationNewMessages() {
bob1 := s.m
// pair
2020-12-21 11:57:47 +00:00
bob2, err := newMessengerWithKey(s.shh, s.privateKey, s.logger, nil)
s.Require().NoError(err)
2023-07-13 10:44:09 +00:00
alice := s.newMessenger()
2020-07-28 13:22:22 +00:00
2020-12-21 11:57:47 +00:00
err = bob2.SetInstallationMetadata(bob2.installationID, &multidevice.InstallationMetadata{
2020-07-28 13:22:22 +00:00
Name: "their-name",
DeviceType: "their-device-type",
})
s.Require().NoError(err)
response, err := bob2.SendPairInstallation(context.Background(), nil)
2020-07-28 13:22:22 +00:00
s.Require().NoError(err)
s.Require().NotNil(response)
2021-01-11 10:32:51 +00:00
s.Require().Len(response.Chats(), 1)
s.Require().False(response.Chats()[0].Active)
2020-07-28 13:22:22 +00:00
// Wait for the message to reach its destination
response, err = WaitOnMessengerResponse(
bob1,
func(r *MessengerResponse) bool { return len(r.Installations) > 0 },
"installation not received",
)
s.Require().NoError(err)
actualInstallation := response.Installations[0]
s.Require().Equal(bob2.installationID, actualInstallation.ID)
err = bob1.EnableInstallation(bob2.installationID)
s.Require().NoError(err)
// send a message from bob1 to alice, it should be received on both bob1 and bob2
alicePkString := types.EncodeHex(crypto.FromECDSAPub(&alice.identity.PublicKey))
chat := CreateOneToOneChat(alicePkString, &alice.identity.PublicKey, bob1.transport)
2021-01-11 10:32:51 +00:00
s.Require().NoError(bob1.SaveChat(chat))
2020-07-28 13:22:22 +00:00
2021-01-11 10:32:51 +00:00
inputMessage := buildTestMessage(*chat)
2020-07-28 13:22:22 +00:00
_, err = s.m.SendChatMessage(context.Background(), inputMessage)
s.Require().NoError(err)
// Wait for the message to reach its destination
_, err = WaitOnMessengerResponse(
bob2,
2021-06-03 13:11:55 +00:00
func(r *MessengerResponse) bool { return len(r.Messages()) > 0 },
2020-07-28 13:22:22 +00:00
"message not received",
)
s.Require().NoError(err)
2020-07-31 09:46:38 +00:00
s.Require().NoError(bob2.Shutdown())
s.Require().NoError(alice.Shutdown())
2020-07-28 13:22:22 +00:00
}