mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Added user setting to auto collapse image previews * Added slash commands for collapsing/expanding image previews * Added translation strings for collapse setting * Add default props for preview collapse setting
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/mattermost/platform/model"
|
|
)
|
|
|
|
func TestExpandCommand(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
Client := th.BasicClient
|
|
channel := th.BasicChannel
|
|
|
|
r1 := Client.Must(Client.Command(channel.Id, "/expand", false)).Data.(*model.CommandResponse)
|
|
if r1 == nil {
|
|
t.Fatal("Command failed to execute")
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
p1 := Client.Must(Client.GetPreference(model.PREFERENCE_CATEGORY_DISPLAY_SETTINGS, model.PREFERENCE_NAME_COLLAPSE_SETTING)).Data.(*model.Preference)
|
|
if p1.Value != "false" {
|
|
t.Fatal("preference not updated correctly")
|
|
}
|
|
}
|
|
|
|
func TestCollapseCommand(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
Client := th.BasicClient
|
|
channel := th.BasicChannel
|
|
|
|
r1 := Client.Must(Client.Command(channel.Id, "/collapse", false)).Data.(*model.CommandResponse)
|
|
if r1 == nil {
|
|
t.Fatal("Command failed to execute")
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
p1 := Client.Must(Client.GetPreference(model.PREFERENCE_CATEGORY_DISPLAY_SETTINGS, model.PREFERENCE_NAME_COLLAPSE_SETTING)).Data.(*model.Preference)
|
|
if p1.Value != "true" {
|
|
t.Fatal("preference not updated correctly")
|
|
}
|
|
}
|