summaryrefslogtreecommitdiffstats
path: root/api/command_expand_collapse_test.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-06-06 13:41:54 -0400
committerCorey Hulen <corey@hulen.com>2016-06-06 10:41:54 -0700
commit1e245f19c7884e293698fe2e8cd7f46d4dac54c9 (patch)
treeacdedf465346c9ad8b416c3e4604a9979e829aea /api/command_expand_collapse_test.go
parent629b49a119cf58451a80e4667a6f876bea00e6aa (diff)
downloadchat-1e245f19c7884e293698fe2e8cd7f46d4dac54c9.tar.gz
chat-1e245f19c7884e293698fe2e8cd7f46d4dac54c9.tar.bz2
chat-1e245f19c7884e293698fe2e8cd7f46d4dac54c9.zip
PLT-3114 Moved preview collapse out of pre-release features (#3206)
* 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
Diffstat (limited to 'api/command_expand_collapse_test.go')
-rw-r--r--api/command_expand_collapse_test.go47
1 files changed, 47 insertions, 0 deletions
diff --git a/api/command_expand_collapse_test.go b/api/command_expand_collapse_test.go
new file mode 100644
index 000000000..2303b2fed
--- /dev/null
+++ b/api/command_expand_collapse_test.go
@@ -0,0 +1,47 @@
+// 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")
+ }
+}