Files
Atay-Makhzan/integrations/api_user_heatmap_test.go
T

39 lines
1.0 KiB
Go
Raw Normal View History

2018-10-23 04:57:42 +02:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.package models
package integrations
import (
"fmt"
"net/http"
"testing"
2021-10-21 14:37:40 +08:00
"time"
2019-08-23 09:40:30 -07:00
"code.gitea.io/gitea/models"
2021-10-21 14:37:40 +08:00
"code.gitea.io/gitea/modules/timeutil"
2019-08-23 09:40:30 -07:00
"github.com/stretchr/testify/assert"
2018-10-23 04:57:42 +02:00
)
func TestUserHeatmap(t *testing.T) {
2019-11-25 23:21:37 +00:00
defer prepareTestEnv(t)()
2018-10-23 04:57:42 +02:00
adminUsername := "user1"
normalUsername := "user2"
session := loginUser(t, adminUsername)
2021-10-21 14:37:40 +08:00
var fakeNow = time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local)
timeutil.Set(fakeNow)
defer timeutil.Unset()
2018-10-23 04:57:42 +02:00
urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap", normalUsername)
req := NewRequest(t, "GET", urlStr)
resp := session.MakeRequest(t, req, http.StatusOK)
var heatmap []*models.UserHeatmapData
DecodeJSON(t, resp, &heatmap)
var dummyheatmap []*models.UserHeatmapData
2021-06-25 12:59:25 -04:00
dummyheatmap = append(dummyheatmap, &models.UserHeatmapData{Timestamp: 1603227600, Contributions: 1})
2018-10-23 04:57:42 +02:00
assert.Equal(t, dummyheatmap, heatmap)
}