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"
token := getUserToken(t, adminUsername)
2018-10-23 04:57:42 +02:00
2022-01-20 18:46:10 +01:00
fakeNow := time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local)
2021-10-21 14:37:40 +08:00
timeutil.Set(fakeNow)
defer timeutil.Unset()
urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap?token=%s", normalUsername, token)
2018-10-23 04:57:42 +02:00
req := NewRequest(t, "GET", urlStr)
resp := MakeRequest(t, req, http.StatusOK)
2018-10-23 04:57:42 +02:00
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)
}