blob: 4ad20175eb3603bd354fe23ddc7b264c9ccc4c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package api4
import (
"testing"
"github.com/mattermost/mattermost-server/model"
)
func TestGetWebrtcToken(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
th := Setup().InitBasic().InitSystemAdmin()
defer th.TearDown()
Client := th.Client
enableWebrtc := *th.App.Config().WebrtcSettings.Enable
defer func() {
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.WebrtcSettings.Enable = enableWebrtc })
}()
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.WebrtcSettings.Enable = false })
_, resp := Client.GetWebrtcToken()
CheckNotImplementedStatus(t, resp)
Client.Logout()
_, resp = Client.GetWebrtcToken()
CheckUnauthorizedStatus(t, resp)
}
|