2020-07-27 12:27:48 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-05-10 10:45:42 +00:00
|
|
|
"encoding/json"
|
|
|
|
"strings"
|
2020-07-27 12:27:48 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
2020-11-26 16:57:34 +00:00
|
|
|
"github.com/status-im/status-go/multiaccounts"
|
2023-05-10 10:45:42 +00:00
|
|
|
"github.com/status-im/status-go/protocol/common"
|
2020-07-27 12:27:48 +00:00
|
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMessengerEmojiSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(MessengerEmojiSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessengerEmojiSuite struct {
|
2023-07-13 10:28:34 +00:00
|
|
|
MessengerBaseTestSuite
|
2020-07-27 12:27:48 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 18:12:10 +00:00
|
|
|
func (s *MessengerEmojiSuite) TestSendEmoji() {
|
2020-07-27 12:27:48 +00:00
|
|
|
alice := s.m
|
2020-12-10 16:24:19 +00:00
|
|
|
alice.account = &multiaccounts.Account{KeyUID: "0xdeadbeef"}
|
2020-07-27 12:27:48 +00:00
|
|
|
key, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2020-12-21 11:57:47 +00:00
|
|
|
bob, err := newMessengerWithKey(s.shh, key, s.logger, nil)
|
|
|
|
s.Require().NoError(err)
|
2023-11-27 17:01:13 +00:00
|
|
|
defer TearDownMessenger(&s.Suite, bob)
|
2020-07-27 12:27:48 +00:00
|
|
|
|
2020-07-28 08:02:51 +00:00
|
|
|
chatID := statusChatID
|
2020-07-27 12:27:48 +00:00
|
|
|
|
|
|
|
chat := CreatePublicChat(chatID, alice.transport)
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
err = alice.SaveChat(chat)
|
2020-07-27 12:27:48 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
_, err = alice.Join(chat)
|
2020-07-27 12:27:48 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
err = bob.SaveChat(chat)
|
2020-07-27 12:27:48 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
_, err = bob.Join(chat)
|
2020-07-27 12:27:48 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-01-10 17:59:32 +00:00
|
|
|
// Send chat message from alice to bob
|
2020-07-27 12:27:48 +00:00
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
message := buildTestMessage(*chat)
|
2020-07-27 12:27:48 +00:00
|
|
|
_, err = alice.SendChatMessage(context.Background(), message)
|
|
|
|
s.NoError(err)
|
|
|
|
|
|
|
|
// Wait for message to arrive to bob
|
|
|
|
response, err := WaitOnMessengerResponse(
|
|
|
|
bob,
|
2021-06-03 13:11:55 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.Messages()) > 0 },
|
2020-07-27 12:27:48 +00:00
|
|
|
"no messages",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2021-06-03 13:11:55 +00:00
|
|
|
s.Require().Len(response.Messages(), 1)
|
2020-07-27 12:27:48 +00:00
|
|
|
|
2021-06-03 13:11:55 +00:00
|
|
|
messageID := response.Messages()[0].ID
|
2020-07-27 12:27:48 +00:00
|
|
|
|
|
|
|
// Respond with an emoji, donald trump style
|
|
|
|
|
|
|
|
response, err = bob.SendEmojiReaction(context.Background(), chat.ID, messageID, protobuf.EmojiReaction_SAD)
|
|
|
|
s.Require().NoError(err)
|
2023-02-13 20:09:20 +00:00
|
|
|
s.Require().Len(response.EmojiReactions(), 1)
|
2020-07-27 12:27:48 +00:00
|
|
|
|
2023-02-13 20:09:20 +00:00
|
|
|
emojiID := response.EmojiReactions()[0].ID()
|
2020-07-27 12:27:48 +00:00
|
|
|
|
|
|
|
// Wait for the emoji to arrive to alice
|
|
|
|
response, err = WaitOnMessengerResponse(
|
|
|
|
alice,
|
2023-02-13 20:09:20 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.EmojiReactions()) == 1 },
|
2020-07-27 12:27:48 +00:00
|
|
|
"no emoji",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-02-13 20:09:20 +00:00
|
|
|
s.Require().Len(response.EmojiReactions(), 1)
|
|
|
|
s.Require().Equal(response.EmojiReactions()[0].ID(), emojiID)
|
|
|
|
s.Require().Equal(response.EmojiReactions()[0].Type, protobuf.EmojiReaction_SAD)
|
2020-07-27 12:27:48 +00:00
|
|
|
|
|
|
|
// Retract the emoji
|
|
|
|
response, err = bob.SendEmojiReactionRetraction(context.Background(), emojiID)
|
|
|
|
s.Require().NoError(err)
|
2023-02-13 20:09:20 +00:00
|
|
|
s.Require().Len(response.EmojiReactions(), 1)
|
|
|
|
s.Require().True(response.EmojiReactions()[0].Retracted)
|
2020-07-27 12:27:48 +00:00
|
|
|
|
|
|
|
// Wait for the emoji to arrive to alice
|
|
|
|
response, err = WaitOnMessengerResponse(
|
|
|
|
alice,
|
2023-02-13 20:09:20 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.EmojiReactions()) == 1 },
|
2020-07-27 12:27:48 +00:00
|
|
|
"no emoji",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-02-13 20:09:20 +00:00
|
|
|
s.Require().Len(response.EmojiReactions(), 1)
|
|
|
|
s.Require().Equal(response.EmojiReactions()[0].ID(), emojiID)
|
|
|
|
s.Require().Equal(response.EmojiReactions()[0].Type, protobuf.EmojiReaction_SAD)
|
|
|
|
s.Require().True(response.EmojiReactions()[0].Retracted)
|
2020-07-27 12:27:48 +00:00
|
|
|
}
|
2020-07-28 14:34:49 +00:00
|
|
|
|
|
|
|
func (s *MessengerEmojiSuite) TestEmojiPrivateGroup() {
|
|
|
|
bob := s.m
|
2023-07-13 10:44:09 +00:00
|
|
|
alice := s.newMessenger()
|
2023-11-27 17:01:13 +00:00
|
|
|
defer TearDownMessenger(&s.Suite, alice)
|
2020-07-28 14:34:49 +00:00
|
|
|
response, err := bob.CreateGroupChatWithMembers(context.Background(), "test", []string{})
|
|
|
|
s.NoError(err)
|
|
|
|
|
2022-08-26 09:25:54 +00:00
|
|
|
s.Require().NoError(makeMutualContact(bob, &alice.identity.PublicKey))
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
chat := response.Chats()[0]
|
2020-07-28 14:34:49 +00:00
|
|
|
members := []string{types.EncodeHex(crypto.FromECDSAPub(&alice.identity.PublicKey))}
|
|
|
|
_, err = bob.AddMembersToGroupChat(context.Background(), chat.ID, members)
|
|
|
|
s.NoError(err)
|
|
|
|
|
|
|
|
// Retrieve their messages so that the chat is created
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
alice,
|
2021-01-11 10:32:51 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.Chats()) > 0 },
|
2020-07-28 14:34:49 +00:00
|
|
|
"chat invitation not received",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
_, err = alice.ConfirmJoiningGroup(context.Background(), chat.ID)
|
|
|
|
s.NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
_, err = WaitOnMessengerResponse(
|
|
|
|
bob,
|
2021-01-11 10:32:51 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.Chats()) > 0 },
|
2020-07-28 14:34:49 +00:00
|
|
|
"no joining group event received",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
inputMessage := buildTestMessage(*chat)
|
|
|
|
_, err = bob.SendChatMessage(context.Background(), inputMessage)
|
|
|
|
s.NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
|
|
|
response, err = WaitOnMessengerResponse(
|
|
|
|
alice,
|
2021-06-03 13:11:55 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.Messages()) > 0 },
|
2020-07-28 14:34:49 +00:00
|
|
|
"no message received",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
2021-06-03 13:11:55 +00:00
|
|
|
messageID := response.Messages()[0].ID
|
2020-07-28 14:34:49 +00:00
|
|
|
|
2020-07-28 18:12:10 +00:00
|
|
|
_, err = bob.SendEmojiReaction(context.Background(), chat.ID, messageID, protobuf.EmojiReaction_SAD)
|
2020-07-28 14:34:49 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Wait for the message to reach its destination
|
2020-07-28 18:12:10 +00:00
|
|
|
_, err = WaitOnMessengerResponse(
|
2020-07-28 14:34:49 +00:00
|
|
|
alice,
|
2023-02-13 20:09:20 +00:00
|
|
|
func(r *MessengerResponse) bool { return len(r.EmojiReactions()) == 1 },
|
2020-07-28 14:34:49 +00:00
|
|
|
"no emoji reaction received",
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
2023-05-10 10:45:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerEmojiSuite) TestCompressedKeyReturnedWithEmoji() {
|
2023-08-18 11:39:59 +00:00
|
|
|
emojiReaction := NewEmojiReaction()
|
2023-05-10 10:45:42 +00:00
|
|
|
id, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
emojiReaction.From = common.PubkeyToHex(&id.PublicKey)
|
|
|
|
emojiReaction.LocalChatID = testPublicChatID
|
|
|
|
encodedReaction, err := json.Marshal(emojiReaction)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Check that compressedKey and emojiHash exists
|
|
|
|
s.Require().True(strings.Contains(string(encodedReaction), "compressedKey\":\"zQ"))
|
|
|
|
s.Require().True(strings.Contains(string(encodedReaction), "emojiHash"))
|
2020-07-28 14:34:49 +00:00
|
|
|
}
|