summaryrefslogtreecommitdiffstats
path: root/api4/apitestlib.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-06-08 17:04:17 +0200
committerGitHub <noreply@github.com>2018-06-08 17:04:17 +0200
commit3bae67489f53ad6501d3632cfa8847b2d09ebaff (patch)
tree8858e3399e782271673eed2e9e79bb9e51919260 /api4/apitestlib.go
parente09b3c566b2de1da1d916d3e209c96d43be739e2 (diff)
downloadchat-3bae67489f53ad6501d3632cfa8847b2d09ebaff.tar.gz
chat-3bae67489f53ad6501d3632cfa8847b2d09ebaff.tar.bz2
chat-3bae67489f53ad6501d3632cfa8847b2d09ebaff.zip
Relese5.0 merge master 20180608 (#8933)
* Add missing diagnostics (#8911) * Update diagnostics.go * Update diagnostics.go * Fix push notification styling backwards compatibility (#8913) * MM-10803: remove premature user sanitization on deactivation (#8926) * remove unused UpdateNonSSOUserActive * MM-10803: stop prematurely sanitizing users on deactivate This change was preceded by the removal of UpdateNonSSOUserActive to ensure there are no APIs relying on the sanitized return value. * MM-10803: test websocket events after UpdateUserActive * MM-10264: Adds system scheme to permissions import/export. (#8924) * MM-10264: Adds system scheme to permissions import/export. * MM-10264: Switches to more likely unique name. * MM-10264: Changed collision prevention string. * MM-10264: Rolls back created schemes in all error cases. * MM-10264: Test fix for more rollback cases.
Diffstat (limited to 'api4/apitestlib.go')
-rw-r--r--api4/apitestlib.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api4/apitestlib.go b/api4/apitestlib.go
index 22084a1d6..8293a03f7 100644
--- a/api4/apitestlib.go
+++ b/api4/apitestlib.go
@@ -271,6 +271,10 @@ func (me *TestHelper) CreateWebSocketClient() (*model.WebSocketClient, *model.Ap
return model.NewWebSocketClient4(fmt.Sprintf("ws://localhost:%v", me.App.Srv.ListenAddr.Port), me.Client.AuthToken)
}
+func (me *TestHelper) CreateWebSocketSystemAdminClient() (*model.WebSocketClient, *model.AppError) {
+ return model.NewWebSocketClient4(fmt.Sprintf("ws://localhost:%v", me.App.Srv.ListenAddr.Port), me.SystemAdminClient.AuthToken)
+}
+
func (me *TestHelper) CreateUser() *model.User {
return me.CreateUserWithClient(me.Client)
}