-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8b471a
commit fb5008d
Showing
5 changed files
with
97 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package repo | ||
Check failure on line 1 in routers/web/repo/pull_review_test.go GitHub Actions / lint-backend
|
||
|
||
import ( | ||
"net/http/httptest" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models/db" | ||
issues_model "code.gitea.io/gitea/models/issues" | ||
"code.gitea.io/gitea/models/unittest" | ||
"code.gitea.io/gitea/modules/context" | ||
"code.gitea.io/gitea/modules/contexttest" | ||
"code.gitea.io/gitea/modules/templates" | ||
"code.gitea.io/gitea/services/pull" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestRenderConversation(t *testing.T) { | ||
unittest.PrepareTestEnv(t) | ||
|
||
pr, _ := issues_model.GetPullRequestByID(db.DefaultContext, 2) | ||
_ = pr.LoadIssue(db.DefaultContext) | ||
_ = pr.Issue.LoadPoster(db.DefaultContext) | ||
_ = pr.Issue.LoadRepo(db.DefaultContext) | ||
|
||
run := func(name string, cb func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder)) { | ||
t.Run(name, func(t *testing.T) { | ||
ctx, resp := contexttest.MockContext(t, "/", contexttest.MockContextOption{Render: templates.HTMLRenderer()}) | ||
contexttest.LoadUser(t, ctx, pr.Issue.PosterID) | ||
contexttest.LoadRepo(t, ctx, pr.BaseRepoID) | ||
contexttest.LoadGitRepo(t, ctx) | ||
defer ctx.Repo.GitRepo.Close() | ||
cb(t, ctx, resp) | ||
}) | ||
} | ||
|
||
var preparedComment *issues_model.Comment | ||
run("prepare", func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder) { | ||
comment, err := pull.CreateCodeComment(ctx, pr.Issue.Poster, ctx.Repo.GitRepo, pr.Issue, 1, "content", "", false, 0, pr.HeadCommitID) | ||
if !assert.NoError(t, err) { | ||
return | ||
} | ||
comment.Invalidated = true | ||
err = issues_model.UpdateCommentInvalidate(ctx, comment) | ||
if !assert.NoError(t, err) { | ||
return | ||
} | ||
preparedComment = comment | ||
}) | ||
if !assert.NotNil(t, preparedComment) { | ||
return | ||
} | ||
run("diff with outdated", func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder) { | ||
ctx.Data["ShowOutdatedComments"] = true | ||
renderConversation(ctx, preparedComment, "diff") | ||
assert.Contains(t, resp.Body.String(), `<div class="content comment-container"`) | ||
}) | ||
run("diff without outdated", func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder) { | ||
ctx.Data["ShowOutdatedComments"] = false | ||
renderConversation(ctx, preparedComment, "diff") | ||
assert.Contains(t, resp.Body.String(), `conversation-not-existing`) | ||
}) | ||
run("timeline with outdated", func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder) { | ||
ctx.Data["ShowOutdatedComments"] = true | ||
renderConversation(ctx, preparedComment, "timeline") | ||
assert.Contains(t, resp.Body.String(), `<div id="code-comments-`) | ||
}) | ||
run("timeline without outdated", func(t *testing.T, ctx *context.Context, resp *httptest.ResponseRecorder) { | ||
ctx.Data["ShowOutdatedComments"] = false | ||
renderConversation(ctx, preparedComment, "timeline") | ||
assert.Contains(t, resp.Body.String(), `conversation-not-existing`) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="ui segment conversation-holder conversation-not-existing"> | ||
{{ctx.Locale.Tr "repo.issues.review.outdated_description"}} | ||
</div> |