2020-06-26 07:46:14 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"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"
|
2020-10-08 14:05:49 +00:00
|
|
|
"github.com/status-im/status-go/protocol/sqlite"
|
2020-06-26 07:46:14 +00:00
|
|
|
"github.com/status-im/status-go/protocol/tt"
|
2020-07-21 15:41:10 +00:00
|
|
|
"github.com/status-im/status-go/waku"
|
2020-06-26 07:46:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMessengerMuteSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(MessengerMuteSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessengerMuteSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
m *Messenger // main instance of Messenger
|
|
|
|
privateKey *ecdsa.PrivateKey // private key for the main instance of Messenger
|
|
|
|
|
|
|
|
// If one wants to send messages between different instances of Messenger,
|
2020-07-21 15:41:10 +00:00
|
|
|
// a single Waku service should be shared.
|
|
|
|
shh types.Waku
|
2020-06-26 07:46:14 +00:00
|
|
|
|
2020-10-08 14:05:49 +00:00
|
|
|
logger *zap.Logger
|
2020-06-26 07:46:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerMuteSuite) SetupTest() {
|
|
|
|
s.logger = tt.MustCreateTestLogger()
|
|
|
|
|
2020-07-21 15:41:10 +00:00
|
|
|
config := waku.DefaultConfig
|
|
|
|
config.MinimumAcceptedPoW = 0
|
|
|
|
shh := waku.New(&config, s.logger)
|
|
|
|
s.shh = gethbridge.NewGethWakuWrapper(shh)
|
2020-06-26 07:46:14 +00:00
|
|
|
s.Require().NoError(shh.Start(nil))
|
|
|
|
|
|
|
|
s.m = s.newMessenger(s.shh)
|
|
|
|
s.privateKey = s.m.identity
|
2020-07-31 09:46:38 +00:00
|
|
|
s.Require().NoError(s.m.Start())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerMuteSuite) TearDownTest() {
|
|
|
|
s.Require().NoError(s.m.Shutdown())
|
2020-06-26 07:46:14 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 15:41:10 +00:00
|
|
|
func (s *MessengerMuteSuite) newMessengerWithKey(shh types.Waku, privateKey *ecdsa.PrivateKey) *Messenger {
|
2020-06-26 07:46:14 +00:00
|
|
|
options := []Option{
|
|
|
|
WithCustomLogger(s.logger),
|
|
|
|
WithMessagesPersistenceEnabled(),
|
2020-10-08 14:05:49 +00:00
|
|
|
WithDatabaseConfig(sqlite.InMemoryPath, "some-key"),
|
2020-06-26 07:46:14 +00:00
|
|
|
WithDatasync(),
|
|
|
|
}
|
|
|
|
installationID := uuid.New().String()
|
|
|
|
m, err := NewMessenger(
|
|
|
|
privateKey,
|
|
|
|
&testNode{shh: shh},
|
|
|
|
installationID,
|
|
|
|
options...,
|
|
|
|
)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
err = m.Init()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2020-07-21 15:41:10 +00:00
|
|
|
func (s *MessengerMuteSuite) newMessenger(shh types.Waku) *Messenger {
|
2020-06-26 07:46:14 +00:00
|
|
|
privateKey, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
return s.newMessengerWithKey(s.shh, privateKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MessengerMuteSuite) TestSetMute() {
|
|
|
|
key, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
theirMessenger := s.newMessengerWithKey(s.shh, key)
|
2020-07-31 09:46:38 +00:00
|
|
|
s.Require().NoError(theirMessenger.Start())
|
2020-06-26 07:46:14 +00:00
|
|
|
|
|
|
|
chatID := "status"
|
|
|
|
|
|
|
|
chat := CreatePublicChat(chatID, s.m.transport)
|
|
|
|
|
|
|
|
err = s.m.SaveChat(&chat)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
err = s.m.Join(chat)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
err = theirMessenger.SaveChat(&chat)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().NoError(s.m.MuteChat(chatID))
|
|
|
|
|
|
|
|
s.Require().Len(s.m.Chats(), 1)
|
|
|
|
s.Require().True(s.m.Chats()[0].Muted)
|
|
|
|
|
|
|
|
s.Require().NoError(s.m.UnmuteChat(chatID))
|
|
|
|
s.Require().False(s.m.Chats()[0].Muted)
|
2020-07-31 09:46:38 +00:00
|
|
|
s.Require().NoError(theirMessenger.Shutdown())
|
2020-06-26 07:46:14 +00:00
|
|
|
}
|