mirror of https://github.com/go-gitea/gitea.git
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.
39 lines
1.2 KiB
39 lines
1.2 KiB
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package actions |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/unittest" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestGetLatestRunnerToken(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
token := unittest.AssertExistsAndLoadBean(t, &ActionRunnerToken{ID: 3}) |
|
expectedToken, err := GetLatestRunnerToken(t.Context(), 1, 0) |
|
assert.NoError(t, err) |
|
assert.Equal(t, expectedToken, token) |
|
} |
|
|
|
func TestNewRunnerToken(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
token, err := NewRunnerToken(t.Context(), 1, 0) |
|
assert.NoError(t, err) |
|
expectedToken, err := GetLatestRunnerToken(t.Context(), 1, 0) |
|
assert.NoError(t, err) |
|
assert.Equal(t, expectedToken, token) |
|
} |
|
|
|
func TestUpdateRunnerToken(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
token := unittest.AssertExistsAndLoadBean(t, &ActionRunnerToken{ID: 3}) |
|
token.IsActive = true |
|
assert.NoError(t, UpdateRunnerToken(t.Context(), token)) |
|
expectedToken, err := GetLatestRunnerToken(t.Context(), 1, 0) |
|
assert.NoError(t, err) |
|
assert.Equal(t, expectedToken, token) |
|
}
|
|
|