* Remove Deployment.Client and change Deploy - `Deployment.Client` was used to get pre-registered clients. Now we want tests to register new users for each test, for dirty runs. So swap for `Deployment.Register` everywhere. - `Deploy` was used to deploy a blueprint. We don't want this to enable dirty runs. So replace it with the number of servers you need e.g `Deploy(t, 2)`. * Fix up more broken refactoring * unbreak tests; make user localpart look nicer * Alice and bob must share a room for presence * Fix user directory test * Fix race condition caused by making the room later than before
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package csapi_tests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
"github.com/matrix-org/complement"
|
|
"github.com/matrix-org/complement/client"
|
|
"github.com/matrix-org/complement/helpers"
|
|
)
|
|
|
|
func TestAvatarUrlUpdate(t *testing.T) {
|
|
testProfileFieldUpdate(t, "avatar_url")
|
|
}
|
|
|
|
func TestDisplayNameUpdate(t *testing.T) {
|
|
testProfileFieldUpdate(t, "displayname")
|
|
}
|
|
|
|
// sytest: $datum updates affect room member events
|
|
func testProfileFieldUpdate(t *testing.T, field string) {
|
|
deployment := complement.Deploy(t, 1)
|
|
defer deployment.Destroy(t)
|
|
|
|
const bogusData = "LemurLover"
|
|
|
|
alice := deployment.Register(t, "hs1", helpers.RegistrationOpts{})
|
|
|
|
roomID := alice.MustCreateRoom(t, map[string]interface{}{
|
|
"preset": "public_chat",
|
|
})
|
|
|
|
sinceToken := alice.MustSyncUntil(t, client.SyncReq{}, client.SyncJoinedTo(alice.UserID, roomID))
|
|
|
|
alice.MustDo(
|
|
t,
|
|
"PUT",
|
|
[]string{"_matrix", "client", "v3", "profile", alice.UserID, field},
|
|
client.WithJSONBody(t, map[string]interface{}{
|
|
field: bogusData,
|
|
}),
|
|
)
|
|
|
|
alice.MustSyncUntil(t, client.SyncReq{Since: sinceToken}, client.SyncJoinedTo(alice.UserID, roomID, func(result gjson.Result) bool {
|
|
return result.Get("content."+field).Str == bogusData
|
|
}))
|
|
}
|