summaryrefslogtreecommitdiffstats
path: root/store/sql_command_store_test.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2016-02-25 12:32:46 -0500
committerJoramWilander <jwawilander@gmail.com>2016-03-01 10:46:30 -0500
commit8239c68cf323e4bb20007d2b456336becead273d (patch)
tree3422ed0946afafa47d6649e09f6f09ee71692363 /store/sql_command_store_test.go
parent8aa4e28932ec43090ca6b481929fafbe0119a660 (diff)
downloadchat-8239c68cf323e4bb20007d2b456336becead273d.tar.gz
chat-8239c68cf323e4bb20007d2b456336becead273d.tar.bz2
chat-8239c68cf323e4bb20007d2b456336becead273d.zip
Refactor and modularize analytics on the client
Diffstat (limited to 'store/sql_command_store_test.go')
-rw-r--r--store/sql_command_store_test.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/store/sql_command_store_test.go b/store/sql_command_store_test.go
index b4610d4aa..644ebc9ae 100644
--- a/store/sql_command_store_test.go
+++ b/store/sql_command_store_test.go
@@ -153,3 +153,31 @@ func TestCommandStoreUpdate(t *testing.T) {
t.Fatal(r2.Err)
}
}
+
+func TestCommandCount(t *testing.T) {
+ Setup()
+
+ o1 := &model.Command{}
+ o1.CreatorId = model.NewId()
+ o1.Method = model.COMMAND_METHOD_POST
+ o1.TeamId = model.NewId()
+ o1.URL = "http://nowhere.com/"
+
+ o1 = (<-store.Command().Save(o1)).Data.(*model.Command)
+
+ if r1 := <-store.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 := <-store.Command().AnalyticsCommandCount(o1.TeamId); r2.Err != nil {
+ t.Fatal(r2.Err)
+ } else {
+ if r2.Data.(int64) != 1 {
+ t.Fatal("should be 1 command")
+ }
+ }
+}