Files

40 lines
1.1 KiB
Go
Raw Permalink Normal View History

2018-10-23 04:57:42 +02:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2018-10-23 04:57:42 +02:00
2022-09-02 15:18:23 -04:00
package integration
2018-10-23 04:57:42 +02:00
import (
"fmt"
"net/http"
"testing"
2021-10-21 14:37:40 +08:00
"time"
2019-08-23 09:40:30 -07:00
activities_model "code.gitea.io/gitea/models/activities"
2023-06-04 14:57:16 -04:00
auth_model "code.gitea.io/gitea/models/auth"
2021-10-21 14:37:40 +08:00
"code.gitea.io/gitea/modules/timeutil"
2022-09-02 15:18:23 -04:00
"code.gitea.io/gitea/tests"
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) {
2022-09-02 15:18:23 -04:00
defer tests.PrepareTestEnv(t)()
2018-10-23 04:57:42 +02:00
adminUsername := "user1"
normalUsername := "user2"
2023-06-04 14:57:16 -04:00
token := getUserToken(t, adminUsername, auth_model.AccessTokenScopeReadUser)
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)
2023-12-28 18:09:57 +08:00
timeutil.MockSet(fakeNow)
defer timeutil.MockUnset()
2021-10-21 14:37:40 +08:00
req := NewRequest(t, "GET", fmt.Sprintf("/api/v1/users/%s/heatmap", normalUsername)).
AddTokenAuth(token)
resp := MakeRequest(t, req, http.StatusOK)
var heatmap []*activities_model.UserHeatmapData
2018-10-23 04:57:42 +02:00
DecodeJSON(t, resp, &heatmap)
var dummyheatmap []*activities_model.UserHeatmapData
dummyheatmap = append(dummyheatmap, &activities_model.UserHeatmapData{Timestamp: 1603227600, Contributions: 1})
2018-10-23 04:57:42 +02:00
assert.Equal(t, dummyheatmap, heatmap)
}