@@ -19,7 +19,6 @@ import org.xmtp.android.library.messages.PrivateKey
19
19
import org.xmtp.android.library.messages.PrivateKeyBuilder
20
20
import org.xmtp.android.library.messages.walletAddress
21
21
22
- @Ignore(" CI Issues" )
23
22
@RunWith(AndroidJUnit4 ::class )
24
23
class GroupTest {
25
24
lateinit var fakeApiClient: FakeApiClient
@@ -59,12 +58,14 @@ class GroupTest {
59
58
}
60
59
61
60
@Test
61
+ @Ignore(" CI Issues" )
62
62
fun testCanCreateAGroup () {
63
63
val group = boClient.conversations.newGroup(listOf (alix.walletAddress))
64
64
assert (group.id.isNotEmpty())
65
65
}
66
66
67
67
@Test
68
+ @Ignore(" CI Issues" )
68
69
fun testCanListGroupMembers () {
69
70
val group = boClient.conversations.newGroup(
70
71
listOf (
@@ -83,6 +84,7 @@ class GroupTest {
83
84
}
84
85
85
86
@Test
87
+ @Ignore(" CI Issues" )
86
88
fun testCanAddGroupMembers () {
87
89
val group = boClient.conversations.newGroup(listOf (alix.walletAddress))
88
90
group.addMembers(listOf (caro.walletAddress))
@@ -97,6 +99,7 @@ class GroupTest {
97
99
}
98
100
99
101
@Test
102
+ @Ignore(" CI Issues" )
100
103
fun testCanRemoveGroupMembers () {
101
104
val group = boClient.conversations.newGroup(
102
105
listOf (
@@ -115,6 +118,7 @@ class GroupTest {
115
118
}
116
119
117
120
@Test
121
+ @Ignore(" CI Issues" )
118
122
fun testCanRemoveGroupMembersWhenNotCreator () {
119
123
boClient.conversations.newGroup(
120
124
listOf (
@@ -135,6 +139,7 @@ class GroupTest {
135
139
}
136
140
137
141
@Test
142
+ @Ignore(" CI Issues" )
138
143
fun testIsActiveReturnsCorrectly () {
139
144
val group = boClient.conversations.newGroup(
140
145
listOf (
@@ -154,6 +159,7 @@ class GroupTest {
154
159
}
155
160
156
161
@Test
162
+ @Ignore(" CI Issues" )
157
163
fun testCanListGroups () {
158
164
boClient.conversations.newGroup(listOf (alix.walletAddress))
159
165
boClient.conversations.newGroup(listOf (caro.walletAddress))
@@ -162,6 +168,7 @@ class GroupTest {
162
168
}
163
169
164
170
@Test
171
+ @Ignore(" CI Issues" )
165
172
fun testCanListGroupsAndConversations () {
166
173
boClient.conversations.newGroup(listOf (alix.walletAddress))
167
174
boClient.conversations.newGroup(listOf (caro.walletAddress))
@@ -171,6 +178,7 @@ class GroupTest {
171
178
}
172
179
173
180
@Test
181
+ @Ignore(" CI Issues" )
174
182
fun testCannotSendMessageToGroupMemberNotOnV3 () {
175
183
var fakeApiClient = FakeApiClient ()
176
184
val chuxAccount = PrivateKeyBuilder ()
@@ -183,20 +191,23 @@ class GroupTest {
183
191
}
184
192
185
193
@Test
194
+ @Ignore(" CI Issues" )
186
195
fun testCannotStartGroupWithSelf () {
187
196
assertThrows(" Recipient is sender" , XMTPException ::class .java) {
188
197
boClient.conversations.newGroup(listOf (bo.walletAddress))
189
198
}
190
199
}
191
200
192
201
@Test
202
+ @Ignore(" CI Issues" )
193
203
fun testCannotStartEmptyGroupChat () {
194
204
assertThrows(" Cannot start an empty group chat." , XMTPException ::class .java) {
195
205
boClient.conversations.newGroup(listOf ())
196
206
}
197
207
}
198
208
199
209
@Test
210
+ @Ignore(" CI Issues" )
200
211
fun testCanSendMessageToGroup () {
201
212
val group = boClient.conversations.newGroup(listOf (alix.walletAddress))
202
213
group.send(" howdy" )
@@ -213,6 +224,7 @@ class GroupTest {
213
224
}
214
225
215
226
@Test
227
+ @Ignore(" CI Issues" )
216
228
fun testCanSendContentTypesToGroup () {
217
229
Client .register(codec = ReactionCodec ())
218
230
@@ -241,6 +253,7 @@ class GroupTest {
241
253
}
242
254
243
255
@Test
256
+ @Ignore(" CI Issues" )
244
257
fun testCanStreamGroupMessages () = kotlinx.coroutines.test.runTest {
245
258
val group = boClient.conversations.newGroup(listOf (alix.walletAddress.lowercase()))
246
259
group.streamMessages().test {
@@ -252,6 +265,7 @@ class GroupTest {
252
265
}
253
266
254
267
@Test
268
+ @Ignore(" CI Issues" )
255
269
fun testCanStreamDecryptedGroupMessages () = kotlinx.coroutines.test.runTest {
256
270
val group = boClient.conversations.newGroup(listOf (alix.walletAddress))
257
271
@@ -264,6 +278,7 @@ class GroupTest {
264
278
}
265
279
266
280
@Test
281
+ @Ignore(" CI Issues" )
267
282
fun testCanStreamGroups () = kotlinx.coroutines.test.runTest {
268
283
boClient.conversations.streamGroups().test {
269
284
val group =
@@ -276,6 +291,7 @@ class GroupTest {
276
291
}
277
292
278
293
@Test
294
+ @Ignore(" CI Issues" )
279
295
fun testCanStreamGroupsAndConversations () = kotlinx.coroutines.test.runTest {
280
296
boClient.conversations.streamAll().test {
281
297
val group =
0 commit comments