9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/db"
|
|
repo_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/repo"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/unittest"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/timeutil"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPushMirrorsIterate(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
now := timeutil.TimeStampNow()
|
|
|
|
db.Insert(t.Context(), &repo_model.PushMirror{
|
|
RemoteName: "test-1",
|
|
LastUpdateUnix: now,
|
|
Interval: 1,
|
|
})
|
|
|
|
long, _ := time.ParseDuration("24h")
|
|
db.Insert(t.Context(), &repo_model.PushMirror{
|
|
RemoteName: "test-2",
|
|
LastUpdateUnix: now,
|
|
Interval: long,
|
|
})
|
|
|
|
db.Insert(t.Context(), &repo_model.PushMirror{
|
|
RemoteName: "test-3",
|
|
LastUpdateUnix: now,
|
|
Interval: 0,
|
|
})
|
|
|
|
repo_model.PushMirrorsIterate(t.Context(), 1, func(idx int, bean any) error {
|
|
m, ok := bean.(*repo_model.PushMirror)
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "test-1", m.RemoteName)
|
|
assert.Equal(t, m.RemoteName, m.GetRemoteName())
|
|
return nil
|
|
})
|
|
}
|