-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmessenger_sync_bookmark_test.go
207 lines (167 loc) · 5.68 KB
/
messenger_sync_bookmark_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package protocol
import (
"context"
"crypto/ecdsa"
"errors"
"testing"
"time"
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/protocol/encryption/multidevice"
"github.com/status-im/status-go/protocol/tt"
"github.com/status-im/status-go/services/browsers"
"github.com/status-im/status-go/waku"
"github.com/stretchr/testify/suite"
"go.uber.org/zap"
"github.com/status-im/status-go/eth-node/types"
)
func TestMessengerSyncBookmarkSuite(t *testing.T) {
suite.Run(t, new(MessengerSyncBookmarkSuite))
}
type MessengerSyncBookmarkSuite 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,
// a single Waku service should be shared.
shh types.Waku
logger *zap.Logger
}
func (s *MessengerSyncBookmarkSuite) SetupTest() {
s.logger = tt.MustCreateTestLogger()
config := waku.DefaultConfig
config.MinimumAcceptedPoW = 0
shh := waku.New(&config, s.logger)
s.shh = gethbridge.NewGethWakuWrapper(shh)
s.Require().NoError(shh.Start())
s.m = s.newMessenger(s.shh)
s.privateKey = s.m.identity
// We start the messenger in order to receive installations
_, err := s.m.Start()
s.Require().NoError(err)
}
func (s *MessengerSyncBookmarkSuite) TearDownTest() {
s.Require().NoError(s.m.Shutdown())
}
func (s *MessengerSyncBookmarkSuite) newMessenger(shh types.Waku) *Messenger {
privateKey, err := crypto.GenerateKey()
s.Require().NoError(err)
messenger, err := newMessengerWithKey(s.shh, privateKey, s.logger, nil)
s.Require().NoError(err)
return messenger
}
func (s *MessengerSyncBookmarkSuite) TestSyncBookmark() {
//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)
// pair
theirMessenger, err := newMessengerWithKey(s.shh, s.privateKey, s.logger, nil)
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())
s.Require().NoError(err)
s.Require().NotNil(response)
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.SyncBookmark(context.Background(), &bookmark)
s.Require().NoError(err)
// Wait for the message to reach its destination
err = tt.RetryWithBackOff(func() error {
response, err = theirMessenger.RetrieveAll()
if err != nil {
return err
}
if response.Bookmarks != nil {
return nil
}
return errors.New("Not received all bookmarks")
})
s.Require().NoError(err)
bookmarks, err := theirMessenger.browserDatabase.GetBookmarks()
s.Require().NoError(err)
s.Require().Equal(1, len(bookmarks))
s.Require().False(bookmarks[0].Removed)
// sync removed state
bookmark.Removed = true
err = s.m.SyncBookmark(context.Background(), &bookmark)
s.Require().NoError(err)
// Wait for the message to reach its destination
err = tt.RetryWithBackOff(func() error {
response, err = theirMessenger.RetrieveAll()
if err != nil {
return err
}
if response.Bookmarks != nil {
return nil
}
return errors.New("Not received all bookmarks")
})
bookmarks, err = theirMessenger.browserDatabase.GetBookmarks()
s.Require().NoError(err)
s.Require().Equal(1, len(bookmarks))
s.Require().True(bookmarks[0].Removed)
s.Require().NoError(theirMessenger.Shutdown())
}
func (s *MessengerSyncBookmarkSuite) TestGarbageCollectRemovedBookmarks() {
now := time.Now()
// Create bookmarks that are flagged as deleted for more than 30 days
bookmark1 := browsers.Bookmark{
Name: "status official site",
URL: "https://status.im",
Removed: true,
DeletedAt: uint64(now.AddDate(0, 0, -31).Unix()),
}
bookmark2 := browsers.Bookmark{
Name: "Uniswap",
URL: "https://uniswap.org",
Removed: true,
DeletedAt: uint64(now.AddDate(0, 0, -31).Unix()),
}
// This one is flagged for deletion less than 30 days
bookmark3 := browsers.Bookmark{
Name: "Maker DAO",
URL: "https://makerdao.com",
Removed: true,
DeletedAt: uint64(now.AddDate(0, 0, -29).Unix()),
}
// Store bookmarks
_, err := s.m.browserDatabase.StoreBookmark(bookmark1)
s.Require().NoError(err)
_, err = s.m.browserDatabase.StoreBookmark(bookmark2)
s.Require().NoError(err)
_, err = s.m.browserDatabase.StoreBookmark(bookmark3)
s.Require().NoError(err)
bookmarks, err := s.m.browserDatabase.GetBookmarks()
s.Require().NoError(err)
s.Require().Len(bookmarks, 3)
// err = s.m.GarbageCollectRemovedBookmarks(&now)
err = s.m.GarbageCollectRemovedBookmarks()
s.Require().NoError(err)
bookmarks, err = s.m.browserDatabase.GetBookmarks()
s.Require().NoError(err)
s.Require().Len(bookmarks, 1)
}