2020-02-11 09:34:17 +00:00
|
|
|
// Copyright 2020 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 stats
|
|
|
|
|
|
|
|
import (
|
2022-03-27 23:01:53 +00:00
|
|
|
"context"
|
2020-02-11 09:34:17 +00:00
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-03-27 23:01:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/queue"
|
2020-02-11 09:34:17 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2021-12-15 05:39:34 +00:00
|
|
|
_ "code.gitea.io/gitea/models"
|
|
|
|
|
2020-02-11 09:34:17 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2021-11-17 12:34:35 +00:00
|
|
|
"gopkg.in/ini.v1"
|
2020-02-11 09:34:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 14:36:47 +00:00
|
|
|
unittest.MainTest(m, filepath.Join("..", "..", ".."))
|
2020-02-11 09:34:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoStatsIndex(t *testing.T) {
|
2022-03-27 23:01:53 +00:00
|
|
|
if err := git.Init(context.Background()); !assert.NoError(t, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2020-02-11 09:34:17 +00:00
|
|
|
setting.Cfg = ini.Empty()
|
|
|
|
|
|
|
|
setting.NewQueueService()
|
|
|
|
|
|
|
|
err := Init()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repo, err := repo_model.GetRepositoryByID(1)
|
2020-02-11 09:34:17 +00:00
|
|
|
assert.NoError(t, err)
|
2022-03-27 23:01:53 +00:00
|
|
|
|
|
|
|
err = UpdateRepoIndexer(repo)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
queue.GetManager().FlushAll(context.Background(), 5*time.Second)
|
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
status, err := repo_model.GetIndexerStatus(repo, repo_model.RepoIndexerTypeStats)
|
2020-05-30 07:46:15 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "65f1bf27bc3bf70f64657658635e66094edbcb4d", status.CommitSha)
|
2021-12-10 01:27:50 +00:00
|
|
|
langs, err := repo_model.GetTopLanguageStats(repo, 5)
|
2020-02-11 09:34:17 +00:00
|
|
|
assert.NoError(t, err)
|
2020-05-30 22:58:55 +00:00
|
|
|
assert.Empty(t, langs)
|
2020-02-11 09:34:17 +00:00
|
|
|
}
|