mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	* Add comment on non-unicode line to force fail Signed-off-by: Andrew Thornton <art27@cantab.net> * Just quote/unquote patch Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		| @@ -86,6 +86,11 @@ func TestAPIPullReview(t *testing.T) { | ||||
| 			Body:       "first old line", | ||||
| 			OldLineNum: 1, | ||||
| 			NewLineNum: 0, | ||||
| 		}, { | ||||
| 			Path:       "iso-8859-1.txt", | ||||
| 			Body:       "this line contains a non-utf-8 character", | ||||
| 			OldLineNum: 0, | ||||
| 			NewLineNum: 1, | ||||
| 		}, | ||||
| 		}, | ||||
| 	}) | ||||
| @@ -93,7 +98,7 @@ func TestAPIPullReview(t *testing.T) { | ||||
| 	DecodeJSON(t, resp, &review) | ||||
| 	assert.EqualValues(t, 6, review.ID) | ||||
| 	assert.EqualValues(t, "PENDING", review.State) | ||||
| 	assert.EqualValues(t, 2, review.CodeCommentsCount) | ||||
| 	assert.EqualValues(t, 3, review.CodeCommentsCount) | ||||
|  | ||||
| 	// test SubmitPullReview | ||||
| 	req = NewRequestWithJSON(t, http.MethodPost, fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/reviews/%d?token=%s", repo.OwnerName, repo.Name, pullIssue.Index, review.ID, token), &api.SubmitPullReviewOptions{ | ||||
| @@ -104,7 +109,7 @@ func TestAPIPullReview(t *testing.T) { | ||||
| 	DecodeJSON(t, resp, &review) | ||||
| 	assert.EqualValues(t, 6, review.ID) | ||||
| 	assert.EqualValues(t, "APPROVED", review.State) | ||||
| 	assert.EqualValues(t, 2, review.CodeCommentsCount) | ||||
| 	assert.EqualValues(t, 3, review.CodeCommentsCount) | ||||
|  | ||||
| 	// test DeletePullReview | ||||
| 	req = NewRequestWithJSON(t, http.MethodPost, fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s", repo.OwnerName, repo.Name, pullIssue.Index, token), &api.CreatePullReviewOptions{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user