mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	* Move some files into models' sub packages * Move functions * merge main branch * Fix check * fix check * Fix some tests * Fix lint * Fix lint * Revert lint changes * Fix error comments * Fix lint Co-authored-by: 6543 <6543@obermui.de>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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"
 | 
						|
	"time"
 | 
						|
 | 
						|
	activities_model "code.gitea.io/gitea/models/activities"
 | 
						|
	"code.gitea.io/gitea/modules/timeutil"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestUserHeatmap(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
	adminUsername := "user1"
 | 
						|
	normalUsername := "user2"
 | 
						|
	token := getUserToken(t, adminUsername)
 | 
						|
 | 
						|
	fakeNow := time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local)
 | 
						|
	timeutil.Set(fakeNow)
 | 
						|
	defer timeutil.Unset()
 | 
						|
 | 
						|
	urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap?token=%s", normalUsername, token)
 | 
						|
	req := NewRequest(t, "GET", urlStr)
 | 
						|
	resp := MakeRequest(t, req, http.StatusOK)
 | 
						|
	var heatmap []*activities_model.UserHeatmapData
 | 
						|
	DecodeJSON(t, resp, &heatmap)
 | 
						|
	var dummyheatmap []*activities_model.UserHeatmapData
 | 
						|
	dummyheatmap = append(dummyheatmap, &activities_model.UserHeatmapData{Timestamp: 1603227600, Contributions: 1})
 | 
						|
 | 
						|
	assert.Equal(t, dummyheatmap, heatmap)
 | 
						|
}
 |