Files
Atay-Makhzan/tests/integration/api_user_heatmap_test.go
T

40 lines
1.1 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
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"
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"
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)
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)
}