summaryrefslogtreecommitdiffstats
path: root/store/sqlstore/command_store_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-06 11:08:59 -0700
committerGitHub <noreply@github.com>2017-10-06 11:08:59 -0700
commit70e5f00241473c27a3008959ce08832c75e76ba8 (patch)
tree3afd074964c9220cc4a87210286a13dfd38c61d0 /store/sqlstore/command_store_test.go
parentd1958bdc49cd10277ca2e27bb2eea499c5994954 (diff)
downloadchat-70e5f00241473c27a3008959ce08832c75e76ba8.tar.gz
chat-70e5f00241473c27a3008959ce08832c75e76ba8.tar.bz2
chat-70e5f00241473c27a3008959ce08832c75e76ba8.zip
store/storetest package (#7588)
* prerequisites * storetest package
Diffstat (limited to 'store/sqlstore/command_store_test.go')
-rw-r--r--store/sqlstore/command_store_test.go251
1 files changed, 4 insertions, 247 deletions
diff --git a/store/sqlstore/command_store_test.go b/store/sqlstore/command_store_test.go
index 407eae72e..ee8c00082 100644
--- a/store/sqlstore/command_store_test.go
+++ b/store/sqlstore/command_store_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package sqlstore
@@ -6,252 +6,9 @@ package sqlstore
import (
"testing"
- "github.com/mattermost/mattermost-server/model"
- "github.com/mattermost/mattermost-server/store"
+ "github.com/mattermost/mattermost-server/store/storetest"
)
-func TestCommandStoreSave(t *testing.T) {
- ss := Setup()
-
- o1 := model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- if err := (<-ss.Command().Save(&o1)).Err; err != nil {
- t.Fatal("couldn't save item", err)
- }
-
- if err := (<-ss.Command().Save(&o1)).Err; err == nil {
- t.Fatal("shouldn't be able to update from save")
- }
-}
-
-func TestCommandStoreGet(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().Get(o1.Id); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(*model.Command).CreateAt != o1.CreateAt {
- t.Fatal("invalid returned command")
- }
- }
-
- if err := (<-ss.Command().Get("123")).Err; err == nil {
- t.Fatal("Missing id should have failed")
- }
-}
-
-func TestCommandStoreGetByTeam(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().GetByTeam(o1.TeamId); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.([]*model.Command)[0].CreateAt != o1.CreateAt {
- t.Fatal("invalid returned command")
- }
- }
-
- if result := <-ss.Command().GetByTeam("123"); result.Err != nil {
- t.Fatal(result.Err)
- } else {
- if len(result.Data.([]*model.Command)) != 0 {
- t.Fatal("no commands should have returned")
- }
- }
-}
-
-func TestCommandStoreGetByTrigger(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger1"
-
- o2 := &model.Command{}
- o2.CreatorId = model.NewId()
- o2.Method = model.COMMAND_METHOD_POST
- o2.TeamId = model.NewId()
- o2.URL = "http://nowhere.com/"
- o2.Trigger = "trigger1"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
- o2 = (<-ss.Command().Save(o2)).Data.(*model.Command)
-
- if r1 := <-ss.Command().GetByTrigger(o1.TeamId, o1.Trigger); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(*model.Command).Id != o1.Id {
- t.Fatal("invalid returned command")
- }
- }
-
- store.Must(ss.Command().Delete(o1.Id, model.GetMillis()))
-
- if result := <-ss.Command().GetByTrigger(o1.TeamId, o1.Trigger); result.Err == nil {
- t.Fatal("no commands should have returned")
- }
-}
-
-func TestCommandStoreDelete(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().Get(o1.Id); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(*model.Command).CreateAt != o1.CreateAt {
- t.Fatal("invalid returned command")
- }
- }
-
- if r2 := <-ss.Command().Delete(o1.Id, model.GetMillis()); r2.Err != nil {
- t.Fatal(r2.Err)
- }
-
- if r3 := (<-ss.Command().Get(o1.Id)); r3.Err == nil {
- t.Log(r3.Data)
- t.Fatal("Missing id should have failed")
- }
-}
-
-func TestCommandStoreDeleteByTeam(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().Get(o1.Id); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(*model.Command).CreateAt != o1.CreateAt {
- t.Fatal("invalid returned command")
- }
- }
-
- if r2 := <-ss.Command().PermanentDeleteByTeam(o1.TeamId); r2.Err != nil {
- t.Fatal(r2.Err)
- }
-
- if r3 := (<-ss.Command().Get(o1.Id)); r3.Err == nil {
- t.Log(r3.Data)
- t.Fatal("Missing id should have failed")
- }
-}
-
-func TestCommandStoreDeleteByUser(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().Get(o1.Id); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(*model.Command).CreateAt != o1.CreateAt {
- t.Fatal("invalid returned command")
- }
- }
-
- if r2 := <-ss.Command().PermanentDeleteByUser(o1.CreatorId); r2.Err != nil {
- t.Fatal(r2.Err)
- }
-
- if r3 := (<-ss.Command().Get(o1.Id)); r3.Err == nil {
- t.Log(r3.Data)
- t.Fatal("Missing id should have failed")
- }
-}
-
-func TestCommandStoreUpdate(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- o1.Token = model.NewId()
-
- if r2 := <-ss.Command().Update(o1); r2.Err != nil {
- t.Fatal(r2.Err)
- }
-}
-
-func TestCommandCount(t *testing.T) {
- ss := Setup()
-
- o1 := &model.Command{}
- o1.CreatorId = model.NewId()
- o1.Method = model.COMMAND_METHOD_POST
- o1.TeamId = model.NewId()
- o1.URL = "http://nowhere.com/"
- o1.Trigger = "trigger"
-
- o1 = (<-ss.Command().Save(o1)).Data.(*model.Command)
-
- if r1 := <-ss.Command().AnalyticsCommandCount(""); r1.Err != nil {
- t.Fatal(r1.Err)
- } else {
- if r1.Data.(int64) == 0 {
- t.Fatal("should be at least 1 command")
- }
- }
-
- if r2 := <-ss.Command().AnalyticsCommandCount(o1.TeamId); r2.Err != nil {
- t.Fatal(r2.Err)
- } else {
- if r2.Data.(int64) != 1 {
- t.Fatal("should be 1 command")
- }
- }
+func TestCommandStore(t *testing.T) {
+ StoreTest(t, storetest.TestCommandStore)
}