Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
// Copyright 2018 The Gitea Authors. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package auth |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestSubmitReviewForm_IsEmpty(t *testing.T) { |
|
|
|
cases := []struct { |
|
form SubmitReviewForm |
|
expected bool |
|
}{ |
|
// Approved PR with a comment shouldn't count as empty |
|
{SubmitReviewForm{Type: "approve", Content: "Awesome"}, false}, |
|
|
|
// Approved PR without a comment shouldn't count as empty |
|
{SubmitReviewForm{Type: "approve", Content: ""}, false}, |
|
|
|
// Rejected PR without a comment should count as empty |
|
{SubmitReviewForm{Type: "reject", Content: ""}, true}, |
|
|
|
// Rejected PR with a comment shouldn't count as empty |
|
{SubmitReviewForm{Type: "reject", Content: "Awesome"}, false}, |
|
|
|
// Comment review on a PR with a comment shouldn't count as empty |
|
{SubmitReviewForm{Type: "comment", Content: "Awesome"}, false}, |
|
|
|
// Comment review on a PR without a comment should count as empty |
|
{SubmitReviewForm{Type: "comment", Content: ""}, true}, |
|
} |
|
|
|
for _, v := range cases { |
|
assert.Equal(t, v.expected, v.form.HasEmptyContent()) |
|
} |
|
}
|
|
|