25 lines
650 B
Go
25 lines
650 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package doctor
|
|
|
|
import (
|
|
"testing"
|
|
|
|
actions_model "code.gitea.io/gitea/models/actions"
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_fixUnfinishedRunStatus(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
fixUnfinishedRunStatus(t.Context(), log.GetLogger(log.DEFAULT), true)
|
|
|
|
// check if the run is cancelled by id
|
|
run := unittest.AssertExistsAndLoadBean(t, &actions_model.ActionRun{ID: 796})
|
|
assert.Equal(t, actions_model.StatusCancelled, run.Status)
|
|
}
|