Skip to content

Commit 2674d27

Browse files
GiteaBotlunny
andauthored
Add pubdate for repository rss and add some tests (#33411) (#33416)
Backport #33411 by @lunny Fix #33291 Co-authored-by: Lunny Xiao <[email protected]>
1 parent 6f38372 commit 2674d27

File tree

4 files changed

+61
-1
lines changed

4 files changed

+61
-1
lines changed

routers/web/feed/branch.go

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ func ShowBranchFeed(ctx *context.Context, repo *repo.Repository, formatType stri
4343
},
4444
Description: commit.Message(),
4545
Content: commit.Message(),
46+
Created: commit.Committer.When,
4647
})
4748
}
4849

routers/web/feed/file.go

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ func ShowFileFeed(ctx *context.Context, repo *repo.Repository, formatType string
5555
},
5656
Description: commit.Message(),
5757
Content: commit.Message(),
58+
Created: commit.Committer.When,
5859
})
5960
}
6061

tests/integration/feed_repo_test.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Copyright 2025 The Gitea Authors. All rights reserved.
2+
// SPDX-License-Identifier: MIT
3+
4+
package integration
5+
6+
import (
7+
"encoding/xml"
8+
"net/http"
9+
"testing"
10+
11+
"code.gitea.io/gitea/tests"
12+
13+
"github.com/stretchr/testify/assert"
14+
)
15+
16+
func TestFeedRepo(t *testing.T) {
17+
t.Run("RSS", func(t *testing.T) {
18+
defer tests.PrepareTestEnv(t)()
19+
20+
req := NewRequest(t, "GET", "/user2/repo1.rss")
21+
resp := MakeRequest(t, req, http.StatusOK)
22+
23+
data := resp.Body.String()
24+
assert.Contains(t, data, `<rss version="2.0"`)
25+
26+
var rss RSS
27+
err := xml.Unmarshal(resp.Body.Bytes(), &rss)
28+
assert.NoError(t, err)
29+
assert.Contains(t, rss.Channel.Link, "/user2/repo1")
30+
assert.NotEmpty(t, rss.Channel.PubDate)
31+
assert.Len(t, rss.Channel.Items, 1)
32+
assert.EqualValues(t, "issue5", rss.Channel.Items[0].Description)
33+
assert.NotEmpty(t, rss.Channel.Items[0].PubDate)
34+
})
35+
}

tests/integration/api_feed_user_test.go tests/integration/feed_user_test.go

+24-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package integration
55

66
import (
7+
"encoding/xml"
78
"net/http"
89
"testing"
910

@@ -12,7 +13,23 @@ import (
1213
"github.com/stretchr/testify/assert"
1314
)
1415

15-
func TestFeed(t *testing.T) {
16+
// RSS is a struct to unmarshal RSS feeds test only
17+
type RSS struct {
18+
Channel struct {
19+
Title string `xml:"title"`
20+
Link string `xml:"link"`
21+
Description string `xml:"description"`
22+
PubDate string `xml:"pubDate"`
23+
Items []struct {
24+
Title string `xml:"title"`
25+
Link string `xml:"link"`
26+
Description string `xml:"description"`
27+
PubDate string `xml:"pubDate"`
28+
} `xml:"item"`
29+
} `xml:"channel"`
30+
}
31+
32+
func TestFeedUser(t *testing.T) {
1633
t.Run("User", func(t *testing.T) {
1734
t.Run("Atom", func(t *testing.T) {
1835
defer tests.PrepareTestEnv(t)()
@@ -32,6 +49,12 @@ func TestFeed(t *testing.T) {
3249

3350
data := resp.Body.String()
3451
assert.Contains(t, data, `<rss version="2.0"`)
52+
53+
var rss RSS
54+
err := xml.Unmarshal(resp.Body.Bytes(), &rss)
55+
assert.NoError(t, err)
56+
assert.Contains(t, rss.Channel.Link, "/user2")
57+
assert.NotEmpty(t, rss.Channel.PubDate)
3558
})
3659
})
3760
}

0 commit comments

Comments
 (0)