mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
412e5c0946
The web context (modules/context.Context) is quite complex, it's difficult for the callers to initialize correctly. This PR introduces a `NewWebContext` function, to make sure the web context have the same behavior for different cases.
26 lines
647 B
Go
26 lines
647 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/user"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMakeSelfOnTop(t *testing.T) {
|
|
users := MakeSelfOnTop(nil, []*user.User{{ID: 2}, {ID: 1}})
|
|
assert.Len(t, users, 2)
|
|
assert.EqualValues(t, 2, users[0].ID)
|
|
|
|
users = MakeSelfOnTop(&user.User{ID: 1}, []*user.User{{ID: 2}, {ID: 1}})
|
|
assert.Len(t, users, 2)
|
|
assert.EqualValues(t, 1, users[0].ID)
|
|
|
|
users = MakeSelfOnTop(&user.User{ID: 2}, []*user.User{{ID: 2}, {ID: 1}})
|
|
assert.Len(t, users, 2)
|
|
assert.EqualValues(t, 2, users[0].ID)
|
|
}
|