summaryrefslogtreecommitdiffstats
path: root/api/admin_test.go
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-11-28 14:56:30 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-11-28 16:26:24 +0100
commit7ac97273855e5e68d9e4b10e96d5466201fb8871 (patch)
tree4411424be6281887a713d20ee383906e59b75168 /api/admin_test.go
parent42a001c4e26acaebb7bade2a9b45428578b04164 (diff)
downloadchat-7ac97273855e5e68d9e4b10e96d5466201fb8871.tar.gz
chat-7ac97273855e5e68d9e4b10e96d5466201fb8871.tar.bz2
chat-7ac97273855e5e68d9e4b10e96d5466201fb8871.zip
PLT-1035: Remove last data point in graphs on #statistics page
Diffstat (limited to 'api/admin_test.go')
-rw-r--r--api/admin_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/api/admin_test.go b/api/admin_test.go
index 0db5caa4c..0a1682a99 100644
--- a/api/admin_test.go
+++ b/api/admin_test.go
@@ -235,6 +235,10 @@ func TestGetPostCount(t *testing.T) {
post1 := &model.Post{ChannelId: channel1.Id, Message: "a" + model.NewId() + "a"}
post1 = Client.Must(Client.CreatePost(post1)).Data.(*model.Post)
+ // manually update creation time, since it's always set to 0 upon saving and we only retrieve posts < today
+ Srv.Store.(*store.SqlStore).GetMaster().Exec("UPDATE Posts SET CreateAt = :CreateAt WHERE ChannelId = :ChannelId",
+ map[string]interface{}{"ChannelId": channel1.Id, "CreateAt": utils.MillisFromTime(utils.Yesterday())})
+
if _, err := Client.GetAnalytics(team.Id, "post_counts_day"); err == nil {
t.Fatal("Shouldn't have permissions")
}
@@ -276,6 +280,10 @@ func TestUserCountsWithPostsByDay(t *testing.T) {
post1 := &model.Post{ChannelId: channel1.Id, Message: "a" + model.NewId() + "a"}
post1 = Client.Must(Client.CreatePost(post1)).Data.(*model.Post)
+ // manually update creation time, since it's always set to 0 upon saving and we only retrieve posts < today
+ Srv.Store.(*store.SqlStore).GetMaster().Exec("UPDATE Posts SET CreateAt = :CreateAt WHERE ChannelId = :ChannelId",
+ map[string]interface{}{"ChannelId": channel1.Id, "CreateAt": utils.MillisFromTime(utils.Yesterday())})
+
if _, err := Client.GetAnalytics(team.Id, "user_counts_with_posts_day"); err == nil {
t.Fatal("Shouldn't have permissions")
}