c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
77 lines
2.4 KiB
Go
77 lines
2.4 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
api "git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/structs"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/tests"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestTopicSearch(t *testing.T) {
|
|
defer tests.PrepareTestEnv(t)()
|
|
searchURL, _ := url.Parse("/explore/topics/search")
|
|
|
|
// search all topics
|
|
res := MakeRequest(t, NewRequest(t, "GET", searchURL.String()), http.StatusOK)
|
|
topics := DecodeJSON(t, res, &struct {
|
|
TopicNames []*api.TopicResponse `json:"topics"`
|
|
}{})
|
|
assert.Len(t, topics.TopicNames, 6)
|
|
assert.Equal(t, "6", res.Header().Get("x-total-count"))
|
|
|
|
// pagination search topics
|
|
topics.TopicNames = nil
|
|
query := url.Values{"page": []string{"1"}, "limit": []string{"4"}}
|
|
|
|
searchURL.RawQuery = query.Encode()
|
|
res = MakeRequest(t, NewRequest(t, "GET", searchURL.String()), http.StatusOK)
|
|
topics = DecodeJSON(t, res, &struct {
|
|
TopicNames []*api.TopicResponse `json:"topics"`
|
|
}{})
|
|
assert.Len(t, topics.TopicNames, 4)
|
|
assert.Equal(t, "6", res.Header().Get("x-total-count"))
|
|
|
|
// second page
|
|
topics.TopicNames = nil
|
|
query = url.Values{"page": []string{"2"}, "limit": []string{"4"}}
|
|
|
|
searchURL.RawQuery = query.Encode()
|
|
res = MakeRequest(t, NewRequest(t, "GET", searchURL.String()), http.StatusOK)
|
|
topics = DecodeJSON(t, res, &struct {
|
|
TopicNames []*api.TopicResponse `json:"topics"`
|
|
}{})
|
|
assert.Len(t, topics.TopicNames, 2)
|
|
assert.Equal(t, "6", res.Header().Get("x-total-count"))
|
|
|
|
// add keyword search
|
|
topics.TopicNames = nil
|
|
query = url.Values{"page": []string{"1"}, "limit": []string{"4"}}
|
|
query.Add("q", "topic")
|
|
searchURL.RawQuery = query.Encode()
|
|
res = MakeRequest(t, NewRequest(t, "GET", searchURL.String()), http.StatusOK)
|
|
topics = DecodeJSON(t, res, &struct {
|
|
TopicNames []*api.TopicResponse `json:"topics"`
|
|
}{})
|
|
assert.Len(t, topics.TopicNames, 2)
|
|
|
|
topics.TopicNames = nil
|
|
query.Set("q", "database")
|
|
searchURL.RawQuery = query.Encode()
|
|
res = MakeRequest(t, NewRequest(t, "GET", searchURL.String()), http.StatusOK)
|
|
topics = DecodeJSON(t, res, &struct {
|
|
TopicNames []*api.TopicResponse `json:"topics"`
|
|
}{})
|
|
if assert.Len(t, topics.TopicNames, 1) {
|
|
assert.EqualValues(t, 2, topics.TopicNames[0].ID)
|
|
assert.Equal(t, "database", topics.TopicNames[0].Name)
|
|
assert.Equal(t, 1, topics.TopicNames[0].RepoCount)
|
|
}
|
|
}
|