Jonas Platte
b9c05ca934
test: Move room messages test JSON to the only module that uses it
2023-10-04 13:23:47 +02:00
Jonas Platte
75d64e697e
test: Remove unused constants from test_json::messages
2023-10-04 13:23:47 +02:00
Jonas Platte
b35d40d111
test: Remove unused sync events from test_json
2023-09-27 10:06:32 +02:00
Jonas Platte
3196ac53b2
test: Remove TimelineTestEvent
2023-09-27 10:06:32 +02:00
Jonas Platte
145c5078f2
test: Remove example from SyncResponseBuilder docs
...
It is only an internal utility, we can copy-paste from other tests.
2023-09-27 10:06:32 +02:00
Jonas Platte
62ecff3e1d
test: Remove outdated documentation
2023-09-27 10:06:32 +02:00
Benjamin Bouvier
1180c6aef9
feat: add integration test for fetch_members causing UTDs 🧪
2023-09-26 12:33:41 +02:00
Jonas Platte
6e15e34700
Use bool::then where applicable
2023-09-26 10:14:04 +02:00
Jonas Platte
f2c569440e
ui: Remove transaction ID parameter on Timeline methods
...
There is no reason for it to be configurable in the high-level API,
since the timeline manages local echoes automatically.
2023-09-25 16:50:59 +02:00
Jonas Platte
fd822fc683
testing: Move last event creation code from TestTimeline to EventBuilder
2023-09-21 16:00:11 +02:00
Jonas Platte
5cf3c1e731
testing: Use EventBuilder in timeline teply integration tests
2023-09-21 16:00:11 +02:00
Jonas Platte
37912a1909
testing: Update EventBuilder method names for clarity
2023-09-21 16:00:11 +02:00
Jonas Platte
c89b38b19f
testing: Update EventBuilder::make_message_event_with_id argument order
2023-09-21 16:00:11 +02:00
Jonas Platte
2376f16214
testing: Change make_message_event_with_id to take event_id by reference
2023-09-21 16:00:11 +02:00
Jonas Platte
5d5f5e18de
testing: Move ALICE, BOB, CAROL statics to test crate
2023-09-21 16:00:11 +02:00
Jonas Platte
a5a9940ad9
testing: Extract EventBuilder out of TestTimeline
2023-09-21 16:00:11 +02:00
Jonas Platte
fe2e60c60d
testing: Replace TimelineTestEvent::Custom with sync_timeline_event!
2023-09-21 16:00:11 +02:00
Jonas Platte
054d26774c
testing: Generalize add_timeline_event for sync response room builders
2023-09-21 16:00:11 +02:00
Jonas Platte
c8a4bc799b
testing: Add sync_timeline_event macro for more type safety in tests
2023-09-21 16:00:11 +02:00
Jonas Platte
82f793ec0f
testing: Rename event_builder module to sync_builder
...
It used to contain a type named EventBuilder, but that has been renamed
to SyncResponseBuilder a while ago.
2023-09-21 16:00:11 +02:00
Jonas Platte
1a15802201
Upgrade Ruma
2023-09-20 14:19:06 +02:00
Jonas Platte
45b7e075c9
Remove unused dependencies
2023-09-18 19:56:06 +02:00
Benjamin Bouvier
0ecdc2f43c
fix(e2ee): query keys for untracked users even if we didn't explicitly sync members ourselves
2023-09-18 17:24:21 +02:00
Jonas Platte
fd17bce300
ui: Fix day divider logic
...
… for when a remote event is re-received while a local echo is pending.
Also simplify test_togglling_reaction integration test so it still passes.
2023-09-14 14:14:44 +02:00
Jonas Platte
2d47aecd37
Remove the appservice feature from matrix-sdk, matrix-sdk-test
2023-09-05 15:40:38 +02:00
Benjamin Bouvier
508091af80
feat: use the encryption sync permit from the SyncService in the NotificationClient
...
Also rejigger the parameters passed to the notification client builder, so that it's always required to pass
a process setup. With that, we're one step closer to removing the retry_decryption() function and enable it
by default.
2023-09-05 11:17:14 +02:00
Jonas Platte
e02676616f
sdk: Make use of clonable FnOnce in event handlers
2023-09-01 10:42:22 +02:00
Nicolas Mauri
1cc11ae988
feat(ffi): Add a notification_mode property to room_info ( #2460 )
...
* feat(ffi): Add a notification_mode property to room_info
* feat(sdk): Add a notification_mode() function to Room
* Fix Rust syntax
2023-08-29 12:25:26 +00:00
Benjamin Bouvier
936b6980c9
chore: move SyncTokenAwareClient to the common test helpers
2023-08-21 19:36:33 +02:00
Benjamin Bouvier
e262db3505
test: write an integration test for missing keys during encryption
2023-08-21 19:36:33 +02:00
Benjamin Bouvier
5c74a597eb
nit: prefer using assert_matches! in tests
2023-08-04 17:41:47 +02:00
Benjamin Bouvier
dd3cab9409
fix: don't try /context when a notification has been filtered out
2023-08-04 17:41:47 +02:00
Benjamin Bouvier
10f709450e
tests(notification): add integration tests for notification events
2023-08-04 17:41:47 +02:00
Jonas Platte
1679669376
Remove the 'testing' feature from matrix-sdk-ui
...
At the expense of slightly increasing our public API, but we can always
deprecate things.
2023-08-03 21:39:56 +02:00
Nicolas Mauri
6961a7fb36
Fix is_user_mention_enabled and is_room_mention_enabled ( #2357 )
...
* Fix is_user_mention_enabled, is_room_mention_enabled
* Fix: XXX comments in UnitTests
* Update comments
* UnitTests: code refactoring
2023-08-01 14:43:32 +02:00
Jonas Platte
92df7b22ec
Rename room::Common to Room
...
… and export it at the matrix_sdk crate root.
2023-07-18 15:12:03 +02:00
Jonas Platte
67ef9c3fa0
Remove Room enum
2023-07-18 15:12:03 +02:00
Jonas Platte
85f66b1f96
Remove room::Joined
2023-07-18 15:12:03 +02:00
Jonas Platte
0408bd5a98
Remove room::Left
2023-07-18 15:12:03 +02:00
Jonas Platte
05a817305e
Remove room::Invited
2023-07-18 15:12:03 +02:00
Jonas Platte
8c3af12e47
test: Rename EventBuilder to SyncResponseBuilder
...
… because that's what it is.
2023-07-12 10:29:29 +02:00
aringenbach
89aa2916c7
ui/ffi: Add timestamp to reactions
2023-07-10 10:13:53 +00:00
Benjamin Bouvier
d72fd34325
Make pending local echoes sticky, take 2 ( #2189 )
...
* ui: Move EventSendState into timeline::event_item::local module
* [WIP] ui: Make pending local echoes stick to the bottom of the timeline
* test: update more test expectations
* chore: tweak comment to slightly better reflect reality
* nit: remove else after return
* fix: the item's insert position is insert_idx, not `items.len()` anymore
* fix: look for remote echo before local echo when processing send state
Previous code assumed that the latest timeline items would be the most recent, and that
if there was a remote echo, it would always be after the local echo, because of that.
That's not the case anymore, so we must look for possibly a remote echo first, and then
if we find it, apply the late update process.
Also, there might remain a day divider added by the local echo, if it were inserted last.
I'm not sure it covers all the cases, but I've now made it so that the day divider is removed
if it was the last element.
* feat: switch strategy; keep on pushing if there's nothing in the timeline yet
* Revert "test: update more test expectations"
This reverts commit 400cc93ba7c98042a28b5e8d5042899e854f6cff.
* test: reset test expectations
* Address review comments
* fix: don't mix up latest event with any status, with latest non-failed event index
---------
Co-authored-by: Jonas Platte <jplatte@matrix.org >
2023-06-30 09:37:49 +00:00
Benjamin Bouvier
77290ff2c1
feat: Get rid of "common extensions"
...
Common extensions are confusing, and they've included `e2ee` and `to-device` by default. This is not a sane default anymore,
now that there's the concept of `EncryptionSync`: it's either we have the encryption sync that enables e2ee and to-device +
a room list sync that doesn't, OR we have a single room list that has both.
Room List was misconfigured to always use `e2ee` and `to-device`, which was incorrect when it's running with the `EncryptionSync`
in the background. This is now removed, and properly tested.
2023-06-30 09:56:29 +02:00
jonnyandrew
7e7996d43d
ui: Add local echoes for reactions to Timeline
2023-06-26 15:17:48 +00:00
Kévin Commaille
d6f9f08e30
sdk: Split Matrix authentication methods in a separate API
...
Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr >
2023-06-22 11:21:50 +02:00
Andy Balaam
2a2ce5f05c
Already-passing tests for get_dm_room including left rooms
2023-06-20 11:05:37 +01:00
Jonas Platte
b3017a1073
Fix typos
2023-06-14 12:31:32 +02:00
Benjamin Bouvier
43bac4995f
chore: rename homeserver to sliding_sync_proxy in sliding sync
...
Signed-off-by: Benjamin Bouvier <public@benj.me >
2023-06-08 11:13:40 +02:00
Kévin Commaille
407375ad17
base: Move StateStore::get_member_event to StateStoreExt
...
It is a wrapper around get_state_event_static_for_key
Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr >
2023-06-06 11:56:11 +02:00