2017-05-05 16:59:45 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-05-10 16:48:35 +00:00
|
|
|
"encoding/json"
|
2017-05-05 16:59:45 +00:00
|
|
|
"fmt"
|
2017-06-19 14:21:04 +00:00
|
|
|
"io/ioutil"
|
2017-05-05 16:59:45 +00:00
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/test"
|
2017-05-10 16:48:35 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2017-05-05 16:59:45 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Path to where kafka is installed.
|
2017-06-08 13:40:51 +00:00
|
|
|
kafkaDir = test.Defaulting(os.Getenv("KAFKA_DIR"), "kafka")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The URI the kafka zookeeper is listening on.
|
2017-06-08 13:40:51 +00:00
|
|
|
zookeeperURI = test.Defaulting(os.Getenv("ZOOKEEPER_URI"), "localhost:2181")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The URI the kafka server is listening on.
|
2017-06-08 13:40:51 +00:00
|
|
|
kafkaURI = test.Defaulting(os.Getenv("KAFKA_URIS"), "localhost:9092")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The address the syncserver should listen on.
|
2017-06-08 13:40:51 +00:00
|
|
|
syncserverAddr = test.Defaulting(os.Getenv("SYNCSERVER_URI"), "localhost:9876")
|
2017-05-05 16:59:45 +00:00
|
|
|
// How long to wait for the syncserver to write the expected output messages.
|
|
|
|
// This needs to be high enough to account for the time it takes to create
|
|
|
|
// the postgres database tables which can take a while on travis.
|
2017-06-08 13:40:51 +00:00
|
|
|
timeoutString = test.Defaulting(os.Getenv("TIMEOUT"), "10s")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The name of maintenance database to connect to in order to create the test database.
|
2017-06-08 13:40:51 +00:00
|
|
|
postgresDatabase = test.Defaulting(os.Getenv("POSTGRES_DATABASE"), "postgres")
|
|
|
|
// Postgres docker container name (for running psql). If not set, psql must be in PATH.
|
|
|
|
postgresContainerName = os.Getenv("POSTGRES_CONTAINER")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The name of the test database to create.
|
2017-06-08 13:40:51 +00:00
|
|
|
testDatabaseName = test.Defaulting(os.Getenv("DATABASE_NAME"), "syncserver_test")
|
2017-05-05 16:59:45 +00:00
|
|
|
// The postgres connection config for connecting to the test database.
|
2017-06-08 13:40:51 +00:00
|
|
|
testDatabase = test.Defaulting(os.Getenv("DATABASE"), fmt.Sprintf("dbname=%s sslmode=disable binary_parameters=yes", testDatabaseName))
|
2017-05-05 16:59:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const inputTopic = "syncserverInput"
|
2017-08-02 15:21:35 +00:00
|
|
|
const clientTopic = "clientapiserverOutput"
|
2017-05-05 16:59:45 +00:00
|
|
|
|
2017-05-09 08:05:05 +00:00
|
|
|
var exe = test.KafkaExecutor{
|
|
|
|
ZookeeperURI: zookeeperURI,
|
|
|
|
KafkaDirectory: kafkaDir,
|
|
|
|
KafkaURI: kafkaURI,
|
|
|
|
// Send stdout and stderr to our stderr so that we see error messages from
|
|
|
|
// the kafka process.
|
|
|
|
OutputWriter: os.Stderr,
|
|
|
|
}
|
|
|
|
|
2017-05-05 16:59:45 +00:00
|
|
|
var timeout time.Duration
|
2017-05-10 16:48:35 +00:00
|
|
|
var clientEventTestData []string
|
2017-05-05 16:59:45 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
var err error
|
|
|
|
timeout, err = time.ParseDuration(timeoutString)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2017-05-10 16:48:35 +00:00
|
|
|
|
|
|
|
for _, s := range outputRoomEventTestData {
|
|
|
|
clientEventTestData = append(clientEventTestData, clientEventJSONForOutputRoomEvent(s))
|
|
|
|
}
|
2017-05-05 16:59:45 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 16:41:45 +00:00
|
|
|
func createTestUser(database, username, token string) error {
|
|
|
|
cmd := exec.Command(
|
|
|
|
filepath.Join(filepath.Dir(os.Args[0]), "create-account"),
|
|
|
|
"--database", database,
|
|
|
|
"--username", username,
|
|
|
|
"--token", token,
|
|
|
|
)
|
|
|
|
|
|
|
|
// Send stdout and stderr to our stderr so that we see error messages from
|
|
|
|
// the create-account process
|
|
|
|
cmd.Stdout = os.Stderr
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// clientEventJSONForOutputRoomEvent parses the given output room event and extracts the 'Event' JSON. It is
|
|
|
|
// trimmed to the client format and then canonicalised and returned as a string.
|
|
|
|
// Panics if there are any problems.
|
|
|
|
func clientEventJSONForOutputRoomEvent(outputRoomEvent string) string {
|
2017-07-12 09:46:29 +00:00
|
|
|
var out api.OutputEvent
|
2017-05-10 16:48:35 +00:00
|
|
|
if err := json.Unmarshal([]byte(outputRoomEvent), &out); err != nil {
|
|
|
|
panic("failed to unmarshal output room event: " + err.Error())
|
|
|
|
}
|
2020-11-16 15:44:53 +00:00
|
|
|
clientEvs := gomatrixserverlib.ToClientEvents([]*gomatrixserverlib.Event{
|
2020-03-17 11:01:25 +00:00
|
|
|
out.NewRoomEvent.Event.Event,
|
2017-07-12 09:46:29 +00:00
|
|
|
}, gomatrixserverlib.FormatSync)
|
2017-05-10 16:48:35 +00:00
|
|
|
b, err := json.Marshal(clientEvs[0])
|
|
|
|
if err != nil {
|
|
|
|
panic("failed to marshal client event as json: " + err.Error())
|
|
|
|
}
|
|
|
|
jsonBytes, err := gomatrixserverlib.CanonicalJSON(b)
|
|
|
|
if err != nil {
|
|
|
|
panic("failed to turn event json into canonical json: " + err.Error())
|
|
|
|
}
|
|
|
|
return string(jsonBytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
// startSyncServer creates the database and config file needed for the sync server to run and
|
|
|
|
// then starts the sync server. The Cmd being executed is returned. A channel is also returned,
|
|
|
|
// which will have any termination errors sent down it, followed immediately by the channel being closed.
|
|
|
|
func startSyncServer() (*exec.Cmd, chan error) {
|
2017-06-19 14:21:04 +00:00
|
|
|
|
|
|
|
dir, err := ioutil.TempDir("", "syncapi-server-test")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg, _, err := test.MakeConfig(dir, kafkaURI, testDatabase, "localhost", 10000)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// TODO use the address assigned by the config generator rather than clobbering.
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg.Global.ServerName = "localhost"
|
2020-08-13 11:16:37 +00:00
|
|
|
cfg.SyncAPI.InternalAPI.Listen = config.HTTPAddress("http://" + syncserverAddr)
|
|
|
|
cfg.SyncAPI.InternalAPI.Connect = cfg.SyncAPI.InternalAPI.Listen
|
2017-06-19 14:21:04 +00:00
|
|
|
|
|
|
|
if err := test.WriteConfig(cfg, dir); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2017-06-08 13:40:51 +00:00
|
|
|
|
|
|
|
serverArgs := []string{
|
2017-06-19 14:21:04 +00:00
|
|
|
"--config", filepath.Join(dir, test.ConfigFile),
|
2017-05-05 16:59:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 13:40:51 +00:00
|
|
|
databases := []string{
|
|
|
|
testDatabaseName,
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:10:56 +00:00
|
|
|
test.InitDatabase(
|
2017-06-08 13:40:51 +00:00
|
|
|
postgresDatabase,
|
|
|
|
postgresContainerName,
|
|
|
|
databases,
|
|
|
|
)
|
|
|
|
|
2017-05-25 16:41:45 +00:00
|
|
|
if err := createTestUser(testDatabase, "alice", "@alice:localhost"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err := createTestUser(testDatabase, "bob", "@bob:localhost"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err := createTestUser(testDatabase, "charlie", "@charlie:localhost"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:10:56 +00:00
|
|
|
cmd, cmdChan := test.CreateBackgroundCommand(
|
|
|
|
filepath.Join(filepath.Dir(os.Args[0]), "dendrite-sync-api-server"),
|
|
|
|
serverArgs,
|
|
|
|
)
|
|
|
|
|
2017-06-08 13:40:51 +00:00
|
|
|
return cmd, cmdChan
|
2017-05-09 14:58:31 +00:00
|
|
|
}
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// prepareKafka creates the topics which will be written to by the tests.
|
|
|
|
func prepareKafka() {
|
2017-09-20 09:59:19 +00:00
|
|
|
err := exe.DeleteTopic(inputTopic)
|
|
|
|
if err != nil {
|
2017-05-09 14:58:31 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
2017-09-20 09:59:19 +00:00
|
|
|
|
|
|
|
if err = exe.CreateTopic(inputTopic); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = exe.DeleteTopic(clientTopic)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = exe.CreateTopic(clientTopic); err != nil {
|
2017-08-02 15:21:35 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
2017-05-10 16:48:35 +00:00
|
|
|
}
|
2017-05-09 14:58:31 +00:00
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
func testSyncServer(syncServerCmdChan chan error, userID, since, want string) {
|
|
|
|
fmt.Printf("==TESTING== testSyncServer(%s,%s)\n", userID, since)
|
2017-06-08 13:40:51 +00:00
|
|
|
sinceQuery := ""
|
|
|
|
if since != "" {
|
|
|
|
sinceQuery = "&since=" + since
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest(
|
|
|
|
"GET",
|
|
|
|
"http://"+syncserverAddr+"/api/_matrix/client/r0/sync?timeout=100&access_token="+userID+sinceQuery,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
testReq := &test.Request{
|
|
|
|
Req: req,
|
|
|
|
WantedStatusCode: 200,
|
|
|
|
WantedBody: test.CanonicalJSONInput([]string{want})[0],
|
2017-05-05 16:59:45 +00:00
|
|
|
}
|
2017-06-08 13:40:51 +00:00
|
|
|
testReq.Run("sync-api", timeout, syncServerCmdChan)
|
2017-05-05 16:59:45 +00:00
|
|
|
}
|
|
|
|
|
2017-05-17 09:25:59 +00:00
|
|
|
func writeToRoomServerLog(indexes ...int) {
|
|
|
|
var roomEvents []string
|
|
|
|
for _, i := range indexes {
|
|
|
|
roomEvents = append(roomEvents, outputRoomEventTestData[i])
|
|
|
|
}
|
2017-06-08 13:40:51 +00:00
|
|
|
if err := exe.WriteToTopic(inputTopic, test.CanonicalJSONInput(roomEvents)); err != nil {
|
2017-05-17 09:25:59 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// Runs a battery of sync server tests against test data in testdata.go
|
|
|
|
// testdata.go has a list of OutputRoomEvents which will be fed into the kafka log which the sync server will consume.
|
|
|
|
// The tests will pause at various points in this list to conduct tests on the /sync responses before continuing.
|
|
|
|
// For ease of understanding, the curl commands used to create the OutputRoomEvents are listed along with each write to kafka.
|
2017-05-05 16:59:45 +00:00
|
|
|
func main() {
|
|
|
|
fmt.Println("==TESTING==", os.Args[0])
|
2017-05-10 16:48:35 +00:00
|
|
|
prepareKafka()
|
|
|
|
cmd, syncServerCmdChan := startSyncServer()
|
2017-09-20 09:59:19 +00:00
|
|
|
// ensure server is dead, only cleaning up so don't care about errors this returns.
|
|
|
|
defer cmd.Process.Kill() // nolint: errcheck
|
2017-05-10 16:48:35 +00:00
|
|
|
|
|
|
|
// $ curl -XPOST -d '{}' "http://localhost:8009/_matrix/client/r0/createRoom?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hello world"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/1?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hello world 2"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/2?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hello world 3"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"name":"Custom Room Name"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.name?access_token=@alice:localhost"
|
2017-05-17 09:25:59 +00:00
|
|
|
writeToRoomServerLog(
|
|
|
|
i0StateRoomCreate, i1StateAliceJoin, i2StatePowerLevels, i3StateJoinRules, i4StateHistoryVisibility,
|
|
|
|
i5AliceMsg, i6AliceMsg, i7AliceMsg, i8StateAliceRoomName,
|
|
|
|
)
|
|
|
|
|
2017-05-11 14:51:35 +00:00
|
|
|
// Make sure initial sync works TODO: prev_batch
|
2017-05-10 16:48:35 +00:00
|
|
|
testSyncServer(syncServerCmdChan, "@alice:localhost", "", `{
|
2017-05-05 16:59:45 +00:00
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
2017-05-10 16:48:35 +00:00
|
|
|
"next_batch": "9",
|
2017-05-05 16:59:45 +00:00
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
2017-05-10 16:48:35 +00:00
|
|
|
"invite": {},
|
2017-05-05 16:59:45 +00:00
|
|
|
"join": {
|
2017-05-10 16:48:35 +00:00
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"ephemeral": {
|
|
|
|
"events": []
|
|
|
|
},
|
2017-05-05 16:59:45 +00:00
|
|
|
"state": {
|
2017-05-10 16:48:35 +00:00
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"timeline": {
|
2017-05-11 14:51:35 +00:00
|
|
|
"events": [`+
|
2017-05-17 09:25:59 +00:00
|
|
|
clientEventTestData[i0StateRoomCreate]+","+
|
|
|
|
clientEventTestData[i1StateAliceJoin]+","+
|
|
|
|
clientEventTestData[i2StatePowerLevels]+","+
|
|
|
|
clientEventTestData[i3StateJoinRules]+","+
|
|
|
|
clientEventTestData[i4StateHistoryVisibility]+","+
|
|
|
|
clientEventTestData[i5AliceMsg]+","+
|
|
|
|
clientEventTestData[i6AliceMsg]+","+
|
|
|
|
clientEventTestData[i7AliceMsg]+","+
|
|
|
|
clientEventTestData[i8StateAliceRoomName]+`],
|
2017-05-10 16:48:35 +00:00
|
|
|
"limited": true,
|
2017-05-05 16:59:45 +00:00
|
|
|
"prev_batch": ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-05-10 16:48:35 +00:00
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
2017-05-11 14:51:35 +00:00
|
|
|
// Make sure alice's rooms don't leak to bob
|
2017-05-10 16:48:35 +00:00
|
|
|
testSyncServer(syncServerCmdChan, "@bob:localhost", "", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "9",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
2017-05-05 16:59:45 +00:00
|
|
|
"invite": {},
|
2017-05-10 16:48:35 +00:00
|
|
|
"join": {},
|
2017-05-05 16:59:45 +00:00
|
|
|
"leave": {}
|
|
|
|
}
|
2017-05-10 16:48:35 +00:00
|
|
|
}`)
|
2017-05-11 14:51:35 +00:00
|
|
|
// Make sure polling with an up-to-date token returns nothing new
|
|
|
|
testSyncServer(syncServerCmdChan, "@alice:localhost", "9", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "9",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
2017-05-10 16:48:35 +00:00
|
|
|
|
|
|
|
// $ curl -XPUT -d '{"membership":"join"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@bob:localhost?access_token=@bob:localhost"
|
2017-05-17 09:25:59 +00:00
|
|
|
writeToRoomServerLog(i9StateBobJoin)
|
2017-05-11 14:51:35 +00:00
|
|
|
|
|
|
|
// Make sure alice sees it TODO: prev_batch
|
|
|
|
testSyncServer(syncServerCmdChan, "@alice:localhost", "9", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "10",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"ephemeral": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"state": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"limited": false,
|
|
|
|
"prev_batch": "",
|
2017-05-17 09:25:59 +00:00
|
|
|
"events": [`+clientEventTestData[i9StateBobJoin]+`]
|
2017-05-11 14:51:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
2017-05-12 15:56:17 +00:00
|
|
|
// Make sure bob sees the room AND all the current room state TODO: history visibility
|
|
|
|
testSyncServer(syncServerCmdChan, "@bob:localhost", "9", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "10",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"ephemeral": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"state": {
|
|
|
|
"events": [`+
|
2017-05-17 09:25:59 +00:00
|
|
|
clientEventTestData[i0StateRoomCreate]+","+
|
|
|
|
clientEventTestData[i1StateAliceJoin]+","+
|
|
|
|
clientEventTestData[i2StatePowerLevels]+","+
|
|
|
|
clientEventTestData[i3StateJoinRules]+","+
|
|
|
|
clientEventTestData[i4StateHistoryVisibility]+","+
|
|
|
|
clientEventTestData[i8StateAliceRoomName]+`]
|
2017-05-12 15:56:17 +00:00
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"limited": false,
|
|
|
|
"prev_batch": "",
|
|
|
|
"events": [`+
|
2017-05-17 09:25:59 +00:00
|
|
|
clientEventTestData[i9StateBobJoin]+`]
|
2017-05-12 15:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hello alice"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/1?access_token=@bob:localhost"
|
2017-05-17 09:25:59 +00:00
|
|
|
writeToRoomServerLog(i10BobMsg)
|
|
|
|
|
2017-05-11 14:51:35 +00:00
|
|
|
// Make sure alice can see everything around the join point for bob TODO: prev_batch
|
|
|
|
testSyncServer(syncServerCmdChan, "@alice:localhost", "7", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "11",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"ephemeral": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"state": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"limited": false,
|
|
|
|
"prev_batch": "",
|
|
|
|
"events": [`+
|
2017-05-17 09:25:59 +00:00
|
|
|
clientEventTestData[i7AliceMsg]+","+
|
|
|
|
clientEventTestData[i8StateAliceRoomName]+","+
|
|
|
|
clientEventTestData[i9StateBobJoin]+","+
|
|
|
|
clientEventTestData[i10BobMsg]+`]
|
2017-05-11 14:51:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// $ curl -XPUT -d '{"name":"A Different Custom Room Name"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.name?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hello bob"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/2?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"invite"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@charlie:localhost?access_token=@bob:localhost"
|
2017-05-17 09:25:59 +00:00
|
|
|
writeToRoomServerLog(i11StateAliceRoomName, i12AliceMsg, i13StateBobInviteCharlie)
|
2017-05-15 16:41:54 +00:00
|
|
|
|
|
|
|
// Make sure charlie sees the invite both with and without a ?since= token
|
|
|
|
// TODO: Invite state should include the invite event and the room name.
|
|
|
|
charlieInviteData := `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "14",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"invite_state": {
|
|
|
|
"events": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"join": {},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`
|
|
|
|
testSyncServer(syncServerCmdChan, "@charlie:localhost", "7", charlieInviteData)
|
|
|
|
testSyncServer(syncServerCmdChan, "@charlie:localhost", "", charlieInviteData)
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// $ curl -XPUT -d '{"membership":"join"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@charlie:localhost?access_token=@charlie:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"not charlie..."}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"leave"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@charlie:localhost?access_token=@alice:localhost"
|
2017-05-17 15:21:27 +00:00
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"why did you kick charlie"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@bob:localhost"
|
|
|
|
writeToRoomServerLog(i14StateCharlieJoin, i15AliceMsg, i16StateAliceKickCharlie, i17BobMsg)
|
2017-05-17 09:25:59 +00:00
|
|
|
|
|
|
|
// Check transitions to leave work
|
|
|
|
testSyncServer(syncServerCmdChan, "@charlie:localhost", "15", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
2017-05-17 15:21:27 +00:00
|
|
|
"next_batch": "18",
|
2017-05-17 09:25:59 +00:00
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {},
|
|
|
|
"leave": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"state": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"limited": false,
|
|
|
|
"prev_batch": "",
|
|
|
|
"events": [`+
|
|
|
|
clientEventTestData[i15AliceMsg]+","+
|
|
|
|
clientEventTestData[i16StateAliceKickCharlie]+`]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
|
|
|
// Test joining and leaving the same room in a single /sync request puts the room in the 'leave' section.
|
|
|
|
// TODO: Use an earlier since value to assert that the /sync response doesn't leak messages
|
|
|
|
// from before charlie was joined to the room. Currently it does leak because RecentEvents doesn't
|
|
|
|
// take membership into account.
|
|
|
|
testSyncServer(syncServerCmdChan, "@charlie:localhost", "14", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
2017-05-17 15:21:27 +00:00
|
|
|
"next_batch": "18",
|
2017-05-17 09:25:59 +00:00
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {},
|
|
|
|
"leave": {
|
|
|
|
"!PjrbIMW2cIiaYF4t:localhost": {
|
|
|
|
"state": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"limited": false,
|
|
|
|
"prev_batch": "",
|
|
|
|
"events": [`+
|
|
|
|
clientEventTestData[i14StateCharlieJoin]+","+
|
|
|
|
clientEventTestData[i15AliceMsg]+","+
|
|
|
|
clientEventTestData[i16StateAliceKickCharlie]+`]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// $ curl -XPUT -d '{"name":"No Charlies"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.name?access_token=@alice:localhost"
|
2017-05-17 15:21:27 +00:00
|
|
|
writeToRoomServerLog(i18StateAliceRoomName)
|
2017-05-17 09:25:59 +00:00
|
|
|
|
|
|
|
// Check that users don't see state changes in rooms after they have left
|
|
|
|
testSyncServer(syncServerCmdChan, "@charlie:localhost", "17", `{
|
|
|
|
"account_data": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"next_batch": "19",
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {},
|
|
|
|
"leave": {}
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
2017-05-10 16:48:35 +00:00
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"whatever"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@bob:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"leave"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@bob:localhost?access_token=@bob:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"im alone now"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"invite"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@bob:localhost?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"leave"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@bob:localhost?access_token=@bob:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"so alone"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"name":"Everyone welcome"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.name?access_token=@alice:localhost"
|
|
|
|
// $ curl -XPUT -d '{"membership":"join"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/state/m.room.member/@charlie:localhost?access_token=@charlie:localhost"
|
|
|
|
// $ curl -XPUT -d '{"msgtype":"m.text","body":"hiiiii"}' "http://localhost:8009/_matrix/client/r0/rooms/%21PjrbIMW2cIiaYF4t:localhost/send/m.room.message/3?access_token=@charlie:localhost"
|
2017-05-05 16:59:45 +00:00
|
|
|
}
|