2018-10-22 20:57:42 -06: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 00:37:40 -06:00
|
|
|
"time"
|
2019-08-23 10:40:30 -06:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-10-21 00:37:40 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2019-08-23 10:40:30 -06:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2018-10-22 20:57:42 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUserHeatmap(t *testing.T) {
|
2019-11-25 16:21:37 -07:00
|
|
|
defer prepareTestEnv(t)()
|
2018-10-22 20:57:42 -06:00
|
|
|
adminUsername := "user1"
|
|
|
|
normalUsername := "user2"
|
2022-04-07 22:22:10 -06:00
|
|
|
token := getUserToken(t, adminUsername)
|
2018-10-22 20:57:42 -06:00
|
|
|
|
2022-01-20 10:46:10 -07:00
|
|
|
fakeNow := time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local)
|
2021-10-21 00:37:40 -06:00
|
|
|
timeutil.Set(fakeNow)
|
|
|
|
defer timeutil.Unset()
|
|
|
|
|
2022-04-07 22:22:10 -06:00
|
|
|
urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap?token=%s", normalUsername, token)
|
2018-10-22 20:57:42 -06:00
|
|
|
req := NewRequest(t, "GET", urlStr)
|
2022-04-07 22:22:10 -06:00
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2018-10-22 20:57:42 -06:00
|
|
|
var heatmap []*models.UserHeatmapData
|
|
|
|
DecodeJSON(t, resp, &heatmap)
|
|
|
|
var dummyheatmap []*models.UserHeatmapData
|
2021-06-25 10:59:25 -06:00
|
|
|
dummyheatmap = append(dummyheatmap, &models.UserHeatmapData{Timestamp: 1603227600, Contributions: 1})
|
2018-10-22 20:57:42 -06:00
|
|
|
|
|
|
|
assert.Equal(t, dummyheatmap, heatmap)
|
|
|
|
}
|