From a39f69ac28275d9cf614938024b48f58dfd253cc Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Mon, 4 Mar 2024 10:29:41 +0800 Subject: [PATCH] Revert "[BUG] Remember topic only in repo search" This reverts commit b4360d504cfc00dff8f80c774e70e5facc0aed37. --- templates/explore/repo_search.tmpl | 1 - tests/integration/explore_repos_test.go | 13 ------------- 2 files changed, 14 deletions(-) diff --git a/templates/explore/repo_search.tmpl b/templates/explore/repo_search.tmpl index 96f34d508a..1fd891cca2 100644 --- a/templates/explore/repo_search.tmpl +++ b/templates/explore/repo_search.tmpl @@ -2,7 +2,6 @@
-
{{template "shared/searchinput" dict "Value" .Keyword}} {{if .PageIsExploreRepositories}} diff --git a/tests/integration/explore_repos_test.go b/tests/integration/explore_repos_test.go index fda376b96f..26fd1dde64 100644 --- a/tests/integration/explore_repos_test.go +++ b/tests/integration/explore_repos_test.go @@ -8,7 +8,6 @@ import ( "testing" "code.gitea.io/gitea/tests" - "github.com/stretchr/testify/assert" ) func TestExploreRepos(t *testing.T) { @@ -16,16 +15,4 @@ func TestExploreRepos(t *testing.T) { req := NewRequest(t, "GET", "/explore/repos") MakeRequest(t, req, http.StatusOK) - - t.Run("Persistent parameters", func(t *testing.T) { - defer tests.PrintCurrentTest(t)() - - req := NewRequest(t, "GET", "/explore/repos?topic=1&language=Go&sort=moststars") - resp := MakeRequest(t, req, http.StatusOK) - htmlDoc := NewHTMLParser(t, resp.Body) - - assert.EqualValues(t, "moststars", htmlDoc.Find("input[type='hidden'][name='sort']").AttrOr("value", "not found")) - assert.EqualValues(t, "Go", htmlDoc.Find("input[type='hidden'][name='language']").AttrOr("value", "not found")) - assert.EqualValues(t, "true", htmlDoc.Find("input[type='hidden'][name='topic']").AttrOr("value", "not found")) - }) }