2018-10-22 22:57:42 -04:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-10-22 22:57:42 -04:00
|
|
|
|
2022-09-02 15:18:23 -04:00
|
|
|
package integration
|
2018-10-22 22:57:42 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
2021-10-21 02:37:40 -04:00
|
|
|
"time"
|
2019-08-23 12:40:30 -04:00
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-10-21 02:37:40 -04:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2022-09-02 15:18:23 -04:00
|
|
|
"code.gitea.io/gitea/tests"
|
2019-08-23 12:40:30 -04:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2018-10-22 22:57:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUserHeatmap(t *testing.T) {
|
2022-09-02 15:18:23 -04:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2018-10-22 22:57:42 -04:00
|
|
|
adminUsername := "user1"
|
|
|
|
normalUsername := "user2"
|
2022-04-08 00:22:10 -04:00
|
|
|
token := getUserToken(t, adminUsername)
|
2018-10-22 22:57:42 -04:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
fakeNow := time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local)
|
2021-10-21 02:37:40 -04:00
|
|
|
timeutil.Set(fakeNow)
|
|
|
|
defer timeutil.Unset()
|
|
|
|
|
2022-04-08 00:22:10 -04:00
|
|
|
urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap?token=%s", normalUsername, token)
|
2018-10-22 22:57:42 -04:00
|
|
|
req := NewRequest(t, "GET", urlStr)
|
2022-04-08 00:22:10 -04:00
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2022-08-24 22:31:57 -04:00
|
|
|
var heatmap []*activities_model.UserHeatmapData
|
2018-10-22 22:57:42 -04:00
|
|
|
DecodeJSON(t, resp, &heatmap)
|
2022-08-24 22:31:57 -04:00
|
|
|
var dummyheatmap []*activities_model.UserHeatmapData
|
|
|
|
dummyheatmap = append(dummyheatmap, &activities_model.UserHeatmapData{Timestamp: 1603227600, Contributions: 1})
|
2018-10-22 22:57:42 -04:00
|
|
|
|
|
|
|
assert.Equal(t, dummyheatmap, heatmap)
|
|
|
|
}
|