2021-09-20 19:46:51 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-20 19:46:51 +00:00
|
|
|
|
|
|
|
//go:build !gogit
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepository_GetLanguageStats(t *testing.T) {
|
|
|
|
repoPath := filepath.Join(testReposDir, "language_stats_repo")
|
2022-03-29 19:13:41 +00:00
|
|
|
gitRepo, err := openRepositoryWithDefaultContext(repoPath)
|
2021-09-20 19:46:51 +00:00
|
|
|
if !assert.NoError(t, err) {
|
|
|
|
t.Fatal()
|
|
|
|
}
|
|
|
|
defer gitRepo.Close()
|
|
|
|
|
|
|
|
stats, err := gitRepo.GetLanguageStats("8fee858da5796dfb37704761701bb8e800ad9ef3")
|
|
|
|
if !assert.NoError(t, err) {
|
|
|
|
t.Fatal()
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.EqualValues(t, map[string]int64{
|
|
|
|
"Python": 134,
|
|
|
|
"Java": 112,
|
|
|
|
}, stats)
|
|
|
|
}
|
2023-05-24 19:37:36 +00:00
|
|
|
|
|
|
|
func TestMergeLanguageStats(t *testing.T) {
|
|
|
|
assert.EqualValues(t, map[string]int64{
|
|
|
|
"PHP": 1,
|
|
|
|
"python": 10,
|
|
|
|
"JAVA": 700,
|
|
|
|
}, mergeLanguageStats(map[string]int64{
|
|
|
|
"PHP": 1,
|
|
|
|
"python": 10,
|
|
|
|
"Java": 100,
|
|
|
|
"java": 200,
|
|
|
|
"JAVA": 400,
|
|
|
|
}))
|
|
|
|
}
|