mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			875 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			875 B
		
	
	
	
		
			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 (
 | 
						|
	"code.gitea.io/gitea/models"
 | 
						|
	"fmt"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestUserHeatmap(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
	adminUsername := "user1"
 | 
						|
	normalUsername := "user2"
 | 
						|
	session := loginUser(t, adminUsername)
 | 
						|
 | 
						|
	urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap", normalUsername)
 | 
						|
	req := NewRequest(t, "GET", urlStr)
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	var heatmap []*models.UserHeatmapData
 | 
						|
	DecodeJSON(t, resp, &heatmap)
 | 
						|
	var dummyheatmap []*models.UserHeatmapData
 | 
						|
	dummyheatmap = append(dummyheatmap, &models.UserHeatmapData{Timestamp: 1571616000, Contributions: 1})
 | 
						|
 | 
						|
	assert.Equal(t, dummyheatmap, heatmap)
 | 
						|
}
 |