Платформа ЦРНП "Мирокод" для разработки проектов
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.
34 lines
919 B
34 lines
919 B
// Copyright 2019 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 pull |
|
|
|
import ( |
|
"strconv" |
|
"testing" |
|
"time" |
|
|
|
"code.gitea.io/gitea/models" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestPullRequest_AddToTaskQueue(t *testing.T) { |
|
assert.NoError(t, models.PrepareTestDatabase()) |
|
|
|
pr := models.AssertExistsAndLoadBean(t, &models.PullRequest{ID: 1}).(*models.PullRequest) |
|
AddToTaskQueue(pr) |
|
|
|
select { |
|
case id := <-pullRequestQueue.Queue(): |
|
assert.EqualValues(t, strconv.FormatInt(pr.ID, 10), id) |
|
case <-time.After(time.Second): |
|
assert.Fail(t, "Timeout: nothing was added to pullRequestQueue") |
|
} |
|
|
|
assert.True(t, pullRequestQueue.Exist(pr.ID)) |
|
pr = models.AssertExistsAndLoadBean(t, &models.PullRequest{ID: 1}).(*models.PullRequest) |
|
assert.Equal(t, models.PullRequestStatusChecking, pr.Status) |
|
}
|
|
|